diff --git a/apitester4/src/main/java/uk/ac/ebi/ols/apitester/RecursiveJsonDiff.java b/apitester4/src/main/java/uk/ac/ebi/ols/apitester/RecursiveJsonDiff.java index f20fa4bdf..0890bc6c3 100644 --- a/apitester4/src/main/java/uk/ac/ebi/ols/apitester/RecursiveJsonDiff.java +++ b/apitester4/src/main/java/uk/ac/ebi/ols/apitester/RecursiveJsonDiff.java @@ -63,13 +63,10 @@ public boolean diff() throws FileNotFoundException { continue; } - if(jsonA.equals(jsonB)) { - System.out.println(inputDir + filename + " was equal to " + expectedDir + filename); - } else { + if(!jsonA.equals(jsonB)) { System.out.println(inputDir + filename + " differed from " + expectedDir + filename); success = false; } - } return success; 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 1b2d5b1b0..bdb9b8809 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 @@ -36,16 +36,21 @@ public static void annotateShortForms(OntologyGraph graph) { } String shortForm = extractShortForm(graph, ontologyBaseUris, preferredPrefix, c.uri); - String curie = shortForm.replaceFirst("_", ":"); + /* + CURIEs are formed by following rules: + If there is only one underscore "_" AND the characters after the underscore are numbers then replace the underscore with colon ":" + If there is only one underscore "_" and the characters after the underscore are not just numbers then just keep the curie same as shortform + If there are multiple underscore but has only digits after the last underscore then the code replaces the last underscore with a colon + */ + + String curie = shortForm.replaceFirst("_(\\d+)$", ":$1"); c.properties.addProperty("shortForm", PropertyValueLiteral.fromString(shortForm)); c.properties.addProperty("curie", PropertyValueLiteral.fromString(curie)); } } long endTime3 = System.nanoTime(); logger.info("annotate short forms: {}", ((endTime3 - startTime3) / 1000 / 1000 / 1000)); - - } private static String extractShortForm(OntologyGraph graph, Set ontologyBaseUris, String preferredPrefix, diff --git a/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl b/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl index 28698be1c..5a1186a39 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl +++ b/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl @@ -1,297 +1,297 @@ -{"_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"]} +{"_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 559bc276e..85b0730d1 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"":""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" +"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_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_properties.csv index 5d1b094d7..ce549d18e 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""]},""http://www.w3.org/2000/01/rdf-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.) +"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""]},""http://www.w3.org/2000/01/rdf-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.) +"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"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.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/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. +"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://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_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. +"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"":""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. +"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"":""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. +"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"":""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.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"":""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#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"":""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#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"":""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" +"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 index 1418d0d8b..75aaad524 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/oio_classes.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_classes.csv @@ -1,7 +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" +"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_ontologies.csv b/testcases_expected_output/annotation-properties/gitIssue502/oio_ontologies.csv index 91bc6e61e..977a9a42c 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/oio_ontologies.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_ontologies.csv @@ -1,5 +1,5 @@ "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| +"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 diff --git a/testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv index 59d8c2c3a..6fdcd032e 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv @@ -1,24 +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" +"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 f7ccd6a6c..108a6b4ed 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": "RDFS:Class" + "value": "RDFS_Class" }, "definition": { "type": [ @@ -193,7 +193,7 @@ "type": [ "literal" ], - "value": "RDFS:Container" + "value": "RDFS_Container" }, "definition": { "type": [ @@ -277,7 +277,7 @@ "type": [ "literal" ], - "value": "RDFS:ContainerMembershipProperty" + "value": "RDFS_ContainerMembershipProperty" }, "definition": { "type": [ @@ -359,7 +359,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "definition": { "type": [ @@ -449,7 +449,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "definition": { "type": [ @@ -533,7 +533,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "definition": { "type": [ @@ -610,7 +610,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "definition": { "type": [ @@ -686,7 +686,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "definition": { "type": [ @@ -762,7 +762,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "definition": { "type": [ @@ -840,7 +840,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "definition": { "type": [ @@ -916,7 +916,7 @@ "type": [ "literal" ], - "value": "RDFS:member" + "value": "RDFS_member" }, "definition": { "type": [ @@ -992,7 +992,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "definition": { "type": [ @@ -1068,7 +1068,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "definition": { "type": [ @@ -1144,7 +1144,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "definition": { "type": [ @@ -1220,7 +1220,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "definition": { "type": [ @@ -1926,7 +1926,7 @@ "type": [ "literal" ], - "value": "OWL:AllDifferent" + "value": "OWL_AllDifferent" }, "definition": { "type": [ @@ -2010,7 +2010,7 @@ "type": [ "literal" ], - "value": "OWL:AllDisjointClasses" + "value": "OWL_AllDisjointClasses" }, "definition": { "type": [ @@ -2094,7 +2094,7 @@ "type": [ "literal" ], - "value": "OWL:AllDisjointProperties" + "value": "OWL_AllDisjointProperties" }, "definition": { "type": [ @@ -2178,7 +2178,7 @@ "type": [ "literal" ], - "value": "OWL:Annotation" + "value": "OWL_Annotation" }, "definition": { "type": [ @@ -2262,7 +2262,7 @@ "type": [ "literal" ], - "value": "OWL:AnnotationProperty" + "value": "OWL_AnnotationProperty" }, "definition": { "type": [ @@ -2344,7 +2344,7 @@ "type": [ "literal" ], - "value": "OWL:AsymmetricProperty" + "value": "OWL_AsymmetricProperty" }, "definition": { "type": [ @@ -2428,7 +2428,7 @@ "type": [ "literal" ], - "value": "OWL:Axiom" + "value": "OWL_Axiom" }, "definition": { "type": [ @@ -2512,7 +2512,7 @@ "type": [ "literal" ], - "value": "OWL:Class" + "value": "OWL_Class" }, "definition": { "type": [ @@ -2602,7 +2602,7 @@ "type": [ "literal" ], - "value": "OWL:DataRange" + "value": "OWL_DataRange" }, "definition": { "type": [ @@ -2694,7 +2694,7 @@ "type": [ "literal" ], - "value": "OWL:DatatypeProperty" + "value": "OWL_DatatypeProperty" }, "definition": { "type": [ @@ -2776,7 +2776,7 @@ "type": [ "literal" ], - "value": "OWL:DeprecatedClass" + "value": "OWL_DeprecatedClass" }, "definition": { "type": [ @@ -2866,7 +2866,7 @@ "type": [ "literal" ], - "value": "OWL:DeprecatedProperty" + "value": "OWL_DeprecatedProperty" }, "definition": { "type": [ @@ -2948,7 +2948,7 @@ "type": [ "literal" ], - "value": "OWL:FunctionalProperty" + "value": "OWL_FunctionalProperty" }, "definition": { "type": [ @@ -3030,7 +3030,7 @@ "type": [ "literal" ], - "value": "OWL:InverseFunctionalProperty" + "value": "OWL_InverseFunctionalProperty" }, "definition": { "type": [ @@ -3114,7 +3114,7 @@ "type": [ "literal" ], - "value": "OWL:IrreflexiveProperty" + "value": "OWL_IrreflexiveProperty" }, "definition": { "type": [ @@ -3198,7 +3198,7 @@ "type": [ "literal" ], - "value": "OWL:NamedIndividual" + "value": "OWL_NamedIndividual" }, "definition": { "type": [ @@ -3282,7 +3282,7 @@ "type": [ "literal" ], - "value": "OWL:NegativePropertyAssertion" + "value": "OWL_NegativePropertyAssertion" }, "definition": { "type": [ @@ -3366,7 +3366,7 @@ "type": [ "literal" ], - "value": "OWL:Nothing" + "value": "OWL_Nothing" }, "definition": { "type": [ @@ -3450,7 +3450,7 @@ "type": [ "literal" ], - "value": "OWL:ObjectProperty" + "value": "OWL_ObjectProperty" }, "definition": { "type": [ @@ -3532,7 +3532,7 @@ "type": [ "literal" ], - "value": "OWL:Ontology" + "value": "OWL_Ontology" }, "definition": { "type": [ @@ -3616,7 +3616,7 @@ "type": [ "literal" ], - "value": "OWL:OntologyProperty" + "value": "OWL_OntologyProperty" }, "definition": { "type": [ @@ -3698,7 +3698,7 @@ "type": [ "literal" ], - "value": "OWL:ReflexiveProperty" + "value": "OWL_ReflexiveProperty" }, "definition": { "type": [ @@ -3782,7 +3782,7 @@ "type": [ "literal" ], - "value": "OWL:Restriction" + "value": "OWL_Restriction" }, "definition": { "type": [ @@ -3874,7 +3874,7 @@ "type": [ "literal" ], - "value": "OWL:SymmetricProperty" + "value": "OWL_SymmetricProperty" }, "definition": { "type": [ @@ -3958,7 +3958,7 @@ "type": [ "literal" ], - "value": "OWL:Thing" + "value": "OWL_Thing" }, "definition": { "type": [ @@ -4033,7 +4033,7 @@ "type": [ "literal" ], - "value": "OWL:TransitiveProperty" + "value": "OWL_TransitiveProperty" }, "definition": { "type": [ @@ -4805,7 +4805,7 @@ "type": [ "literal" ], - "value": "OWL:allValuesFrom" + "value": "OWL_allValuesFrom" }, "definition": { "type": [ @@ -4881,7 +4881,7 @@ "type": [ "literal" ], - "value": "OWL:annotatedProperty" + "value": "OWL_annotatedProperty" }, "definition": { "type": [ @@ -4957,7 +4957,7 @@ "type": [ "literal" ], - "value": "OWL:annotatedSource" + "value": "OWL_annotatedSource" }, "definition": { "type": [ @@ -5033,7 +5033,7 @@ "type": [ "literal" ], - "value": "OWL:annotatedTarget" + "value": "OWL_annotatedTarget" }, "definition": { "type": [ @@ -5109,7 +5109,7 @@ "type": [ "literal" ], - "value": "OWL:assertionProperty" + "value": "OWL_assertionProperty" }, "definition": { "type": [ @@ -5186,7 +5186,7 @@ "type": [ "literal" ], - "value": "OWL:backwardCompatibleWith" + "value": "OWL_backwardCompatibleWith" }, "definition": { "type": [ @@ -5266,7 +5266,7 @@ "type": [ "literal" ], - "value": "OWL:bottomDataProperty" + "value": "OWL_bottomDataProperty" }, "definition": { "type": [ @@ -5343,7 +5343,7 @@ "type": [ "literal" ], - "value": "OWL:bottomObjectProperty" + "value": "OWL_bottomObjectProperty" }, "definition": { "type": [ @@ -5419,7 +5419,7 @@ "type": [ "literal" ], - "value": "OWL:cardinality" + "value": "OWL_cardinality" }, "definition": { "type": [ @@ -5495,7 +5495,7 @@ "type": [ "literal" ], - "value": "OWL:complementOf" + "value": "OWL_complementOf" }, "definition": { "type": [ @@ -5571,7 +5571,7 @@ "type": [ "literal" ], - "value": "OWL:datatypeComplementOf" + "value": "OWL_datatypeComplementOf" }, "definition": { "type": [ @@ -5648,7 +5648,7 @@ "type": [ "literal" ], - "value": "OWL:deprecated" + "value": "OWL_deprecated" }, "definition": { "type": [ @@ -5724,7 +5724,7 @@ "type": [ "literal" ], - "value": "OWL:differentFrom" + "value": "OWL_differentFrom" }, "definition": { "type": [ @@ -5800,7 +5800,7 @@ "type": [ "literal" ], - "value": "OWL:disjointUnionOf" + "value": "OWL_disjointUnionOf" }, "definition": { "type": [ @@ -5876,7 +5876,7 @@ "type": [ "literal" ], - "value": "OWL:disjointWith" + "value": "OWL_disjointWith" }, "definition": { "type": [ @@ -5952,7 +5952,7 @@ "type": [ "literal" ], - "value": "OWL:distinctMembers" + "value": "OWL_distinctMembers" }, "definition": { "type": [ @@ -6028,7 +6028,7 @@ "type": [ "literal" ], - "value": "OWL:equivalentClass" + "value": "OWL_equivalentClass" }, "definition": { "type": [ @@ -6104,7 +6104,7 @@ "type": [ "literal" ], - "value": "OWL:equivalentProperty" + "value": "OWL_equivalentProperty" }, "definition": { "type": [ @@ -6180,7 +6180,7 @@ "type": [ "literal" ], - "value": "OWL:hasKey" + "value": "OWL_hasKey" }, "definition": { "type": [ @@ -6256,7 +6256,7 @@ "type": [ "literal" ], - "value": "OWL:hasSelf" + "value": "OWL_hasSelf" }, "definition": { "type": [ @@ -6332,7 +6332,7 @@ "type": [ "literal" ], - "value": "OWL:hasValue" + "value": "OWL_hasValue" }, "definition": { "type": [ @@ -6409,7 +6409,7 @@ "type": [ "literal" ], - "value": "OWL:incompatibleWith" + "value": "OWL_incompatibleWith" }, "definition": { "type": [ @@ -6488,7 +6488,7 @@ "type": [ "literal" ], - "value": "OWL:intersectionOf" + "value": "OWL_intersectionOf" }, "definition": { "type": [ @@ -6564,7 +6564,7 @@ "type": [ "literal" ], - "value": "OWL:inverseOf" + "value": "OWL_inverseOf" }, "definition": { "type": [ @@ -6640,7 +6640,7 @@ "type": [ "literal" ], - "value": "OWL:maxCardinality" + "value": "OWL_maxCardinality" }, "definition": { "type": [ @@ -6716,7 +6716,7 @@ "type": [ "literal" ], - "value": "OWL:maxQualifiedCardinality" + "value": "OWL_maxQualifiedCardinality" }, "definition": { "type": [ @@ -6792,7 +6792,7 @@ "type": [ "literal" ], - "value": "OWL:members" + "value": "OWL_members" }, "definition": { "type": [ @@ -6868,7 +6868,7 @@ "type": [ "literal" ], - "value": "OWL:minCardinality" + "value": "OWL_minCardinality" }, "definition": { "type": [ @@ -6944,7 +6944,7 @@ "type": [ "literal" ], - "value": "OWL:minQualifiedCardinality" + "value": "OWL_minQualifiedCardinality" }, "definition": { "type": [ @@ -7020,7 +7020,7 @@ "type": [ "literal" ], - "value": "OWL:onClass" + "value": "OWL_onClass" }, "definition": { "type": [ @@ -7096,7 +7096,7 @@ "type": [ "literal" ], - "value": "OWL:onDataRange" + "value": "OWL_onDataRange" }, "definition": { "type": [ @@ -7172,7 +7172,7 @@ "type": [ "literal" ], - "value": "OWL:onDatatype" + "value": "OWL_onDatatype" }, "definition": { "type": [ @@ -7248,7 +7248,7 @@ "type": [ "literal" ], - "value": "OWL:onProperties" + "value": "OWL_onProperties" }, "definition": { "type": [ @@ -7324,7 +7324,7 @@ "type": [ "literal" ], - "value": "OWL:onProperty" + "value": "OWL_onProperty" }, "definition": { "type": [ @@ -7400,7 +7400,7 @@ "type": [ "literal" ], - "value": "OWL:oneOf" + "value": "OWL_oneOf" }, "definition": { "type": [ @@ -7477,7 +7477,7 @@ "type": [ "literal" ], - "value": "OWL:priorVersion" + "value": "OWL_priorVersion" }, "definition": { "type": [ @@ -7556,7 +7556,7 @@ "type": [ "literal" ], - "value": "OWL:propertyChainAxiom" + "value": "OWL_propertyChainAxiom" }, "definition": { "type": [ @@ -7632,7 +7632,7 @@ "type": [ "literal" ], - "value": "OWL:propertyDisjointWith" + "value": "OWL_propertyDisjointWith" }, "definition": { "type": [ @@ -7708,7 +7708,7 @@ "type": [ "literal" ], - "value": "OWL:qualifiedCardinality" + "value": "OWL_qualifiedCardinality" }, "definition": { "type": [ @@ -7784,7 +7784,7 @@ "type": [ "literal" ], - "value": "OWL:sameAs" + "value": "OWL_sameAs" }, "definition": { "type": [ @@ -7860,7 +7860,7 @@ "type": [ "literal" ], - "value": "OWL:someValuesFrom" + "value": "OWL_someValuesFrom" }, "definition": { "type": [ @@ -7936,7 +7936,7 @@ "type": [ "literal" ], - "value": "OWL:sourceIndividual" + "value": "OWL_sourceIndividual" }, "definition": { "type": [ @@ -8012,7 +8012,7 @@ "type": [ "literal" ], - "value": "OWL:targetIndividual" + "value": "OWL_targetIndividual" }, "definition": { "type": [ @@ -8088,7 +8088,7 @@ "type": [ "literal" ], - "value": "OWL:targetValue" + "value": "OWL_targetValue" }, "definition": { "type": [ @@ -8165,7 +8165,7 @@ "type": [ "literal" ], - "value": "OWL:topDataProperty" + "value": "OWL_topDataProperty" }, "definition": { "type": [ @@ -8242,7 +8242,7 @@ "type": [ "literal" ], - "value": "OWL:topObjectProperty" + "value": "OWL_topObjectProperty" }, "definition": { "type": [ @@ -8318,7 +8318,7 @@ "type": [ "literal" ], - "value": "OWL:unionOf" + "value": "OWL_unionOf" }, "definition": { "type": [ @@ -8395,7 +8395,7 @@ "type": [ "literal" ], - "value": "OWL:versionInfo" + "value": "OWL_versionInfo" }, "definition": { "type": [ @@ -8471,7 +8471,7 @@ "type": [ "literal" ], - "value": "OWL:withRestrictions" + "value": "OWL_withRestrictions" }, "definition": { "type": [ @@ -8743,7 +8743,7 @@ "type": [ "literal" ], - "value": "SKOS:Collection" + "value": "SKOS_Collection" }, "directAncestor": [], "hasDirectChildren": true, @@ -8842,7 +8842,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "directAncestor": [], "hasDirectChildren": false, @@ -8921,7 +8921,7 @@ "type": [ "literal" ], - "value": "SKOS:ConceptScheme" + "value": "SKOS_ConceptScheme" }, "directAncestor": [], "hasDirectChildren": false, @@ -9033,7 +9033,7 @@ "type": [ "literal" ], - "value": "SKOS:OrderedCollection" + "value": "SKOS_OrderedCollection" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#Collection", "directParent": "http://www.w3.org/2004/02/skos/core#Collection", @@ -9140,7 +9140,7 @@ "type": [ "literal" ], - "value": "SKOS:altLabel" + "value": "SKOS_altLabel" }, "definition": [ { @@ -9281,7 +9281,7 @@ "type": [ "literal" ], - "value": "SKOS:broadMatch" + "value": "SKOS_broadMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -9377,7 +9377,7 @@ "type": [ "literal" ], - "value": "SKOS:broader" + "value": "SKOS_broader" }, "definition": { "type": [ @@ -9503,7 +9503,7 @@ "type": [ "literal" ], - "value": "SKOS:broaderTransitive" + "value": "SKOS_broaderTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -9601,7 +9601,7 @@ "type": [ "literal" ], - "value": "SKOS:changeNote" + "value": "SKOS_changeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -9685,7 +9685,7 @@ "type": [ "literal" ], - "value": "SKOS:closeMatch" + "value": "SKOS_closeMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -9773,7 +9773,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -9857,7 +9857,7 @@ "type": [ "literal" ], - "value": "SKOS:editorialNote" + "value": "SKOS_editorialNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -9941,7 +9941,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "definition": { "type": [ @@ -10053,7 +10053,7 @@ "type": [ "literal" ], - "value": "SKOS:example" + "value": "SKOS_example" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -10137,7 +10137,7 @@ "type": [ "literal" ], - "value": "SKOS:hasTopConcept" + "value": "SKOS_hasTopConcept" }, "directAncestor": [], "hasDirectChildren": false, @@ -10222,7 +10222,7 @@ "type": [ "literal" ], - "value": "SKOS:hiddenLabel" + "value": "SKOS_hiddenLabel" }, "definition": [ { @@ -10347,7 +10347,7 @@ "type": [ "literal" ], - "value": "SKOS:historyNote" + "value": "SKOS_historyNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -10431,7 +10431,7 @@ "type": [ "literal" ], - "value": "SKOS:inScheme" + "value": "SKOS_inScheme" }, "directAncestor": [], "hasDirectChildren": true, @@ -10530,7 +10530,7 @@ "type": [ "literal" ], - "value": "SKOS:mappingRelation" + "value": "SKOS_mappingRelation" }, "definition": { "type": [ @@ -10636,7 +10636,7 @@ "type": [ "literal" ], - "value": "SKOS:member" + "value": "SKOS_member" }, "directAncestor": [], "hasDirectChildren": false, @@ -10726,7 +10726,7 @@ "type": [ "literal" ], - "value": "SKOS:memberList" + "value": "SKOS_memberList" }, "definition": { "type": [ @@ -10833,7 +10833,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowMatch" + "value": "SKOS_narrowMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -10929,7 +10929,7 @@ "type": [ "literal" ], - "value": "SKOS:narrower" + "value": "SKOS_narrower" }, "definition": { "type": [ @@ -11055,7 +11055,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowerTransitive" + "value": "SKOS_narrowerTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -11153,7 +11153,7 @@ "type": [ "literal" ], - "value": "SKOS:notation" + "value": "SKOS_notation" }, "directAncestor": [], "hasDirectChildren": false, @@ -11251,7 +11251,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "directAncestor": [], "hasDirectChildren": true, @@ -11349,7 +11349,7 @@ "type": [ "literal" ], - "value": "SKOS:prefLabel" + "value": "SKOS_prefLabel" }, "definition": [ { @@ -11490,7 +11490,7 @@ "type": [ "literal" ], - "value": "SKOS:related" + "value": "SKOS_related" }, "definition": { "type": [ @@ -11597,7 +11597,7 @@ "type": [ "literal" ], - "value": "SKOS:relatedMatch" + "value": "SKOS_relatedMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -11692,7 +11692,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -11776,7 +11776,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "directAncestor": [], "hasDirectChildren": true, @@ -11876,7 +11876,7 @@ "type": [ "literal" ], - "value": "SKOS:topConceptOf" + "value": "SKOS_topConceptOf" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#inScheme", "directParent": "http://www.w3.org/2004/02/skos/core#inScheme", @@ -78852,7 +78852,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "directAncestor": [], "hasDirectChildren": false, @@ -78908,7 +78908,7 @@ "type": [ "literal" ], - "value": "should:conform_to" + "value": "should_conform_to" }, "directAncestor": [], "hasDirectChildren": false, @@ -79982,7 +79982,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "directAncestor": [], "hasDirectChildren": false, @@ -80042,7 +80042,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "definition": { "type": [ @@ -80166,7 +80166,7 @@ "type": [ "literal" ], - "value": "OIO:ObsoleteClass" + "value": "OIO_ObsoleteClass" }, "directAncestor": [], "hasDirectChildren": false, @@ -80255,7 +80255,7 @@ "type": [ "literal" ], - "value": "OIO:Subset" + "value": "OIO_Subset" }, "directAncestor": [], "hasDirectChildren": false, @@ -80477,7 +80477,7 @@ "type": [ "literal" ], - "value": "OIO:Synonym" + "value": "OIO_Synonym" }, "definition": { "type": [ @@ -80584,7 +80584,7 @@ "type": [ "literal" ], - "value": "OIO:SynonymType" + "value": "OIO_SynonymType" }, "directAncestor": [], "hasDirectChildren": false, @@ -80647,7 +80647,7 @@ "type": [ "literal" ], - "value": "OIO:ObsoleteProperty" + "value": "OIO_ObsoleteProperty" }, "definition": { "type": [ @@ -80754,7 +80754,7 @@ "type": [ "literal" ], - "value": "OIO:SubsetProperty" + "value": "OIO_SubsetProperty" }, "directAncestor": [], "hasDirectChildren": false, @@ -80843,7 +80843,7 @@ "type": [ "literal" ], - "value": "OIO:SynonymTypeProperty" + "value": "OIO_SynonymTypeProperty" }, "directAncestor": [], "hasDirectChildren": false, @@ -80932,7 +80932,7 @@ "type": [ "literal" ], - "value": "OIO:consider" + "value": "OIO_consider" }, "directAncestor": [], "hasDirectChildren": false, @@ -81038,7 +81038,7 @@ "type": [ "literal" ], - "value": "OIO:hasAlternativeId" + "value": "OIO_hasAlternativeId" }, "directAncestor": [], "hasDirectChildren": false, @@ -81144,7 +81144,7 @@ "type": [ "literal" ], - "value": "OIO:hasBroadSynonym" + "value": "OIO_hasBroadSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -81252,7 +81252,7 @@ "type": [ "literal" ], - "value": "OIO:hasDate" + "value": "OIO_hasDate" }, "directAncestor": [], "hasDirectChildren": false, @@ -81329,7 +81329,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "directAncestor": [], "hasDirectChildren": false, @@ -81406,7 +81406,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefaultNamespace" + "value": "OIO_hasDefaultNamespace" }, "directAncestor": [], "hasDirectChildren": false, @@ -81483,7 +81483,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "definition": { "type": [ @@ -81607,7 +81607,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -81715,7 +81715,7 @@ "type": [ "literal" ], - "value": "OIO:hasNarrowSynonym" + "value": "OIO_hasNarrowSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -81823,7 +81823,7 @@ "type": [ "literal" ], - "value": "OIO:hasOBONamespace" + "value": "OIO_hasOBONamespace" }, "directAncestor": [], "hasDirectChildren": false, @@ -81929,7 +81929,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -82037,7 +82037,7 @@ "type": [ "literal" ], - "value": "OIO:hasSubset" + "value": "OIO_hasSubset" }, "directAncestor": [], "hasDirectChildren": false, @@ -82126,7 +82126,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonym" + "value": "OIO_hasSynonym" }, "definition": { "type": [ @@ -82250,7 +82250,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonymType" + "value": "OIO_hasSynonymType" }, "directAncestor": [], "hasDirectChildren": false, @@ -82327,7 +82327,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "directAncestor": [], "hasDirectChildren": false, @@ -82387,7 +82387,7 @@ "type": [ "literal" ], - "value": "OIO:hasVersion" + "value": "OIO_hasVersion" }, "directAncestor": [], "hasDirectChildren": false, @@ -82464,7 +82464,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "directAncestor": [], "hasDirectChildren": false, @@ -82570,7 +82570,7 @@ "type": [ "literal" ], - "value": "OIO:isCyclic" + "value": "OIO_isCyclic" }, "directAncestor": [], "hasDirectChildren": false, @@ -82659,7 +82659,7 @@ "type": [ "literal" ], - "value": "OIO:replacedBy" + "value": "OIO_replacedBy" }, "directAncestor": [], "hasDirectChildren": false, @@ -82765,7 +82765,7 @@ "type": [ "literal" ], - "value": "OIO:savedBy" + "value": "OIO_savedBy" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl b/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl index 8689f00f1..372d5e91b 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl +++ b/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl @@ -1,5 +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\":\"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":"{\"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"]} +{"_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 e495b9982..5763d81a5 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": "RDFS:Class" + "value": "RDFS_Class" }, "definition": { "type": [ @@ -212,7 +212,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -235,7 +235,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -258,7 +258,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -281,7 +281,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -304,7 +304,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -323,7 +323,7 @@ "type": [ "literal" ], - "value": "RDFS:Container" + "value": "RDFS_Container" }, "definition": { "type": [ @@ -421,7 +421,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -444,7 +444,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -467,7 +467,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -490,7 +490,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -513,7 +513,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -536,7 +536,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -555,7 +555,7 @@ "type": [ "literal" ], - "value": "RDFS:ContainerMembershipProperty" + "value": "RDFS_ContainerMembershipProperty" }, "definition": { "type": [ @@ -651,7 +651,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -674,7 +674,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -697,7 +697,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -720,7 +720,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -743,7 +743,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -762,7 +762,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "definition": { "type": [ @@ -866,7 +866,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -889,7 +889,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -912,7 +912,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -935,7 +935,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -958,7 +958,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -981,7 +981,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -1000,7 +1000,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "definition": { "type": [ @@ -1098,7 +1098,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -1121,7 +1121,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -1144,7 +1144,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -1167,7 +1167,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -1190,7 +1190,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -1213,7 +1213,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -1232,7 +1232,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "definition": { "type": [ @@ -1321,7 +1321,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -1344,7 +1344,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -1367,7 +1367,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -1390,7 +1390,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -1411,7 +1411,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "definition": { "type": [ @@ -1501,7 +1501,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -1524,7 +1524,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -1547,7 +1547,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -1570,7 +1570,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "type": [ "class", @@ -1593,7 +1593,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -1616,7 +1616,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -1635,7 +1635,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "definition": { "type": [ @@ -1725,7 +1725,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -1748,7 +1748,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -1771,7 +1771,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -1794,7 +1794,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -1817,7 +1817,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -1836,7 +1836,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "definition": { "type": [ @@ -1928,7 +1928,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -1951,7 +1951,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -1974,7 +1974,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -1997,7 +1997,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -2020,7 +2020,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -2043,7 +2043,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "type": [ "property", @@ -2066,7 +2066,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -2085,7 +2085,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "definition": { "type": [ @@ -2176,7 +2176,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -2199,7 +2199,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -2222,7 +2222,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -2245,7 +2245,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -2268,7 +2268,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "type": [ "class", @@ -2291,7 +2291,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -2310,7 +2310,7 @@ "type": [ "literal" ], - "value": "RDFS:member" + "value": "RDFS_member" }, "definition": { "type": [ @@ -2400,7 +2400,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -2423,7 +2423,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -2446,7 +2446,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -2469,7 +2469,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -2492,7 +2492,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -2515,7 +2515,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -2534,7 +2534,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "definition": { "type": [ @@ -2624,7 +2624,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -2647,7 +2647,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -2670,7 +2670,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -2693,7 +2693,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -2716,7 +2716,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -2735,7 +2735,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "definition": { "type": [ @@ -2825,7 +2825,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -2848,7 +2848,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -2871,7 +2871,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -2894,7 +2894,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -2917,7 +2917,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -2940,7 +2940,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -2959,7 +2959,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "definition": { "type": [ @@ -3049,7 +3049,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -3072,7 +3072,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -3095,7 +3095,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -3118,7 +3118,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -3141,7 +3141,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -3164,7 +3164,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -3183,7 +3183,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "definition": { "type": [ @@ -3273,7 +3273,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -3296,7 +3296,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -3319,7 +3319,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -3342,7 +3342,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -3365,7 +3365,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -3393,7 +3393,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "type": [ "property", @@ -3544,7 +3544,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "definition": { "type": [ @@ -3642,7 +3642,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -3665,7 +3665,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -3688,7 +3688,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -3711,7 +3711,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -3734,7 +3734,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -3753,7 +3753,7 @@ "type": [ "literal" ], - "value": "RDFS:Container" + "value": "RDFS_Container" }, "definition": { "type": [ @@ -3851,7 +3851,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -3874,7 +3874,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -3897,7 +3897,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -3920,7 +3920,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -3943,7 +3943,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -3966,7 +3966,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -3985,7 +3985,7 @@ "type": [ "literal" ], - "value": "RDFS:ContainerMembershipProperty" + "value": "RDFS_ContainerMembershipProperty" }, "definition": { "type": [ @@ -4081,7 +4081,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -4104,7 +4104,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -4127,7 +4127,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -4150,7 +4150,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -4173,7 +4173,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -4192,7 +4192,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "definition": { "type": [ @@ -4296,7 +4296,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -4319,7 +4319,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -4342,7 +4342,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -4365,7 +4365,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -4388,7 +4388,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -4411,7 +4411,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -4430,7 +4430,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "definition": { "type": [ @@ -4528,7 +4528,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -4551,7 +4551,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -4574,7 +4574,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -4597,7 +4597,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -4620,7 +4620,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -4643,7 +4643,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -4662,7 +4662,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "definition": { "type": [ @@ -4751,7 +4751,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -4774,7 +4774,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -4797,7 +4797,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -4820,7 +4820,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -4839,7 +4839,7 @@ "type": [ "literal" ], - "value": "OWL:AllDifferent" + "value": "OWL_AllDifferent" }, "definition": { "type": [ @@ -4936,7 +4936,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -4959,7 +4959,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -4982,7 +4982,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -5005,7 +5005,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -5028,7 +5028,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -5051,7 +5051,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -5070,7 +5070,7 @@ "type": [ "literal" ], - "value": "OWL:AllDisjointClasses" + "value": "OWL_AllDisjointClasses" }, "definition": { "type": [ @@ -5167,7 +5167,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -5190,7 +5190,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -5213,7 +5213,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -5236,7 +5236,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -5259,7 +5259,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -5282,7 +5282,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -5301,7 +5301,7 @@ "type": [ "literal" ], - "value": "OWL:AllDisjointProperties" + "value": "OWL_AllDisjointProperties" }, "definition": { "type": [ @@ -5398,7 +5398,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -5421,7 +5421,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -5444,7 +5444,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -5467,7 +5467,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -5490,7 +5490,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -5513,7 +5513,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -5532,7 +5532,7 @@ "type": [ "literal" ], - "value": "OWL:Annotation" + "value": "OWL_Annotation" }, "definition": { "type": [ @@ -5629,7 +5629,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -5652,7 +5652,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -5675,7 +5675,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -5698,7 +5698,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -5721,7 +5721,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -5744,7 +5744,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -5763,7 +5763,7 @@ "type": [ "literal" ], - "value": "OWL:AnnotationProperty" + "value": "OWL_AnnotationProperty" }, "definition": { "type": [ @@ -5858,7 +5858,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -5881,7 +5881,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -5904,7 +5904,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -5927,7 +5927,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -5950,7 +5950,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -5969,7 +5969,7 @@ "type": [ "literal" ], - "value": "OWL:AsymmetricProperty" + "value": "OWL_AsymmetricProperty" }, "definition": { "type": [ @@ -6066,7 +6066,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -6089,7 +6089,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -6112,7 +6112,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -6135,7 +6135,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -6158,7 +6158,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -6177,7 +6177,7 @@ "type": [ "literal" ], - "value": "OWL:Axiom" + "value": "OWL_Axiom" }, "definition": { "type": [ @@ -6274,7 +6274,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -6297,7 +6297,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -6320,7 +6320,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -6343,7 +6343,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -6366,7 +6366,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -6389,7 +6389,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -6408,7 +6408,7 @@ "type": [ "literal" ], - "value": "OWL:Class" + "value": "OWL_Class" }, "definition": { "type": [ @@ -6511,7 +6511,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -6534,7 +6534,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -6557,7 +6557,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -6580,7 +6580,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -6603,7 +6603,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -6626,7 +6626,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -6645,7 +6645,7 @@ "type": [ "literal" ], - "value": "OWL:DataRange" + "value": "OWL_DataRange" }, "definition": { "type": [ @@ -6750,7 +6750,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -6773,7 +6773,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -6796,7 +6796,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "type": [ "class", @@ -6819,7 +6819,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -6842,7 +6842,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -6865,7 +6865,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -6888,7 +6888,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -6907,7 +6907,7 @@ "type": [ "literal" ], - "value": "OWL:DatatypeProperty" + "value": "OWL_DatatypeProperty" }, "definition": { "type": [ @@ -7002,7 +7002,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -7025,7 +7025,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -7048,7 +7048,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -7071,7 +7071,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -7094,7 +7094,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -7113,7 +7113,7 @@ "type": [ "literal" ], - "value": "OWL:DeprecatedClass" + "value": "OWL_DeprecatedClass" }, "definition": { "type": [ @@ -7216,7 +7216,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -7239,7 +7239,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -7262,7 +7262,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -7285,7 +7285,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -7308,7 +7308,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -7331,7 +7331,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -7350,7 +7350,7 @@ "type": [ "literal" ], - "value": "OWL:DeprecatedProperty" + "value": "OWL_DeprecatedProperty" }, "definition": { "type": [ @@ -7445,7 +7445,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -7468,7 +7468,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -7491,7 +7491,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -7514,7 +7514,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -7537,7 +7537,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -7556,7 +7556,7 @@ "type": [ "literal" ], - "value": "OWL:FunctionalProperty" + "value": "OWL_FunctionalProperty" }, "definition": { "type": [ @@ -7651,7 +7651,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -7674,7 +7674,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -7697,7 +7697,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -7720,7 +7720,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -7743,7 +7743,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -7762,7 +7762,7 @@ "type": [ "literal" ], - "value": "OWL:InverseFunctionalProperty" + "value": "OWL_InverseFunctionalProperty" }, "definition": { "type": [ @@ -7859,7 +7859,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -7882,7 +7882,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -7905,7 +7905,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -7928,7 +7928,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -7951,7 +7951,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -7970,7 +7970,7 @@ "type": [ "literal" ], - "value": "OWL:IrreflexiveProperty" + "value": "OWL_IrreflexiveProperty" }, "definition": { "type": [ @@ -8067,7 +8067,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -8090,7 +8090,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -8113,7 +8113,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -8136,7 +8136,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -8159,7 +8159,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -8178,7 +8178,7 @@ "type": [ "literal" ], - "value": "OWL:NamedIndividual" + "value": "OWL_NamedIndividual" }, "definition": { "type": [ @@ -8275,7 +8275,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -8298,7 +8298,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -8321,7 +8321,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -8344,7 +8344,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -8367,7 +8367,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -8386,7 +8386,7 @@ "type": [ "literal" ], - "value": "OWL:NegativePropertyAssertion" + "value": "OWL_NegativePropertyAssertion" }, "definition": { "type": [ @@ -8483,7 +8483,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -8506,7 +8506,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -8529,7 +8529,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -8552,7 +8552,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -8575,7 +8575,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -8598,7 +8598,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -8617,7 +8617,7 @@ "type": [ "literal" ], - "value": "OWL:Nothing" + "value": "OWL_Nothing" }, "definition": { "type": [ @@ -8714,7 +8714,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -8737,7 +8737,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -8760,7 +8760,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -8783,7 +8783,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -8802,7 +8802,7 @@ "type": [ "literal" ], - "value": "OWL:ObjectProperty" + "value": "OWL_ObjectProperty" }, "definition": { "type": [ @@ -8897,7 +8897,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -8920,7 +8920,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -8943,7 +8943,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -8966,7 +8966,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -8989,7 +8989,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -9008,7 +9008,7 @@ "type": [ "literal" ], - "value": "OWL:Ontology" + "value": "OWL_Ontology" }, "definition": { "type": [ @@ -9105,7 +9105,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -9128,7 +9128,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -9151,7 +9151,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -9174,7 +9174,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -9197,7 +9197,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -9220,7 +9220,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -9239,7 +9239,7 @@ "type": [ "literal" ], - "value": "OWL:OntologyProperty" + "value": "OWL_OntologyProperty" }, "definition": { "type": [ @@ -9334,7 +9334,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -9357,7 +9357,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -9380,7 +9380,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -9403,7 +9403,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -9426,7 +9426,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -9445,7 +9445,7 @@ "type": [ "literal" ], - "value": "OWL:ReflexiveProperty" + "value": "OWL_ReflexiveProperty" }, "definition": { "type": [ @@ -9542,7 +9542,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -9565,7 +9565,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -9588,7 +9588,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -9611,7 +9611,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -9634,7 +9634,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -9653,7 +9653,7 @@ "type": [ "literal" ], - "value": "OWL:Restriction" + "value": "OWL_Restriction" }, "definition": { "type": [ @@ -9758,7 +9758,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -9781,7 +9781,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -9804,7 +9804,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -9827,7 +9827,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -9850,7 +9850,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -9873,7 +9873,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -9892,7 +9892,7 @@ "type": [ "literal" ], - "value": "OWL:SymmetricProperty" + "value": "OWL_SymmetricProperty" }, "definition": { "type": [ @@ -9989,7 +9989,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -10012,7 +10012,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -10035,7 +10035,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -10058,7 +10058,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -10081,7 +10081,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -10100,7 +10100,7 @@ "type": [ "literal" ], - "value": "OWL:Thing" + "value": "OWL_Thing" }, "definition": { "type": [ @@ -10188,7 +10188,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -10211,7 +10211,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -10234,7 +10234,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -10253,7 +10253,7 @@ "type": [ "literal" ], - "value": "OWL:TransitiveProperty" + "value": "OWL_TransitiveProperty" }, "definition": { "type": [ @@ -10350,7 +10350,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -10373,7 +10373,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -10396,7 +10396,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -10419,7 +10419,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -10442,7 +10442,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -10463,7 +10463,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "definition": { "type": [ @@ -10553,7 +10553,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -10576,7 +10576,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -10599,7 +10599,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -10622,7 +10622,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "type": [ "class", @@ -10645,7 +10645,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -10668,7 +10668,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -10687,7 +10687,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "definition": { "type": [ @@ -10777,7 +10777,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -10800,7 +10800,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -10823,7 +10823,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -10846,7 +10846,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -10869,7 +10869,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -10888,7 +10888,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "definition": { "type": [ @@ -10980,7 +10980,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -11003,7 +11003,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -11026,7 +11026,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -11049,7 +11049,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -11072,7 +11072,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -11095,7 +11095,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "type": [ "property", @@ -11118,7 +11118,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -11137,7 +11137,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "definition": { "type": [ @@ -11228,7 +11228,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -11251,7 +11251,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -11274,7 +11274,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -11297,7 +11297,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -11320,7 +11320,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "type": [ "class", @@ -11343,7 +11343,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -11362,7 +11362,7 @@ "type": [ "literal" ], - "value": "RDFS:member" + "value": "RDFS_member" }, "definition": { "type": [ @@ -11452,7 +11452,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -11475,7 +11475,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -11498,7 +11498,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -11521,7 +11521,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -11544,7 +11544,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -11567,7 +11567,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -11586,7 +11586,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "definition": { "type": [ @@ -11676,7 +11676,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -11699,7 +11699,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -11722,7 +11722,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -11745,7 +11745,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -11768,7 +11768,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -11787,7 +11787,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "definition": { "type": [ @@ -11877,7 +11877,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -11900,7 +11900,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -11923,7 +11923,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -11946,7 +11946,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -11969,7 +11969,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -11992,7 +11992,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -12011,7 +12011,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "definition": { "type": [ @@ -12101,7 +12101,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -12124,7 +12124,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -12147,7 +12147,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -12170,7 +12170,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -12193,7 +12193,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -12216,7 +12216,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -12235,7 +12235,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "definition": { "type": [ @@ -12325,7 +12325,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -12348,7 +12348,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -12371,7 +12371,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -12394,7 +12394,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -12417,7 +12417,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -12436,7 +12436,7 @@ "type": [ "literal" ], - "value": "OWL:allValuesFrom" + "value": "OWL_allValuesFrom" }, "definition": { "type": [ @@ -12525,7 +12525,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -12548,7 +12548,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -12571,7 +12571,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -12594,7 +12594,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -12617,7 +12617,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -12640,7 +12640,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -12659,7 +12659,7 @@ "type": [ "literal" ], - "value": "OWL:annotatedProperty" + "value": "OWL_annotatedProperty" }, "definition": { "type": [ @@ -12748,7 +12748,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -12771,7 +12771,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -12794,7 +12794,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -12817,7 +12817,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -12840,7 +12840,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -12863,7 +12863,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -12882,7 +12882,7 @@ "type": [ "literal" ], - "value": "OWL:annotatedSource" + "value": "OWL_annotatedSource" }, "definition": { "type": [ @@ -12971,7 +12971,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -12994,7 +12994,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -13017,7 +13017,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -13040,7 +13040,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -13063,7 +13063,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -13086,7 +13086,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -13105,7 +13105,7 @@ "type": [ "literal" ], - "value": "OWL:annotatedTarget" + "value": "OWL_annotatedTarget" }, "definition": { "type": [ @@ -13194,7 +13194,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -13217,7 +13217,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -13240,7 +13240,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -13263,7 +13263,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -13286,7 +13286,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -13309,7 +13309,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -13328,7 +13328,7 @@ "type": [ "literal" ], - "value": "OWL:assertionProperty" + "value": "OWL_assertionProperty" }, "definition": { "type": [ @@ -13417,7 +13417,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -13440,7 +13440,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -13463,7 +13463,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -13486,7 +13486,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -13509,7 +13509,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -13529,7 +13529,7 @@ "type": [ "literal" ], - "value": "OWL:backwardCompatibleWith" + "value": "OWL_backwardCompatibleWith" }, "definition": { "type": [ @@ -13621,7 +13621,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -13644,7 +13644,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -13667,7 +13667,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -13690,7 +13690,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -13713,7 +13713,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -13733,7 +13733,7 @@ "type": [ "literal" ], - "value": "OWL:bottomDataProperty" + "value": "OWL_bottomDataProperty" }, "definition": { "type": [ @@ -13822,7 +13822,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -13845,7 +13845,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -13868,7 +13868,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -13891,7 +13891,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -13914,7 +13914,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "type": [ "class", @@ -13937,7 +13937,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -13957,7 +13957,7 @@ "type": [ "literal" ], - "value": "OWL:bottomObjectProperty" + "value": "OWL_bottomObjectProperty" }, "definition": { "type": [ @@ -14046,7 +14046,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -14069,7 +14069,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -14092,7 +14092,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -14115,7 +14115,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -14138,7 +14138,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -14157,7 +14157,7 @@ "type": [ "literal" ], - "value": "OWL:cardinality" + "value": "OWL_cardinality" }, "definition": { "type": [ @@ -14246,7 +14246,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -14269,7 +14269,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -14292,7 +14292,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -14315,7 +14315,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -14338,7 +14338,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -14357,7 +14357,7 @@ "type": [ "literal" ], - "value": "OWL:complementOf" + "value": "OWL_complementOf" }, "definition": { "type": [ @@ -14446,7 +14446,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -14469,7 +14469,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -14492,7 +14492,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -14515,7 +14515,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -14538,7 +14538,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -14557,7 +14557,7 @@ "type": [ "literal" ], - "value": "OWL:datatypeComplementOf" + "value": "OWL_datatypeComplementOf" }, "definition": { "type": [ @@ -14646,7 +14646,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -14669,7 +14669,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -14692,7 +14692,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "type": [ "class", @@ -14715,7 +14715,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -14738,7 +14738,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -14761,7 +14761,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -14781,7 +14781,7 @@ "type": [ "literal" ], - "value": "OWL:deprecated" + "value": "OWL_deprecated" }, "definition": { "type": [ @@ -14870,7 +14870,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -14893,7 +14893,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -14916,7 +14916,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -14939,7 +14939,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -14962,7 +14962,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -14985,7 +14985,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -15004,7 +15004,7 @@ "type": [ "literal" ], - "value": "OWL:differentFrom" + "value": "OWL_differentFrom" }, "definition": { "type": [ @@ -15093,7 +15093,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -15116,7 +15116,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -15139,7 +15139,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -15162,7 +15162,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -15185,7 +15185,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -15204,7 +15204,7 @@ "type": [ "literal" ], - "value": "OWL:disjointUnionOf" + "value": "OWL_disjointUnionOf" }, "definition": { "type": [ @@ -15293,7 +15293,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -15316,7 +15316,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -15339,7 +15339,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -15362,7 +15362,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -15385,7 +15385,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -15404,7 +15404,7 @@ "type": [ "literal" ], - "value": "OWL:disjointWith" + "value": "OWL_disjointWith" }, "definition": { "type": [ @@ -15493,7 +15493,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -15516,7 +15516,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -15539,7 +15539,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -15562,7 +15562,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -15585,7 +15585,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -15604,7 +15604,7 @@ "type": [ "literal" ], - "value": "OWL:distinctMembers" + "value": "OWL_distinctMembers" }, "definition": { "type": [ @@ -15693,7 +15693,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -15716,7 +15716,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -15739,7 +15739,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -15762,7 +15762,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -15785,7 +15785,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -15804,7 +15804,7 @@ "type": [ "literal" ], - "value": "OWL:equivalentClass" + "value": "OWL_equivalentClass" }, "definition": { "type": [ @@ -15893,7 +15893,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -15916,7 +15916,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -15939,7 +15939,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -15962,7 +15962,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -15985,7 +15985,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -16008,7 +16008,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -16027,7 +16027,7 @@ "type": [ "literal" ], - "value": "OWL:equivalentProperty" + "value": "OWL_equivalentProperty" }, "definition": { "type": [ @@ -16116,7 +16116,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -16139,7 +16139,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -16162,7 +16162,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -16185,7 +16185,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -16208,7 +16208,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -16227,7 +16227,7 @@ "type": [ "literal" ], - "value": "OWL:hasKey" + "value": "OWL_hasKey" }, "definition": { "type": [ @@ -16316,7 +16316,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -16339,7 +16339,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -16362,7 +16362,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -16385,7 +16385,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -16408,7 +16408,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -16427,7 +16427,7 @@ "type": [ "literal" ], - "value": "OWL:hasSelf" + "value": "OWL_hasSelf" }, "definition": { "type": [ @@ -16516,7 +16516,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -16539,7 +16539,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -16562,7 +16562,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -16585,7 +16585,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -16608,7 +16608,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -16631,7 +16631,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -16650,7 +16650,7 @@ "type": [ "literal" ], - "value": "OWL:hasValue" + "value": "OWL_hasValue" }, "definition": { "type": [ @@ -16739,7 +16739,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -16762,7 +16762,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -16785,7 +16785,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -16808,7 +16808,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -16831,7 +16831,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -16854,7 +16854,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -16874,7 +16874,7 @@ "type": [ "literal" ], - "value": "OWL:incompatibleWith" + "value": "OWL_incompatibleWith" }, "definition": { "type": [ @@ -16966,7 +16966,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -16989,7 +16989,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -17012,7 +17012,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -17035,7 +17035,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -17058,7 +17058,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -17077,7 +17077,7 @@ "type": [ "literal" ], - "value": "OWL:intersectionOf" + "value": "OWL_intersectionOf" }, "definition": { "type": [ @@ -17166,7 +17166,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -17189,7 +17189,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -17212,7 +17212,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -17235,7 +17235,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -17258,7 +17258,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -17281,7 +17281,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -17300,7 +17300,7 @@ "type": [ "literal" ], - "value": "OWL:inverseOf" + "value": "OWL_inverseOf" }, "definition": { "type": [ @@ -17389,7 +17389,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -17412,7 +17412,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -17435,7 +17435,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -17458,7 +17458,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -17481,7 +17481,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -17500,7 +17500,7 @@ "type": [ "literal" ], - "value": "OWL:maxCardinality" + "value": "OWL_maxCardinality" }, "definition": { "type": [ @@ -17589,7 +17589,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -17612,7 +17612,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -17635,7 +17635,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -17658,7 +17658,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -17681,7 +17681,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -17700,7 +17700,7 @@ "type": [ "literal" ], - "value": "OWL:maxQualifiedCardinality" + "value": "OWL_maxQualifiedCardinality" }, "definition": { "type": [ @@ -17789,7 +17789,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -17812,7 +17812,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -17835,7 +17835,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -17858,7 +17858,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -17881,7 +17881,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -17900,7 +17900,7 @@ "type": [ "literal" ], - "value": "OWL:members" + "value": "OWL_members" }, "definition": { "type": [ @@ -17989,7 +17989,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -18012,7 +18012,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -18035,7 +18035,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -18058,7 +18058,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -18081,7 +18081,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -18104,7 +18104,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -18123,7 +18123,7 @@ "type": [ "literal" ], - "value": "OWL:minCardinality" + "value": "OWL_minCardinality" }, "definition": { "type": [ @@ -18212,7 +18212,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -18235,7 +18235,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -18258,7 +18258,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -18281,7 +18281,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -18304,7 +18304,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -18323,7 +18323,7 @@ "type": [ "literal" ], - "value": "OWL:minQualifiedCardinality" + "value": "OWL_minQualifiedCardinality" }, "definition": { "type": [ @@ -18412,7 +18412,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -18435,7 +18435,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -18458,7 +18458,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -18481,7 +18481,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -18504,7 +18504,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -18523,7 +18523,7 @@ "type": [ "literal" ], - "value": "OWL:onClass" + "value": "OWL_onClass" }, "definition": { "type": [ @@ -18612,7 +18612,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -18635,7 +18635,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -18658,7 +18658,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -18681,7 +18681,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -18704,7 +18704,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -18723,7 +18723,7 @@ "type": [ "literal" ], - "value": "OWL:onDataRange" + "value": "OWL_onDataRange" }, "definition": { "type": [ @@ -18812,7 +18812,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -18835,7 +18835,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -18858,7 +18858,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "type": [ "class", @@ -18881,7 +18881,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -18904,7 +18904,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -18927,7 +18927,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -18946,7 +18946,7 @@ "type": [ "literal" ], - "value": "OWL:onDatatype" + "value": "OWL_onDatatype" }, "definition": { "type": [ @@ -19035,7 +19035,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -19058,7 +19058,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -19081,7 +19081,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "type": [ "class", @@ -19104,7 +19104,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -19127,7 +19127,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -19150,7 +19150,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -19169,7 +19169,7 @@ "type": [ "literal" ], - "value": "OWL:onProperties" + "value": "OWL_onProperties" }, "definition": { "type": [ @@ -19258,7 +19258,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -19281,7 +19281,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -19304,7 +19304,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -19327,7 +19327,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -19350,7 +19350,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -19369,7 +19369,7 @@ "type": [ "literal" ], - "value": "OWL:onProperty" + "value": "OWL_onProperty" }, "definition": { "type": [ @@ -19458,7 +19458,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -19481,7 +19481,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -19504,7 +19504,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -19527,7 +19527,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -19550,7 +19550,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -19569,7 +19569,7 @@ "type": [ "literal" ], - "value": "OWL:oneOf" + "value": "OWL_oneOf" }, "definition": { "type": [ @@ -19658,7 +19658,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -19681,7 +19681,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -19704,7 +19704,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -19727,7 +19727,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -19750,7 +19750,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -19773,7 +19773,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -19793,7 +19793,7 @@ "type": [ "literal" ], - "value": "OWL:priorVersion" + "value": "OWL_priorVersion" }, "definition": { "type": [ @@ -19885,7 +19885,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -19908,7 +19908,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -19931,7 +19931,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -19954,7 +19954,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -19977,7 +19977,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -19996,7 +19996,7 @@ "type": [ "literal" ], - "value": "OWL:propertyChainAxiom" + "value": "OWL_propertyChainAxiom" }, "definition": { "type": [ @@ -20085,7 +20085,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -20108,7 +20108,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -20131,7 +20131,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -20154,7 +20154,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -20177,7 +20177,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -20196,7 +20196,7 @@ "type": [ "literal" ], - "value": "OWL:propertyDisjointWith" + "value": "OWL_propertyDisjointWith" }, "definition": { "type": [ @@ -20285,7 +20285,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -20308,7 +20308,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -20331,7 +20331,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -20354,7 +20354,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -20377,7 +20377,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -20396,7 +20396,7 @@ "type": [ "literal" ], - "value": "OWL:qualifiedCardinality" + "value": "OWL_qualifiedCardinality" }, "definition": { "type": [ @@ -20485,7 +20485,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -20508,7 +20508,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -20531,7 +20531,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -20554,7 +20554,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -20577,7 +20577,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -20596,7 +20596,7 @@ "type": [ "literal" ], - "value": "OWL:sameAs" + "value": "OWL_sameAs" }, "definition": { "type": [ @@ -20685,7 +20685,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -20708,7 +20708,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -20731,7 +20731,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -20754,7 +20754,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -20777,7 +20777,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -20796,7 +20796,7 @@ "type": [ "literal" ], - "value": "OWL:someValuesFrom" + "value": "OWL_someValuesFrom" }, "definition": { "type": [ @@ -20885,7 +20885,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -20908,7 +20908,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -20931,7 +20931,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -20954,7 +20954,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -20977,7 +20977,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -21000,7 +21000,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -21019,7 +21019,7 @@ "type": [ "literal" ], - "value": "OWL:sourceIndividual" + "value": "OWL_sourceIndividual" }, "definition": { "type": [ @@ -21108,7 +21108,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -21131,7 +21131,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -21154,7 +21154,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -21177,7 +21177,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -21200,7 +21200,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -21219,7 +21219,7 @@ "type": [ "literal" ], - "value": "OWL:targetIndividual" + "value": "OWL_targetIndividual" }, "definition": { "type": [ @@ -21308,7 +21308,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -21331,7 +21331,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -21354,7 +21354,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -21377,7 +21377,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -21400,7 +21400,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -21419,7 +21419,7 @@ "type": [ "literal" ], - "value": "OWL:targetValue" + "value": "OWL_targetValue" }, "definition": { "type": [ @@ -21508,7 +21508,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -21531,7 +21531,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -21554,7 +21554,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -21577,7 +21577,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -21600,7 +21600,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "type": [ "class", @@ -21623,7 +21623,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -21643,7 +21643,7 @@ "type": [ "literal" ], - "value": "OWL:topDataProperty" + "value": "OWL_topDataProperty" }, "definition": { "type": [ @@ -21732,7 +21732,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -21755,7 +21755,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -21778,7 +21778,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -21801,7 +21801,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -21824,7 +21824,7 @@ "type": [ "literal" ], - "value": "RDFS:Literal" + "value": "RDFS_Literal" }, "type": [ "class", @@ -21847,7 +21847,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -21867,7 +21867,7 @@ "type": [ "literal" ], - "value": "OWL:topObjectProperty" + "value": "OWL_topObjectProperty" }, "definition": { "type": [ @@ -21956,7 +21956,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -21979,7 +21979,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -22002,7 +22002,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -22025,7 +22025,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -22048,7 +22048,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -22067,7 +22067,7 @@ "type": [ "literal" ], - "value": "OWL:unionOf" + "value": "OWL_unionOf" }, "definition": { "type": [ @@ -22156,7 +22156,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -22179,7 +22179,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -22202,7 +22202,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -22225,7 +22225,7 @@ "type": [ "literal" ], - "value": "RDFS:Class" + "value": "RDFS_Class" }, "type": [ "class", @@ -22248,7 +22248,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -22271,7 +22271,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -22291,7 +22291,7 @@ "type": [ "literal" ], - "value": "OWL:versionInfo" + "value": "OWL_versionInfo" }, "definition": { "type": [ @@ -22380,7 +22380,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -22403,7 +22403,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -22426,7 +22426,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -22449,7 +22449,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -22472,7 +22472,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -22495,7 +22495,7 @@ "type": [ "literal" ], - "value": "RDFS:Resource" + "value": "RDFS_Resource" }, "type": [ "class", @@ -22514,7 +22514,7 @@ "type": [ "literal" ], - "value": "OWL:withRestrictions" + "value": "OWL_withRestrictions" }, "definition": { "type": [ @@ -22603,7 +22603,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -22626,7 +22626,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -22649,7 +22649,7 @@ "type": [ "literal" ], - "value": "RDFS:Datatype" + "value": "RDFS_Datatype" }, "type": [ "class", @@ -22672,7 +22672,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -22695,7 +22695,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -22718,7 +22718,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -22746,7 +22746,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -22769,7 +22769,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -22792,7 +22792,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "type": [ "property", @@ -23008,7 +23008,7 @@ "type": [ "literal" ], - "value": "SKOS:Collection" + "value": "SKOS_Collection" }, "directAncestor": [], "hasDirectChildren": true, @@ -23122,7 +23122,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "type": [ "class", @@ -23147,7 +23147,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -23173,7 +23173,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -23197,7 +23197,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -23222,7 +23222,7 @@ "type": [ "literal" ], - "value": "SKOS:ConceptScheme" + "value": "SKOS_ConceptScheme" }, "type": [ "class", @@ -23245,7 +23245,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -23264,7 +23264,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "directAncestor": [], "hasDirectChildren": false, @@ -23358,7 +23358,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -23382,7 +23382,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -23405,7 +23405,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -23424,7 +23424,7 @@ "type": [ "literal" ], - "value": "SKOS:ConceptScheme" + "value": "SKOS_ConceptScheme" }, "directAncestor": [], "hasDirectChildren": false, @@ -23551,7 +23551,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "type": [ "class", @@ -23576,7 +23576,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -23602,7 +23602,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -23626,7 +23626,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -23651,7 +23651,7 @@ "type": [ "literal" ], - "value": "SKOS:example" + "value": "SKOS_example" }, "type": [ "property", @@ -23675,7 +23675,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -23694,7 +23694,7 @@ "type": [ "literal" ], - "value": "SKOS:OrderedCollection" + "value": "SKOS_OrderedCollection" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#Collection", "directParent": "http://www.w3.org/2004/02/skos/core#Collection", @@ -23813,7 +23813,7 @@ "type": [ "literal" ], - "value": "SKOS:Collection" + "value": "SKOS_Collection" }, "type": [ "class", @@ -23838,7 +23838,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -23862,7 +23862,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -23887,7 +23887,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -23911,7 +23911,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -23934,7 +23934,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -23956,7 +23956,7 @@ "type": [ "literal" ], - "value": "SKOS:altLabel" + "value": "SKOS_altLabel" }, "definition": [ { @@ -24111,7 +24111,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -24135,7 +24135,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -24158,7 +24158,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -24181,7 +24181,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -24206,7 +24206,7 @@ "type": [ "literal" ], - "value": "SKOS:example" + "value": "SKOS_example" }, "type": [ "property", @@ -24230,7 +24230,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -24250,7 +24250,7 @@ "type": [ "literal" ], - "value": "SKOS:broadMatch" + "value": "SKOS_broadMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -24360,7 +24360,7 @@ "type": [ "literal" ], - "value": "SKOS:broaderTransitive" + "value": "SKOS_broaderTransitive" }, "type": [ "property", @@ -24386,7 +24386,7 @@ "type": [ "literal" ], - "value": "SKOS:mappingRelation" + "value": "SKOS_mappingRelation" }, "type": [ "property", @@ -24412,7 +24412,7 @@ "type": [ "literal" ], - "value": "SKOS:broader" + "value": "SKOS_broader" }, "type": [ "property", @@ -24438,7 +24438,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowMatch" + "value": "SKOS_narrowMatch" }, "type": [ "property", @@ -24464,7 +24464,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -24488,7 +24488,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -24511,7 +24511,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -24536,7 +24536,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -24560,7 +24560,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -24580,7 +24580,7 @@ "type": [ "literal" ], - "value": "SKOS:broader" + "value": "SKOS_broader" }, "definition": { "type": [ @@ -24720,7 +24720,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -24746,7 +24746,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -24770,7 +24770,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -24795,7 +24795,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -24821,7 +24821,7 @@ "type": [ "literal" ], - "value": "SKOS:broaderTransitive" + "value": "SKOS_broaderTransitive" }, "type": [ "property", @@ -24845,7 +24845,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -24870,7 +24870,7 @@ "type": [ "literal" ], - "value": "SKOS:narrower" + "value": "SKOS_narrower" }, "type": [ "property", @@ -24894,7 +24894,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -24917,7 +24917,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -24937,7 +24937,7 @@ "type": [ "literal" ], - "value": "SKOS:broaderTransitive" + "value": "SKOS_broaderTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -25049,7 +25049,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -25075,7 +25075,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -25101,7 +25101,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowerTransitive" + "value": "SKOS_narrowerTransitive" }, "type": [ "property", @@ -25125,7 +25125,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -25148,7 +25148,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -25173,7 +25173,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -25197,7 +25197,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -25217,7 +25217,7 @@ "type": [ "literal" ], - "value": "SKOS:changeNote" + "value": "SKOS_changeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -25315,7 +25315,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "type": [ "property", @@ -25341,7 +25341,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -25365,7 +25365,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -25388,7 +25388,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -25411,7 +25411,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -25431,7 +25431,7 @@ "type": [ "literal" ], - "value": "SKOS:closeMatch" + "value": "SKOS_closeMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -25534,7 +25534,7 @@ "type": [ "literal" ], - "value": "SKOS:mappingRelation" + "value": "SKOS_mappingRelation" }, "type": [ "property", @@ -25560,7 +25560,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -25584,7 +25584,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -25607,7 +25607,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -25632,7 +25632,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -25656,7 +25656,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -25676,7 +25676,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -25774,7 +25774,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "type": [ "property", @@ -25798,7 +25798,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -25821,7 +25821,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -25844,7 +25844,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -25864,7 +25864,7 @@ "type": [ "literal" ], - "value": "SKOS:editorialNote" + "value": "SKOS_editorialNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -25962,7 +25962,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "type": [ "property", @@ -25988,7 +25988,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -26012,7 +26012,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -26035,7 +26035,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -26058,7 +26058,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -26078,7 +26078,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "definition": { "type": [ @@ -26205,7 +26205,7 @@ "type": [ "literal" ], - "value": "SKOS:mappingRelation" + "value": "SKOS_mappingRelation" }, "type": [ "property", @@ -26231,7 +26231,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -26255,7 +26255,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -26278,7 +26278,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -26301,7 +26301,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -26326,7 +26326,7 @@ "type": [ "literal" ], - "value": "SKOS:closeMatch" + "value": "SKOS_closeMatch" }, "type": [ "property", @@ -26352,7 +26352,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -26376,7 +26376,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -26396,7 +26396,7 @@ "type": [ "literal" ], - "value": "SKOS:example" + "value": "SKOS_example" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -26494,7 +26494,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "type": [ "property", @@ -26520,7 +26520,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -26544,7 +26544,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -26567,7 +26567,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -26590,7 +26590,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -26610,7 +26610,7 @@ "type": [ "literal" ], - "value": "SKOS:hasTopConcept" + "value": "SKOS_hasTopConcept" }, "directAncestor": [], "hasDirectChildren": false, @@ -26709,7 +26709,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "type": [ "class", @@ -26734,7 +26734,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -26758,7 +26758,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -26781,7 +26781,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -26806,7 +26806,7 @@ "type": [ "literal" ], - "value": "SKOS:topConceptOf" + "value": "SKOS_topConceptOf" }, "type": [ "property", @@ -26830,7 +26830,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -26855,7 +26855,7 @@ "type": [ "literal" ], - "value": "SKOS:ConceptScheme" + "value": "SKOS_ConceptScheme" }, "type": [ "class", @@ -26878,7 +26878,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -26898,7 +26898,7 @@ "type": [ "literal" ], - "value": "SKOS:hiddenLabel" + "value": "SKOS_hiddenLabel" }, "definition": [ { @@ -27037,7 +27037,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -27061,7 +27061,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -27084,7 +27084,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -27107,7 +27107,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -27130,7 +27130,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -27150,7 +27150,7 @@ "type": [ "literal" ], - "value": "SKOS:historyNote" + "value": "SKOS_historyNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -27248,7 +27248,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "type": [ "property", @@ -27274,7 +27274,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -27298,7 +27298,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -27321,7 +27321,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -27344,7 +27344,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -27364,7 +27364,7 @@ "type": [ "literal" ], - "value": "SKOS:inScheme" + "value": "SKOS_inScheme" }, "directAncestor": [], "hasDirectChildren": true, @@ -27477,7 +27477,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -27503,7 +27503,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -27527,7 +27527,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -27550,7 +27550,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -27575,7 +27575,7 @@ "type": [ "literal" ], - "value": "SKOS:ConceptScheme" + "value": "SKOS_ConceptScheme" }, "type": [ "class", @@ -27598,7 +27598,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -27618,7 +27618,7 @@ "type": [ "literal" ], - "value": "SKOS:mappingRelation" + "value": "SKOS_mappingRelation" }, "definition": { "type": [ @@ -27738,7 +27738,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -27762,7 +27762,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -27785,7 +27785,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -27808,7 +27808,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -27833,7 +27833,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -27857,7 +27857,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -27877,7 +27877,7 @@ "type": [ "literal" ], - "value": "SKOS:member" + "value": "SKOS_member" }, "directAncestor": [], "hasDirectChildren": false, @@ -27981,7 +27981,7 @@ "type": [ "literal" ], - "value": "SKOS:Collection" + "value": "SKOS_Collection" }, "type": [ "class", @@ -28006,7 +28006,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "type": [ "class", @@ -28031,7 +28031,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -28055,7 +28055,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -28078,7 +28078,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -28101,7 +28101,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -28124,7 +28124,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -28144,7 +28144,7 @@ "type": [ "literal" ], - "value": "SKOS:memberList" + "value": "SKOS_memberList" }, "definition": { "type": [ @@ -28265,7 +28265,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -28289,7 +28289,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -28312,7 +28312,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -28335,7 +28335,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -28358,7 +28358,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -28381,7 +28381,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -28406,7 +28406,7 @@ "type": [ "literal" ], - "value": "SKOS:OrderedCollection" + "value": "SKOS_OrderedCollection" }, "type": [ "class", @@ -28426,7 +28426,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowMatch" + "value": "SKOS_narrowMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -28536,7 +28536,7 @@ "type": [ "literal" ], - "value": "SKOS:mappingRelation" + "value": "SKOS_mappingRelation" }, "type": [ "property", @@ -28562,7 +28562,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -28588,7 +28588,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowerTransitive" + "value": "SKOS_narrowerTransitive" }, "type": [ "property", @@ -28614,7 +28614,7 @@ "type": [ "literal" ], - "value": "SKOS:narrower" + "value": "SKOS_narrower" }, "type": [ "property", @@ -28638,7 +28638,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -28663,7 +28663,7 @@ "type": [ "literal" ], - "value": "SKOS:broadMatch" + "value": "SKOS_broadMatch" }, "type": [ "property", @@ -28687,7 +28687,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -28712,7 +28712,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -28736,7 +28736,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -28756,7 +28756,7 @@ "type": [ "literal" ], - "value": "SKOS:narrower" + "value": "SKOS_narrower" }, "definition": { "type": [ @@ -28896,7 +28896,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -28922,7 +28922,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -28948,7 +28948,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowerTransitive" + "value": "SKOS_narrowerTransitive" }, "type": [ "property", @@ -28972,7 +28972,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -28997,7 +28997,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -29023,7 +29023,7 @@ "type": [ "literal" ], - "value": "SKOS:broader" + "value": "SKOS_broader" }, "type": [ "property", @@ -29047,7 +29047,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -29070,7 +29070,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -29093,7 +29093,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -29113,7 +29113,7 @@ "type": [ "literal" ], - "value": "SKOS:narrowerTransitive" + "value": "SKOS_narrowerTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -29225,7 +29225,7 @@ "type": [ "literal" ], - "value": "SKOS:broaderTransitive" + "value": "SKOS_broaderTransitive" }, "type": [ "property", @@ -29251,7 +29251,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -29277,7 +29277,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -29301,7 +29301,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -29324,7 +29324,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -29349,7 +29349,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -29373,7 +29373,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -29393,7 +29393,7 @@ "type": [ "literal" ], - "value": "SKOS:notation" + "value": "SKOS_notation" }, "directAncestor": [], "hasDirectChildren": false, @@ -29505,7 +29505,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -29531,7 +29531,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -29555,7 +29555,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -29578,7 +29578,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -29598,7 +29598,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "directAncestor": [], "hasDirectChildren": true, @@ -29710,7 +29710,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -29736,7 +29736,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -29760,7 +29760,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -29783,7 +29783,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -29803,7 +29803,7 @@ "type": [ "literal" ], - "value": "SKOS:prefLabel" + "value": "SKOS_prefLabel" }, "definition": [ { @@ -29958,7 +29958,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -29982,7 +29982,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -30005,7 +30005,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -30028,7 +30028,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -30051,7 +30051,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -30071,7 +30071,7 @@ "type": [ "literal" ], - "value": "SKOS:related" + "value": "SKOS_related" }, "definition": { "type": [ @@ -30192,7 +30192,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -30216,7 +30216,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -30239,7 +30239,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -30262,7 +30262,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -30287,7 +30287,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -30311,7 +30311,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -30331,7 +30331,7 @@ "type": [ "literal" ], - "value": "SKOS:relatedMatch" + "value": "SKOS_relatedMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -30440,7 +30440,7 @@ "type": [ "literal" ], - "value": "SKOS:related" + "value": "SKOS_related" }, "type": [ "property", @@ -30466,7 +30466,7 @@ "type": [ "literal" ], - "value": "SKOS:mappingRelation" + "value": "SKOS_mappingRelation" }, "type": [ "property", @@ -30492,7 +30492,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -30516,7 +30516,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -30539,7 +30539,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -30564,7 +30564,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "type": [ "property", @@ -30588,7 +30588,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -30608,7 +30608,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -30706,7 +30706,7 @@ "type": [ "literal" ], - "value": "SKOS:note" + "value": "SKOS_note" }, "type": [ "property", @@ -30732,7 +30732,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -30756,7 +30756,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -30779,7 +30779,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -30802,7 +30802,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -30822,7 +30822,7 @@ "type": [ "literal" ], - "value": "SKOS:semanticRelation" + "value": "SKOS_semanticRelation" }, "directAncestor": [], "hasDirectChildren": true, @@ -30936,7 +30936,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "type": [ "class", @@ -30961,7 +30961,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -30987,7 +30987,7 @@ "type": [ "literal" ], - "value": "SKOS:scopeNote" + "value": "SKOS_scopeNote" }, "type": [ "property", @@ -31011,7 +31011,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -31034,7 +31034,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -31057,7 +31057,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -31080,7 +31080,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -31100,7 +31100,7 @@ "type": [ "literal" ], - "value": "SKOS:topConceptOf" + "value": "SKOS_topConceptOf" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#inScheme", "directParent": "http://www.w3.org/2004/02/skos/core#inScheme", @@ -31201,7 +31201,7 @@ "type": [ "literal" ], - "value": "SKOS:hasTopConcept" + "value": "SKOS_hasTopConcept" }, "type": [ "property", @@ -31227,7 +31227,7 @@ "type": [ "literal" ], - "value": "SKOS:inScheme" + "value": "SKOS_inScheme" }, "type": [ "property", @@ -31253,7 +31253,7 @@ "type": [ "literal" ], - "value": "SKOS:Concept" + "value": "SKOS_Concept" }, "type": [ "class", @@ -31278,7 +31278,7 @@ "type": [ "literal" ], - "value": "SKOS:definition" + "value": "SKOS_definition" }, "type": [ "property", @@ -31302,7 +31302,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -31325,7 +31325,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -31348,7 +31348,7 @@ "type": [ "literal" ], - "value": "RDFS:isDefinedBy" + "value": "RDFS_isDefinedBy" }, "type": [ "property", @@ -31371,7 +31371,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -31396,7 +31396,7 @@ "type": [ "literal" ], - "value": "SKOS:ConceptScheme" + "value": "SKOS_ConceptScheme" }, "type": [ "class", @@ -31419,7 +31419,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -31468,7 +31468,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "type": [ "property", @@ -31739,7 +31739,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -31826,7 +31826,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -32028,7 +32028,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -32115,7 +32115,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -32251,7 +32251,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -32274,7 +32274,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -32440,7 +32440,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -32484,7 +32484,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -32659,7 +32659,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -32703,7 +32703,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -32965,7 +32965,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -33031,7 +33031,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -33194,7 +33194,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -33217,7 +33217,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -33396,7 +33396,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -33419,7 +33419,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -33623,7 +33623,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -33688,7 +33688,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -33908,7 +33908,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -33957,7 +33957,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -34225,7 +34225,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -34334,7 +34334,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -34490,7 +34490,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -34623,7 +34623,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -34807,7 +34807,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -35000,7 +35000,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -35156,7 +35156,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -35241,7 +35241,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -35483,7 +35483,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -35655,7 +35655,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -35853,7 +35853,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -35938,7 +35938,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -36199,7 +36199,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -36349,7 +36349,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -36529,7 +36529,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -36634,7 +36634,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -36858,7 +36858,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -36963,7 +36963,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -37285,7 +37285,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -37660,7 +37660,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -37925,7 +37925,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -38136,7 +38136,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -38346,7 +38346,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -38561,7 +38561,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -38836,7 +38836,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -39129,7 +39129,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -39351,7 +39351,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -39456,7 +39456,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -39678,7 +39678,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -39764,7 +39764,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -39965,7 +39965,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -40031,7 +40031,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -40262,7 +40262,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -40468,7 +40468,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -40714,7 +40714,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -40960,7 +40960,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -41186,7 +41186,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -41452,7 +41452,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -41680,7 +41680,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -41986,7 +41986,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -42248,7 +42248,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -42594,7 +42594,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -42894,7 +42894,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -43343,7 +43343,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -43572,7 +43572,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -43738,7 +43738,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -43864,7 +43864,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -43907,7 +43907,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -44027,7 +44027,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -44050,7 +44050,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -44256,7 +44256,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -44539,7 +44539,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -44778,7 +44778,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -45110,7 +45110,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -45255,7 +45255,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -45423,7 +45423,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -45446,7 +45446,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -45616,7 +45616,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -45659,7 +45659,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -45832,7 +45832,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -45895,7 +45895,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -46243,7 +46243,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -46409,7 +46409,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -46626,7 +46626,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -46729,7 +46729,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -46922,7 +46922,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -47128,7 +47128,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -47305,7 +47305,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -47468,7 +47468,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -47667,7 +47667,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -47833,7 +47833,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -48132,7 +48132,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -48421,7 +48421,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -48585,7 +48585,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -48688,7 +48688,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -48854,7 +48854,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -48977,7 +48977,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -49161,7 +49161,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -49244,7 +49244,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -49428,7 +49428,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -49531,7 +49531,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -49732,7 +49732,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -49927,7 +49927,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -50076,7 +50076,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -50250,7 +50250,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -50376,7 +50376,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -50566,7 +50566,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -50752,7 +50752,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -50948,7 +50948,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -51117,7 +51117,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -51271,7 +51271,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -51374,7 +51374,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -51556,7 +51556,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -51619,7 +51619,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -51844,7 +51844,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -51907,7 +51907,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -52061,7 +52061,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -52104,7 +52104,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -52272,7 +52272,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -52295,7 +52295,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -52386,7 +52386,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -52589,7 +52589,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -52832,7 +52832,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -53067,7 +53067,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -53296,7 +53296,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -53509,7 +53509,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -53552,7 +53552,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -53816,7 +53816,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -54102,7 +54102,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -54292,7 +54292,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -54401,7 +54401,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -54603,7 +54603,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -54646,7 +54646,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -54905,7 +54905,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -55131,7 +55131,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -55231,7 +55231,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -55274,7 +55274,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -55391,7 +55391,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -55474,7 +55474,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -55594,7 +55594,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -55617,7 +55617,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -55761,7 +55761,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -55856,7 +55856,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -56087,7 +56087,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -56130,7 +56130,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -56335,7 +56335,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -56418,7 +56418,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -56574,7 +56574,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -56760,7 +56760,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -56970,7 +56970,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -57156,7 +57156,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -57395,7 +57395,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -57541,7 +57541,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -57738,7 +57738,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -57884,7 +57884,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -58029,7 +58029,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -58229,7 +58229,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -58458,7 +58458,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -58645,7 +58645,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -58711,7 +58711,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -58881,7 +58881,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -59024,7 +59024,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -59189,7 +59189,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -59441,7 +59441,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -59747,7 +59747,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -59928,7 +59928,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -59994,7 +59994,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -60298,7 +60298,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -60607,7 +60607,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -60827,7 +60827,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -61013,7 +61013,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -61152,7 +61152,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -61238,7 +61238,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -61477,7 +61477,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -61672,7 +61672,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -61857,7 +61857,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -61983,7 +61983,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -62167,7 +62167,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -62273,7 +62273,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -62459,7 +62459,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -62585,7 +62585,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -62771,7 +62771,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -62897,7 +62897,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -63077,7 +63077,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -63120,7 +63120,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -63308,7 +63308,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -63331,7 +63331,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -63541,7 +63541,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -63584,7 +63584,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -63723,7 +63723,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -63829,7 +63829,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -63949,7 +63949,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -63972,7 +63972,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -64092,7 +64092,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -64115,7 +64115,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -64261,7 +64261,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -64284,7 +64284,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -64410,7 +64410,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -64453,7 +64453,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -64624,7 +64624,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -64707,7 +64707,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -64888,7 +64888,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -64951,7 +64951,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -65115,7 +65115,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -65218,7 +65218,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -65441,7 +65441,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -65664,7 +65664,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -65784,7 +65784,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -65807,7 +65807,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -65953,7 +65953,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -65976,7 +65976,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -66213,7 +66213,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -66499,7 +66499,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -66633,7 +66633,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -66679,7 +66679,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -66879,7 +66879,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -67002,7 +67002,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -67197,7 +67197,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -67343,7 +67343,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -67541,7 +67541,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -67644,7 +67644,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -67825,7 +67825,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -67888,7 +67888,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -67988,7 +67988,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -68031,7 +68031,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -68221,7 +68221,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -69531,7 +69531,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -69630,7 +69630,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -69723,7 +69723,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -69749,7 +69749,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -69814,7 +69814,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -70644,7 +70644,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -70738,7 +70738,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -70856,7 +70856,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -70882,7 +70882,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -71007,7 +71007,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -72148,7 +72148,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -72237,7 +72237,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -72262,7 +72262,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -72432,7 +72432,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -72458,7 +72458,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -72549,7 +72549,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -73609,7 +73609,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -73698,7 +73698,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -73853,7 +73853,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -73889,7 +73889,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -74014,7 +74014,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -75276,7 +75276,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -75355,7 +75355,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -75385,7 +75385,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -75455,7 +75455,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonymType" + "value": "OIO_hasSynonymType" }, "type": [ "property", @@ -75500,7 +75500,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -75614,7 +75614,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -75640,7 +75640,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -76291,7 +76291,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -76385,7 +76385,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -76534,7 +76534,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -76560,7 +76560,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -76637,7 +76637,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "type": [ "property", @@ -76747,7 +76747,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -78197,7 +78197,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -78223,7 +78223,7 @@ "type": [ "literal" ], - "value": "OIO:hasNarrowSynonym" + "value": "OIO_hasNarrowSynonym" }, "type": [ "property", @@ -78252,7 +78252,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -78282,7 +78282,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -78381,7 +78381,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -78406,7 +78406,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -78495,7 +78495,7 @@ "type": [ "literal" ], - "value": "OIO:hasBroadSynonym" + "value": "OIO_hasBroadSynonym" }, "type": [ "property", @@ -78541,7 +78541,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -78567,7 +78567,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -78622,7 +78622,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -79227,7 +79227,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -79321,7 +79321,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -79449,7 +79449,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -79514,7 +79514,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -80694,7 +80694,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -80793,7 +80793,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -80818,7 +80818,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -80984,7 +80984,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -81010,7 +81010,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -81100,7 +81100,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -82819,7 +82819,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -82844,7 +82844,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -82933,7 +82933,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -82958,7 +82958,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -83093,7 +83093,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -83119,7 +83119,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -83143,7 +83143,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -84108,7 +84108,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -84202,7 +84202,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -84227,7 +84227,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -84339,7 +84339,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -84387,7 +84387,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -84413,7 +84413,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -84439,7 +84439,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "type": [ "property", @@ -84504,7 +84504,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -86115,7 +86115,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -86140,7 +86140,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -86239,7 +86239,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -86264,7 +86264,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -86379,7 +86379,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -86405,7 +86405,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -86426,7 +86426,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "type": [ "property", @@ -88587,7 +88587,7 @@ "type": [ "literal" ], - "value": "SKOS:closeMatch" + "value": "SKOS_closeMatch" }, "type": [ "property", @@ -88633,7 +88633,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -88837,7 +88837,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -88917,7 +88917,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -88987,7 +88987,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonymType" + "value": "OIO_hasSynonymType" }, "type": [ "property", @@ -89057,7 +89057,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -89087,7 +89087,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -89298,7 +89298,7 @@ "type": [ "literal" ], - "value": "RDFS:seeAlso" + "value": "RDFS_seeAlso" }, "type": [ "property", @@ -89328,7 +89328,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -89359,7 +89359,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -90746,7 +90746,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -90771,7 +90771,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -90886,7 +90886,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -90911,7 +90911,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -91014,7 +91014,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -91045,7 +91045,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -91074,7 +91074,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -91579,7 +91579,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -91673,7 +91673,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -91698,7 +91698,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -91796,7 +91796,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -91825,7 +91825,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -91845,7 +91845,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "type": [ "property", @@ -91940,7 +91940,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -92426,7 +92426,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -92451,7 +92451,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -92580,7 +92580,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -92606,7 +92606,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -92721,7 +92721,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -93093,7 +93093,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -93182,7 +93182,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -93207,7 +93207,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -93347,7 +93347,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -93371,7 +93371,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -93485,7 +93485,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -94029,7 +94029,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -94138,7 +94138,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -94163,7 +94163,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -94266,7 +94266,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -94292,7 +94292,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -94418,7 +94418,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -95169,7 +95169,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -95258,7 +95258,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -95283,7 +95283,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -95487,7 +95487,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -95677,7 +95677,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -96044,7 +96044,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -96138,7 +96138,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -96163,7 +96163,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -96323,7 +96323,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -96347,7 +96347,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -96441,7 +96441,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -96928,7 +96928,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -97037,7 +97037,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -97062,7 +97062,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -97268,7 +97268,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -97294,7 +97294,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -97354,7 +97354,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -97443,7 +97443,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -98240,7 +98240,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -98265,7 +98265,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -98374,7 +98374,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -98399,7 +98399,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -98569,7 +98569,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -98595,7 +98595,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -98650,7 +98650,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -100525,7 +100525,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -100551,7 +100551,7 @@ "type": [ "literal" ], - "value": "OIO:hasNarrowSynonym" + "value": "OIO_hasNarrowSynonym" }, "type": [ "property", @@ -100650,7 +100650,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -100695,7 +100695,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -100789,7 +100789,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -100814,7 +100814,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -100909,7 +100909,7 @@ "type": [ "literal" ], - "value": "should:conform_to" + "value": "should_conform_to" }, "type": [ "property", @@ -100957,7 +100957,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -100983,7 +100983,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -102870,7 +102870,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -102909,7 +102909,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -102934,7 +102934,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -103028,7 +103028,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -103053,7 +103053,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -103136,7 +103136,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -103167,7 +103167,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -103239,7 +103239,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "type": [ "property", @@ -103714,7 +103714,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -103784,7 +103784,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonymType" + "value": "OIO_hasSynonymType" }, "type": [ "property", @@ -103829,7 +103829,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -103854,7 +103854,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -103946,7 +103946,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -103994,7 +103994,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -104170,7 +104170,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -105628,7 +105628,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -105653,7 +105653,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -105742,7 +105742,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -105767,7 +105767,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -105936,7 +105936,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -105962,7 +105962,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -106019,7 +106019,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "type": [ "property", @@ -106914,7 +106914,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -107013,7 +107013,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -107038,7 +107038,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -107216,7 +107216,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -107242,7 +107242,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -107327,7 +107327,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -107747,7 +107747,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -107836,7 +107836,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -107861,7 +107861,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -107984,7 +107984,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -108094,7 +108094,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -108506,7 +108506,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -108551,7 +108551,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -108639,7 +108639,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -108665,7 +108665,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -108720,7 +108720,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -108961,7 +108961,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -109069,7 +109069,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -109098,7 +109098,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -109367,7 +109367,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -109495,7 +109495,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -109555,7 +109555,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -109741,7 +109741,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -109825,7 +109825,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -110175,7 +110175,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -110303,7 +110303,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -110329,7 +110329,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -110449,7 +110449,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -110621,7 +110621,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -110684,7 +110684,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -111035,7 +111035,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -111194,7 +111194,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -111220,7 +111220,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -111341,7 +111341,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -111690,7 +111690,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -111779,7 +111779,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -111804,7 +111804,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -111993,7 +111993,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -112063,7 +112063,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -112230,7 +112230,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -112298,7 +112298,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -112711,7 +112711,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -112802,7 +112802,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -112850,7 +112850,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -112951,7 +112951,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -113399,7 +113399,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -113600,7 +113600,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -113626,7 +113626,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -113652,7 +113652,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "type": [ "property", @@ -113747,7 +113747,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -114154,7 +114154,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -114349,7 +114349,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -114470,7 +114470,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -115006,7 +115006,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "type": [ "property", @@ -115105,7 +115105,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -115270,7 +115270,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -115375,7 +115375,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -115776,7 +115776,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -115801,7 +115801,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "type": [ "property", @@ -115937,7 +115937,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "type": [ "property", @@ -115963,7 +115963,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -116038,7 +116038,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -116236,7 +116236,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -116339,7 +116339,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -116519,7 +116519,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -116662,7 +116662,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -116846,7 +116846,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -117029,7 +117029,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -117215,7 +117215,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -117418,7 +117418,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -117592,7 +117592,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -117675,7 +117675,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -117818,7 +117818,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -117988,7 +117988,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -118251,7 +118251,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -118453,7 +118453,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -118816,7 +118816,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -118994,7 +118994,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -119117,7 +119117,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -119335,7 +119335,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -119858,7 +119858,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -119989,7 +119989,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -120053,7 +120053,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -120257,7 +120257,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -120640,7 +120640,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -120850,7 +120850,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -121293,7 +121293,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -121507,7 +121507,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -121990,7 +121990,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -122162,7 +122162,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -122445,7 +122445,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -122619,7 +122619,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -122922,7 +122922,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -123100,7 +123100,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -123443,7 +123443,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -123589,7 +123589,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -123612,7 +123612,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -123811,7 +123811,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -123855,7 +123855,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -124027,7 +124027,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -124090,7 +124090,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -124264,7 +124264,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -124347,7 +124347,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -124555,7 +124555,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -124978,7 +124978,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -125154,7 +125154,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -125477,7 +125477,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -125647,7 +125647,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -125690,7 +125690,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -125908,7 +125908,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -126052,7 +126052,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -126288,7 +126288,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -126391,7 +126391,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -126571,7 +126571,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -126714,7 +126714,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -126896,7 +126896,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -127059,7 +127059,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -127247,7 +127247,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -127470,7 +127470,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -127648,7 +127648,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -127771,7 +127771,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -127971,7 +127971,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -128314,7 +128314,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -128520,7 +128520,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -128923,7 +128923,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -129135,7 +129135,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -129598,7 +129598,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -129814,7 +129814,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -130317,7 +130317,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -130537,7 +130537,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -131080,7 +131080,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -131313,7 +131313,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -131917,7 +131917,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -132103,7 +132103,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -132147,7 +132147,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -132297,7 +132297,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -132320,7 +132320,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -132474,7 +132474,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -132537,7 +132537,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -132693,7 +132693,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -132776,7 +132776,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -132930,7 +132930,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -132993,7 +132993,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -133145,7 +133145,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -133188,7 +133188,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -133364,7 +133364,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -133427,7 +133427,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -133596,7 +133596,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -133764,7 +133764,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -133896,7 +133896,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -133959,7 +133959,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -134146,7 +134146,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -134274,7 +134274,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -134421,7 +134421,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -134589,7 +134589,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -134748,7 +134748,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -134811,7 +134811,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -135040,7 +135040,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -135298,7 +135298,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -135585,7 +135585,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -135949,7 +135949,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -136218,7 +136218,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -136446,7 +136446,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -136873,7 +136873,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -137205,7 +137205,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -137582,7 +137582,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -137801,7 +137801,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -138049,7 +138049,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -138260,7 +138260,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -138572,7 +138572,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -138854,7 +138854,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -139073,7 +139073,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -139227,7 +139227,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -139423,7 +139423,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -139637,7 +139637,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -139850,7 +139850,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -140104,7 +140104,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -140337,7 +140337,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -140546,7 +140546,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -140799,7 +140799,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -141051,7 +141051,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -141313,7 +141313,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -141565,7 +141565,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -141855,7 +141855,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -142107,7 +142107,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -142382,7 +142382,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -142665,7 +142665,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -142841,7 +142841,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -142946,7 +142946,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -143145,7 +143145,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -143230,7 +143230,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -143547,7 +143547,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -143764,7 +143764,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -144003,7 +144003,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -144258,7 +144258,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -144466,7 +144466,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -144719,7 +144719,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -145034,7 +145034,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -145284,7 +145284,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -145529,7 +145529,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -145881,7 +145881,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -146250,7 +146250,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -146607,7 +146607,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -147039,7 +147039,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -147335,7 +147335,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -147837,7 +147837,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -148299,7 +148299,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -148492,7 +148492,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -148704,7 +148704,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -148846,7 +148846,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -148911,7 +148911,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -149127,7 +149127,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -149359,7 +149359,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -149611,7 +149611,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -149967,7 +149967,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -150213,7 +150213,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -150570,7 +150570,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -150742,7 +150742,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -150911,7 +150911,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -151214,7 +151214,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -151449,7 +151449,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -151664,7 +151664,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -151876,7 +151876,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -152058,7 +152058,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -152255,7 +152255,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -152505,7 +152505,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -152780,7 +152780,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -153049,7 +153049,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -153345,7 +153345,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -153490,7 +153490,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -153640,7 +153640,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -153885,7 +153885,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -154105,7 +154105,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -154217,7 +154217,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -154302,7 +154302,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -154480,7 +154480,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -154565,7 +154565,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -154744,7 +154744,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -154934,7 +154934,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -155277,7 +155277,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -155592,7 +155592,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -155826,7 +155826,7 @@ "type": [ "literal" ], - "value": "RDFS:subClassOf" + "value": "RDFS_subClassOf" }, "type": [ "property", @@ -156067,7 +156067,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -156340,7 +156340,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -156363,7 +156363,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -156634,7 +156634,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -156657,7 +156657,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -156880,7 +156880,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -156948,7 +156948,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -156994,7 +156994,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -157017,7 +157017,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -157223,7 +157223,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -157268,7 +157268,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -157314,7 +157314,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -157337,7 +157337,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -157544,7 +157544,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -157589,7 +157589,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -157612,7 +157612,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -157829,7 +157829,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -158256,7 +158256,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -158513,7 +158513,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -158538,7 +158538,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -158611,7 +158611,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -158784,7 +158784,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -158807,7 +158807,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -158853,7 +158853,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -159112,7 +159112,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -159202,7 +159202,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -159225,7 +159225,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -159459,7 +159459,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -159505,7 +159505,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -159528,7 +159528,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -159739,7 +159739,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -159785,7 +159785,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -159996,7 +159996,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -160042,7 +160042,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -160232,7 +160232,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -160330,7 +160330,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -160353,7 +160353,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -160399,7 +160399,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -160641,7 +160641,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -160664,7 +160664,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -160710,7 +160710,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -160900,7 +160900,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -160976,7 +160976,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -161022,7 +161022,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -161045,7 +161045,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -161296,7 +161296,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -161319,7 +161319,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -161364,7 +161364,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -161387,7 +161387,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -161578,7 +161578,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -161601,7 +161601,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -161828,7 +161828,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -162034,7 +162034,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -162080,7 +162080,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -162103,7 +162103,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -162390,7 +162390,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -162501,7 +162501,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -162767,7 +162767,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -162901,7 +162901,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -163167,7 +163167,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -163301,7 +163301,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -163445,7 +163445,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -163512,7 +163512,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -163726,7 +163726,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -163749,7 +163749,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -163795,7 +163795,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -163818,7 +163818,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -163958,7 +163958,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -164025,7 +164025,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -164187,7 +164187,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -164254,7 +164254,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -164416,7 +164416,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -164483,7 +164483,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -164631,7 +164631,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -164719,7 +164719,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -164816,7 +164816,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -164862,7 +164862,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -165013,7 +165013,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -165082,7 +165082,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -165182,7 +165182,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -165228,7 +165228,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -165403,7 +165403,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -165472,7 +165472,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -165646,7 +165646,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -165715,7 +165715,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -165943,7 +165943,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -166116,7 +166116,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -166160,7 +166160,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -166335,7 +166335,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -166565,7 +166565,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -166852,7 +166852,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -166875,7 +166875,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -167048,7 +167048,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -167071,7 +167071,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -167116,7 +167116,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -167162,7 +167162,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -167346,7 +167346,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -167461,7 +167461,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -167689,7 +167689,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -167737,7 +167737,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -167760,7 +167760,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -167806,7 +167806,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -168003,7 +168003,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -168118,7 +168118,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -168310,7 +168310,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -168377,7 +168377,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -168423,7 +168423,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -168555,7 +168555,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -168830,7 +168830,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -168964,7 +168964,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -169271,7 +169271,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -169405,7 +169405,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -169642,7 +169642,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -169665,7 +169665,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -169710,7 +169710,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -169756,7 +169756,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -169945,7 +169945,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -169968,7 +169968,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -170065,7 +170065,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -170088,7 +170088,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -170111,7 +170111,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -170357,7 +170357,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -170403,7 +170403,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -170607,7 +170607,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -170676,7 +170676,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -170896,7 +170896,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -170942,7 +170942,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -171166,7 +171166,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -171212,7 +171212,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -171439,7 +171439,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -171485,7 +171485,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -171657,7 +171657,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -171746,7 +171746,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -171769,7 +171769,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -171815,7 +171815,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -171987,7 +171987,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -172076,7 +172076,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -172099,7 +172099,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -172145,7 +172145,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -172386,7 +172386,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -172409,7 +172409,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -172432,7 +172432,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -172658,7 +172658,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -172701,7 +172701,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -172724,7 +172724,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -172770,7 +172770,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -173021,7 +173021,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -173090,7 +173090,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -173262,7 +173262,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -173308,7 +173308,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -173331,7 +173331,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -173566,7 +173566,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -173633,7 +173633,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -173845,7 +173845,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -173889,7 +173889,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -174034,7 +174034,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -174103,7 +174103,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -174253,7 +174253,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -174322,7 +174322,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -174496,7 +174496,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -174607,7 +174607,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -174804,7 +174804,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -174915,7 +174915,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -175186,7 +175186,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -175276,7 +175276,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -175574,7 +175574,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -175618,7 +175618,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -175786,7 +175786,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -175832,7 +175832,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -176030,7 +176030,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -176095,7 +176095,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -176118,7 +176118,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -176141,7 +176141,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -176355,7 +176355,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -176401,7 +176401,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -176592,7 +176592,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -176661,7 +176661,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -176852,7 +176852,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -176875,7 +176875,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -177025,7 +177025,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -177048,7 +177048,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -177091,7 +177091,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -177241,7 +177241,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -177287,7 +177287,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -177437,7 +177437,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -177483,7 +177483,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -177636,7 +177636,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -177705,7 +177705,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -177904,7 +177904,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -177996,7 +177996,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -178196,7 +178196,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -178311,7 +178311,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -178626,7 +178626,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -178760,7 +178760,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -179117,7 +179117,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -179228,7 +179228,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -179500,7 +179500,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -179567,7 +179567,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -179815,7 +179815,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -179905,7 +179905,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -180147,7 +180147,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -180170,7 +180170,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -180335,7 +180335,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -180379,7 +180379,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -180673,7 +180673,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -180738,7 +180738,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -181025,7 +181025,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -181113,7 +181113,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -181423,7 +181423,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -181488,7 +181488,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -181713,7 +181713,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -181757,7 +181757,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -181949,7 +181949,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -181972,7 +181972,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -181995,7 +181995,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -182160,7 +182160,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -182204,7 +182204,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -182335,7 +182335,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -182400,7 +182400,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -182670,7 +182670,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -182778,7 +182778,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -182801,7 +182801,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -182824,7 +182824,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -183087,7 +183087,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -183216,7 +183216,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -183239,7 +183239,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -183262,7 +183262,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -183525,7 +183525,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -183654,7 +183654,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -183677,7 +183677,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -183700,7 +183700,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -183891,7 +183891,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -183914,7 +183914,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -183937,7 +183937,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -183960,7 +183960,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -184122,7 +184122,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -184167,7 +184167,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -184190,7 +184190,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -184305,7 +184305,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -184350,7 +184350,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -184373,7 +184373,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -184614,7 +184614,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -184658,7 +184658,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -184866,7 +184866,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -184910,7 +184910,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -185050,7 +185050,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -185094,7 +185094,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -185313,7 +185313,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -185357,7 +185357,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -185565,7 +185565,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -185609,7 +185609,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -185778,7 +185778,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -185824,7 +185824,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -186042,7 +186042,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -186088,7 +186088,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -186273,7 +186273,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -186363,7 +186363,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -186571,7 +186571,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -186661,7 +186661,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -186867,7 +186867,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -186890,7 +186890,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -187030,7 +187030,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -187053,7 +187053,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -187076,7 +187076,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -187226,7 +187226,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -187249,7 +187249,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -187272,7 +187272,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -187430,7 +187430,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -187453,7 +187453,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -187698,7 +187698,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -187721,7 +187721,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -187744,7 +187744,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -187811,7 +187811,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -188056,7 +188056,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -188190,7 +188190,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -188401,7 +188401,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -188447,7 +188447,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -188642,7 +188642,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -188665,7 +188665,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -188688,7 +188688,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -188922,7 +188922,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -188968,7 +188968,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -189202,7 +189202,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -189248,7 +189248,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -189459,7 +189459,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -189528,7 +189528,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -189688,7 +189688,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -189936,7 +189936,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -190135,7 +190135,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -190429,7 +190429,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -190605,7 +190605,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -190796,7 +190796,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -190819,7 +190819,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -190842,7 +190842,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -191032,7 +191032,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -191055,7 +191055,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -191078,7 +191078,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -191194,7 +191194,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -191237,7 +191237,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -191281,7 +191281,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -191570,7 +191570,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -191666,7 +191666,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -191711,7 +191711,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -191739,7 +191739,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -191762,7 +191762,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -191874,7 +191874,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -191897,7 +191897,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -192155,7 +192155,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -192201,7 +192201,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -192251,7 +192251,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -192294,7 +192294,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -192317,7 +192317,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -192617,7 +192617,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -192664,7 +192664,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -192734,7 +192734,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -192757,7 +192757,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -192911,7 +192911,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -193046,7 +193046,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -193069,7 +193069,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -193235,7 +193235,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -193300,7 +193300,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -193466,7 +193466,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -193531,7 +193531,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -193794,7 +193794,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -193859,7 +193859,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -194122,7 +194122,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -194187,7 +194187,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -194304,7 +194304,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -194348,7 +194348,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -194465,7 +194465,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -194509,7 +194509,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -194696,7 +194696,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -194719,7 +194719,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -194742,7 +194742,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -194765,7 +194765,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -194958,7 +194958,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -195048,7 +195048,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -195273,7 +195273,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -195363,7 +195363,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -195618,7 +195618,7 @@ "type": [ "literal" ], - "value": "RDFS:range" + "value": "RDFS_range" }, "type": [ "property", @@ -195641,7 +195641,7 @@ "type": [ "literal" ], - "value": "RDFS:domain" + "value": "RDFS_domain" }, "type": [ "property", @@ -195664,7 +195664,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -195808,7 +195808,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -195875,7 +195875,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -196048,7 +196048,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -196136,7 +196136,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -196156,7 +196156,7 @@ "type": [ "literal" ], - "value": "excluded:subClassOf" + "value": "excluded_subClassOf" }, "directAncestor": [], "hasDirectChildren": false, @@ -196217,7 +196217,7 @@ "type": [ "literal" ], - "value": "should:conform_to" + "value": "should_conform_to" }, "directAncestor": [], "hasDirectChildren": false, @@ -196461,7 +196461,7 @@ "type": [ "literal" ], - "value": "OIO:hasBroadSynonym" + "value": "OIO_hasBroadSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -196526,7 +196526,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "directAncestor": [], "hasDirectChildren": false, @@ -196591,7 +196591,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -196656,7 +196656,7 @@ "type": [ "literal" ], - "value": "OIO:hasNarrowSynonym" + "value": "OIO_hasNarrowSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -196721,7 +196721,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -196786,7 +196786,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonymType" + "value": "OIO_hasSynonymType" }, "directAncestor": [], "hasDirectChildren": false, @@ -196912,7 +196912,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "directAncestor": [], "hasDirectChildren": false, @@ -197099,7 +197099,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "directAncestor": [], "hasDirectChildren": false, @@ -197165,7 +197165,7 @@ "type": [ "literal" ], - "value": "SKOS:closeMatch" + "value": "SKOS_closeMatch" }, "directAncestor": [], "hasDirectChildren": false, @@ -197230,7 +197230,7 @@ "type": [ "literal" ], - "value": "SKOS:exactMatch" + "value": "SKOS_exactMatch" }, "directAncestor": [], "hasDirectChildren": false, @@ -197422,7 +197422,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "directAncestor": [], "hasDirectChildren": false, @@ -197495,7 +197495,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -197514,7 +197514,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "definition": { "type": [ @@ -197653,7 +197653,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -197679,7 +197679,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -197705,7 +197705,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -197729,7 +197729,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -197754,7 +197754,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -197782,7 +197782,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -197801,7 +197801,7 @@ "type": [ "literal" ], - "value": "OIO:ObsoleteClass" + "value": "OIO_ObsoleteClass" }, "directAncestor": [], "hasDirectChildren": false, @@ -197905,7 +197905,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -197931,7 +197931,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -197957,7 +197957,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -197982,7 +197982,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -198008,7 +198008,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -198036,7 +198036,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -198055,7 +198055,7 @@ "type": [ "literal" ], - "value": "OIO:Subset" + "value": "OIO_Subset" }, "directAncestor": [], "hasDirectChildren": false, @@ -198292,7 +198292,7 @@ "type": [ "literal" ], - "value": "OIO:Synonym" + "value": "OIO_Synonym" }, "type": [ "class", @@ -198317,7 +198317,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -198352,7 +198352,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "type": [ "property", @@ -198378,7 +198378,7 @@ "type": [ "literal" ], - "value": "OIO:hasNarrowSynonym" + "value": "OIO_hasNarrowSynonym" }, "type": [ "property", @@ -198404,7 +198404,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -198430,7 +198430,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -198456,7 +198456,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -198481,7 +198481,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -198505,7 +198505,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -198524,7 +198524,7 @@ "type": [ "literal" ], - "value": "OIO:Synonym" + "value": "OIO_Synonym" }, "definition": { "type": [ @@ -198646,7 +198646,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -198672,7 +198672,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -198698,7 +198698,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -198723,7 +198723,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -198747,7 +198747,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -198772,7 +198772,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -198800,7 +198800,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -198819,7 +198819,7 @@ "type": [ "literal" ], - "value": "OIO:SynonymType" + "value": "OIO_SynonymType" }, "directAncestor": [], "hasDirectChildren": false, @@ -198892,7 +198892,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -198914,7 +198914,7 @@ "type": [ "literal" ], - "value": "OIO:ObsoleteProperty" + "value": "OIO_ObsoleteProperty" }, "definition": { "type": [ @@ -199035,7 +199035,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -199061,7 +199061,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -199087,7 +199087,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -199112,7 +199112,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -199136,7 +199136,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -199161,7 +199161,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -199189,7 +199189,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -199209,7 +199209,7 @@ "type": [ "literal" ], - "value": "OIO:SubsetProperty" + "value": "OIO_SubsetProperty" }, "directAncestor": [], "hasDirectChildren": false, @@ -199312,7 +199312,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -199338,7 +199338,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -199364,7 +199364,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -199389,7 +199389,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -199415,7 +199415,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -199438,7 +199438,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -199463,7 +199463,7 @@ "type": [ "literal" ], - "value": "OIO:SynonymTypeProperty" + "value": "OIO_SynonymTypeProperty" }, "directAncestor": [], "hasDirectChildren": false, @@ -199566,7 +199566,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -199592,7 +199592,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -199618,7 +199618,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -199643,7 +199643,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -199669,7 +199669,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -199692,7 +199692,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -199717,7 +199717,7 @@ "type": [ "literal" ], - "value": "OIO:consider" + "value": "OIO_consider" }, "directAncestor": [], "hasDirectChildren": false, @@ -199842,7 +199842,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -199868,7 +199868,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -199894,7 +199894,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -199919,7 +199919,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -199945,7 +199945,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -199973,7 +199973,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -199993,7 +199993,7 @@ "type": [ "literal" ], - "value": "OIO:hasAlternativeId" + "value": "OIO_hasAlternativeId" }, "directAncestor": [], "hasDirectChildren": false, @@ -200113,7 +200113,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -200139,7 +200139,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -200165,7 +200165,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -200195,7 +200195,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -200221,7 +200221,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -200249,7 +200249,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -200269,7 +200269,7 @@ "type": [ "literal" ], - "value": "OIO:hasBroadSynonym" + "value": "OIO_hasBroadSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -200397,7 +200397,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -200423,7 +200423,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -200449,7 +200449,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonym" + "value": "OIO_hasSynonym" }, "type": [ "property", @@ -200475,7 +200475,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -200500,7 +200500,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -200524,7 +200524,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -200549,7 +200549,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -200572,7 +200572,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -200597,7 +200597,7 @@ "type": [ "literal" ], - "value": "OIO:hasDate" + "value": "OIO_hasDate" }, "directAncestor": [], "hasDirectChildren": false, @@ -200688,7 +200688,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -200714,7 +200714,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -200745,7 +200745,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -200768,7 +200768,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -200788,7 +200788,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "directAncestor": [], "hasDirectChildren": false, @@ -200885,7 +200885,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -200911,7 +200911,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -200934,7 +200934,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -200954,7 +200954,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefaultNamespace" + "value": "OIO_hasDefaultNamespace" }, "directAncestor": [], "hasDirectChildren": false, @@ -201045,7 +201045,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -201071,7 +201071,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -201097,7 +201097,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -201120,7 +201120,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -201140,7 +201140,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "definition": { "type": [ @@ -201278,7 +201278,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -201309,7 +201309,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -201334,7 +201334,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -201358,7 +201358,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -201383,7 +201383,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -201411,7 +201411,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -201431,7 +201431,7 @@ "type": [ "literal" ], - "value": "OIO:hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -201554,7 +201554,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -201580,7 +201580,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -201606,7 +201606,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonym" + "value": "OIO_hasSynonym" }, "type": [ "property", @@ -201632,7 +201632,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -201657,7 +201657,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -201681,7 +201681,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -201706,7 +201706,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -201734,7 +201734,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -201759,7 +201759,7 @@ "type": [ "literal" ], - "value": "OIO:hasNarrowSynonym" + "value": "OIO_hasNarrowSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -201882,7 +201882,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -201908,7 +201908,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -201939,7 +201939,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonym" + "value": "OIO_hasSynonym" }, "type": [ "property", @@ -201965,7 +201965,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -201990,7 +201990,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -202014,7 +202014,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -202039,7 +202039,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -202062,7 +202062,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -202087,7 +202087,7 @@ "type": [ "literal" ], - "value": "OIO:hasOBONamespace" + "value": "OIO_hasOBONamespace" }, "directAncestor": [], "hasDirectChildren": false, @@ -202207,7 +202207,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -202233,7 +202233,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -202259,7 +202259,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -202284,7 +202284,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -202315,7 +202315,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -202338,7 +202338,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -202363,7 +202363,7 @@ "type": [ "literal" ], - "value": "OIO:hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", @@ -202486,7 +202486,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -202512,7 +202512,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -202538,7 +202538,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonym" + "value": "OIO_hasSynonym" }, "type": [ "property", @@ -202564,7 +202564,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -202589,7 +202589,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -202613,7 +202613,7 @@ "type": [ "literal" ], - "value": "RDFS:subPropertyOf" + "value": "RDFS_subPropertyOf" }, "type": [ "property", @@ -202638,7 +202638,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -202666,7 +202666,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -202691,7 +202691,7 @@ "type": [ "literal" ], - "value": "OIO:hasSubset" + "value": "OIO_hasSubset" }, "directAncestor": [], "hasDirectChildren": false, @@ -202794,7 +202794,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -202820,7 +202820,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -202846,7 +202846,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -202871,7 +202871,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -202897,7 +202897,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -202925,7 +202925,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -202945,7 +202945,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonym" + "value": "OIO_hasSynonym" }, "definition": { "type": [ @@ -203088,7 +203088,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -203114,7 +203114,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -203140,7 +203140,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -203165,7 +203165,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -203189,7 +203189,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -203214,7 +203214,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -203237,7 +203237,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -203262,7 +203262,7 @@ "type": [ "literal" ], - "value": "OIO:hasSynonymType" + "value": "OIO_hasSynonymType" }, "directAncestor": [], "hasDirectChildren": false, @@ -203354,7 +203354,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -203380,7 +203380,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -203406,7 +203406,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -203429,7 +203429,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -203449,7 +203449,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "directAncestor": [], "hasDirectChildren": false, @@ -203521,7 +203521,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -203541,7 +203541,7 @@ "type": [ "literal" ], - "value": "OIO:hasVersion" + "value": "OIO_hasVersion" }, "directAncestor": [], "hasDirectChildren": false, @@ -203632,7 +203632,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -203663,7 +203663,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -203689,7 +203689,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -203712,7 +203712,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -203732,7 +203732,7 @@ "type": [ "literal" ], - "value": "OIO:inSubset" + "value": "OIO_inSubset" }, "directAncestor": [], "hasDirectChildren": false, @@ -203853,7 +203853,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -203879,7 +203879,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -203905,7 +203905,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -203930,7 +203930,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -203956,7 +203956,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -203989,7 +203989,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -204009,7 +204009,7 @@ "type": [ "literal" ], - "value": "OIO:isCyclic" + "value": "OIO_isCyclic" }, "directAncestor": [], "hasDirectChildren": false, @@ -204112,7 +204112,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -204138,7 +204138,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -204164,7 +204164,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -204189,7 +204189,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -204215,7 +204215,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -204243,7 +204243,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -204263,7 +204263,7 @@ "type": [ "literal" ], - "value": "OIO:replacedBy" + "value": "OIO_replacedBy" }, "directAncestor": [], "hasDirectChildren": false, @@ -204383,7 +204383,7 @@ "type": [ "literal" ], - "value": "OIO:hasDefinition" + "value": "OIO_hasDefinition" }, "type": [ "property", @@ -204409,7 +204409,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -204435,7 +204435,7 @@ "type": [ "literal" ], - "value": "OIO:Definition" + "value": "OIO_Definition" }, "type": [ "class", @@ -204460,7 +204460,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -204486,7 +204486,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -204514,7 +204514,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -204539,7 +204539,7 @@ "type": [ "literal" ], - "value": "OIO:savedBy" + "value": "OIO_savedBy" }, "directAncestor": [], "hasDirectChildren": false, @@ -204630,7 +204630,7 @@ "type": [ "literal" ], - "value": "OIO:hasDbXref" + "value": "OIO_hasDbXref" }, "type": [ "property", @@ -204661,7 +204661,7 @@ "type": [ "literal" ], - "value": "OIO:hasURI" + "value": "OIO_hasURI" }, "type": [ "property", @@ -204687,7 +204687,7 @@ "type": [ "literal" ], - "value": "OIO:DbXref" + "value": "OIO_DbXref" }, "type": [ "class", @@ -204710,7 +204710,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", @@ -204738,7 +204738,7 @@ "type": [ "literal" ], - "value": "RDFS:comment" + "value": "RDFS_comment" }, "type": [ "property", @@ -204761,7 +204761,7 @@ "type": [ "literal" ], - "value": "RDFS:label" + "value": "RDFS_label" }, "type": [ "property", diff --git a/testcases_expected_output/annotation-properties/gitIssue502/owl_classes.csv b/testcases_expected_output/annotation-properties/gitIssue502/owl_classes.csv index 265f83a78..1036b9cd0 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"":""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, ..., +"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","","","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" + 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 2ff6119d4..de908f510 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/owl_ontologies.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/owl_ontologies.csv @@ -1,5 +1,5 @@ "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"":""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#"," +"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 diff --git a/testcases_expected_output/annotation-properties/gitIssue502/owl_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/owl_properties.csv index a9ecf35e9..5fad710a9 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"":""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" +"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 ad005dba1..d204a580d 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/properties.jsonl +++ b/testcases_expected_output/annotation-properties/gitIssue502/properties.jsonl @@ -1,281 +1,281 @@ -{"_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://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_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.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\":\"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#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\":\"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#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\":\"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"]} +{"_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 b9349f60a..0309843b8 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"":""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, ..., +"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","","","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" + 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 f1e4fc660..5ee0b79c8 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"":""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" +"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 5b86ce0a5..7c994dc9a 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"":""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" +"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 4f933942d..aaeb34ad5 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"":""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" +"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 0a5d7beea..02182f6f3 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"":""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" +"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 67a423922..930ed7f91 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"":""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+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","","","","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 + 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","","","","","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" + 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/duo/classes.jsonl b/testcases_expected_output/duo/classes.jsonl index f3ea5a127..6fcaac620 100644 --- a/testcases_expected_output/duo/classes.jsonl +++ b/testcases_expected_output/duo/classes.jsonl @@ -1,9 +1,9 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000008\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that has specified output a software product and that involves the creation of source code.\",\"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_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that has specified output a software product and that involves the creation of source code.\",\"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\"},{\"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_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Software_development\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process resulting in a software product involving the creation of source 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\":\"software development\",\"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://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}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software development\",\"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\":\"A planned process that has specified output a software product and that involves the creation of source code.\",\"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\":\"William R. Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Software_development\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process resulting in a software product involving the creation of source code.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000008\"},\"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_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/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://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://en.wikipedia.org/wiki/Software_development\":{\"url\":\"http://en.wikipedia.org/wiki/Software_development\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Software_development\"},\"http://www.w3.org/2000/01/rdf-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_00000008","definition":"A planned process that has specified output a software product and that involves the creation of source code.","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_0000115":"A planned process that has specified output a software product and that involves the creation of source code.","http__//purl.obolibrary.org/obo/IAO_0000117":["Mathias Brochhausen","William R. Hogan"],"http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Software_development","http__//purl.obolibrary.org/obo/IAO_0000600":"A planned process resulting in a software product involving the creation of source 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":"software development","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_00000008","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software development","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A planned process that has specified output a software product and that involves the creation of source code.","Mathias Brochhausen","William R. Hogan","http://en.wikipedia.org/wiki/Software_development","A planned process resulting in a software product involving the creation of source code.","false"],"shortForm":"APOLLO_SV_00000008","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000032\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000032\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum that is the output of counting.\",\"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\":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_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum that is the output of counting.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum that is the output of counting.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"count\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"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_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/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000033\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"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\":\"A measurement datum that is the output of counting.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000032\"},\"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_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"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_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_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.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/APOLLO_SV_00000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"counting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000033\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":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_00000032","definition":"A measurement datum that is the output of counting.","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":"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_0000115":"A measurement datum that is the output of counting.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//purl.obolibrary.org/obo/IAO_0000600":"A measurement datum that is the output of counting.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"count","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000109","id":"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000032","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000032","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"count","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A measurement datum that is the output of counting.","Mathias Brochhausen","false"],"shortForm":"APOLLO_SV_00000032","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000033\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000033\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The planned process of finding the number of elements in a finite set of objects.\",\"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\":\"The planned process of finding the number of elements in a finite set of objects.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Counting\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The planned process of finding the number of elements in a finite set of objects.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"counting\",\"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/APOLLO_SV_00000032\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"counting\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/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 planned process of finding the number of elements in a finite set of objects.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Counting\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000033\"},\"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_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/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://en.wikipedia.org/wiki/Counting\":{\"url\":\"http://en.wikipedia.org/wiki/Counting\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Counting\"},\"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.obolibrary.org/obo/APOLLO_SV_00000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"count\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000032\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-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_00000033","definition":"The planned process of finding the number of elements in a finite set of objects.","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":"The planned process of finding the number of elements in a finite set of objects.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Counting","http__//purl.obolibrary.org/obo/IAO_0000600":"The planned process of finding the number of elements in a finite set of objects.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"counting","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_00000033","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000033","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"counting","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The planned process of finding the number of elements in a finite set of objects.","Mathias Brochhausen","http://en.wikipedia.org/wiki/Counting","false"],"shortForm":"APOLLO_SV_00000033","type":["class","entity"]} -{"_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/APOLLO_SV_00000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV:00000008\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that has specified output a software product and that involves the creation of source code.\",\"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_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that has specified output a software product and that involves the creation of source code.\",\"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\"},{\"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_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Software_development\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process resulting in a software product involving the creation of source 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\":\"software development\",\"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://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}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software development\",\"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\":\"A planned process that has specified output a software product and that involves the creation of source code.\",\"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\":\"William R. Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Software_development\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process resulting in a software product involving the creation of source code.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000008\"},\"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_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/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://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://en.wikipedia.org/wiki/Software_development\":{\"url\":\"http://en.wikipedia.org/wiki/Software_development\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Software_development\"},\"http://www.w3.org/2000/01/rdf-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:00000008","definition":"A planned process that has specified output a software product and that involves the creation of source code.","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_0000115":"A planned process that has specified output a software product and that involves the creation of source code.","http__//purl.obolibrary.org/obo/IAO_0000117":["Mathias Brochhausen","William R. Hogan"],"http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Software_development","http__//purl.obolibrary.org/obo/IAO_0000600":"A planned process resulting in a software product involving the creation of source 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":"software development","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_00000008","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software development","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A planned process that has specified output a software product and that involves the creation of source code.","Mathias Brochhausen","William R. Hogan","http://en.wikipedia.org/wiki/Software_development","A planned process resulting in a software product involving the creation of source code.","false"],"shortForm":"APOLLO_SV_00000008","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000032\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV:00000032\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum that is the output of counting.\",\"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\":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_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum that is the output of counting.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum that is the output of counting.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"count\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"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_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/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000033\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"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\":\"A measurement datum that is the output of counting.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000032\"},\"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_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"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_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_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.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/APOLLO_SV_00000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"counting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV:00000033\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":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:00000032","definition":"A measurement datum that is the output of counting.","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":"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_0000115":"A measurement datum that is the output of counting.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//purl.obolibrary.org/obo/IAO_0000600":"A measurement datum that is the output of counting.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"count","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000109","id":"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000032","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000032","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"count","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A measurement datum that is the output of counting.","Mathias Brochhausen","false"],"shortForm":"APOLLO_SV_00000032","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000033\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV:00000033\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The planned process of finding the number of elements in a finite set of objects.\",\"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\":\"The planned process of finding the number of elements in a finite set of objects.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Counting\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The planned process of finding the number of elements in a finite set of objects.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"counting\",\"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/APOLLO_SV_00000032\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"counting\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/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 planned process of finding the number of elements in a finite set of objects.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Counting\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000033\"},\"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_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/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://en.wikipedia.org/wiki/Counting\":{\"url\":\"http://en.wikipedia.org/wiki/Counting\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Counting\"},\"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.obolibrary.org/obo/APOLLO_SV_00000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"count\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV:00000032\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-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:00000033","definition":"The planned process of finding the number of elements in a finite set of objects.","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":"The planned process of finding the number of elements in a finite set of objects.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Counting","http__//purl.obolibrary.org/obo/IAO_0000600":"The planned process of finding the number of elements in a finite set of objects.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"counting","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_00000033","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000033","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"counting","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The planned process of finding the number of elements in a finite set of objects.","Mathias Brochhausen","http://en.wikipedia.org/wiki/Counting","false"],"shortForm":"APOLLO_SV_00000033","type":["class","entity"]} +{"_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\"]},\"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"]} @@ -95,7 +95,7 @@ {"_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_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"]} @@ -117,7 +117,7 @@ {"_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_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"]} diff --git a/testcases_expected_output/duo/duo_classes.csv b/testcases_expected_output/duo/duo_classes.csv index 5d9d9e091..100c60429 100644 --- a/testcases_expected_output/duo/duo_classes.csv +++ b/testcases_expected_output/duo/duo_classes.csv @@ -1,10 +1,10 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","http__//xmlns.com/foaf/0.1/page: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[]","synonymProperty:string[]","http__//www.geneontology.org/formats/oboInOwl#id:string[]","definitionProperty:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf: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/BFO_0000179:string[]","http__//www.w3.org/2002/07/owl#equivalentClass: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.obolibrary.org/obo/IAO_0000111:string[]","http__//purl.obolibrary.org/obo/IAO_0000232:string[]","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","relatedFrom:string[]","numDescendants:string[]","http__//purl.obolibrary.org/obo/IAO_0000118:string[]","http__//purl.obolibrary.org/obo/IAO_0000119:string[]","directParent:string[]","directAncestor:string[]","http__//www.w3.org/2002/07/owl#disjointWith:string[]","http__//purl.obolibrary.org/obo/IAO_0000600:string[]","http__//purl.obolibrary.org/obo/IAO_0000601: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__//purl.obolibrary.org/obo/IAO_0000602:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDbXref:string[]","synonym:string[]","http__//www.geneontology.org/formats/oboInOwl#shorthand:string[]","imported:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","definition:string[]","ontologyIri:string[]","hierarchicalParent:string[]","http__//purl.obolibrary.org/obo/IAO_0000412:string[]","iri","hierarchicalAncestor:string[]","http__//purl.obolibrary.org/obo/IAO_0100001:string[]","http__//www.w3.org/2002/07/owl#deprecated:string[]","isObsolete:string[]","label:string[]","hasIndividuals:string[]","http__//purl.org/dc/elements/1.1/creator:string[]","ontologyPreferredPrefix:string[]","http__//purl.obolibrary.org/obo/BFO_0000180:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//purl.org/dc/elements/1.1/contributor:string[]" -"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000008""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that has specified output a software product and that involves the creation of source code."",""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_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that has specified output a software product and that involves the creation of source code."",""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""},{""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_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Software_development""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process resulting in a software product involving the creation of source 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"":""software development"",""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://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}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software development"",""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"":""A planned process that has specified output a software product and that involves the creation of source code."",""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"":""William R. Hogan"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Software_development""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process resulting in a software product involving the creation of source code."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000008""},""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_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/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://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://en.wikipedia.org/wiki/Software_development"":{""url"":""http://en.wikipedia.org/wiki/Software_development"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Software_development""},""http://www.w3.org/2000/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/OBI_0000011","true","","","Mathias Brochhausen|William R. Hogan","","A planned process that has specified output a software product and that involves the creation of source code.","","","","","","","","","","","1.0","","http://en.wikipedia.org/wiki/Software_development","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","","A planned process resulting in a software product involving the creation of source code.","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A planned process that has specified output a software product and that involves the creation of source code.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","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","software development","","","DUO","","APOLLO:SV_00000008","APOLLO_SV_00000008","","software development","duo","" -"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000032","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000032"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000032""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum that is the output of counting."",""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"":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_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum that is the output of counting."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum that is the output of counting."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""count"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000109"",""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_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/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000033"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""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"":""A measurement datum that is the output of counting."",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000032""},""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_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""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_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_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.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/APOLLO_SV_00000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""counting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000033""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":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_0000109","true","","","Mathias Brochhausen","","A measurement datum that is the output of counting.","","","","","","","","","","","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","","A measurement datum that is the output of counting.","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A measurement datum that is the output of counting.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000109","","http://purl.obolibrary.org/obo/APOLLO_SV_00000032","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","count","","","DUO","","APOLLO:SV_00000032","APOLLO_SV_00000032","","count","duo","" -"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000033","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000033"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000033""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The planned process of finding the number of elements in a finite set of objects."",""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"":""The planned process of finding the number of elements in a finite set of objects."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Counting""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The planned process of finding the number of elements in a finite set of objects."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""counting"",""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/APOLLO_SV_00000032"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""counting"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/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 planned process of finding the number of elements in a finite set of objects."",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Counting""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000033""},""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_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/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://en.wikipedia.org/wiki/Counting"":{""url"":""http://en.wikipedia.org/wiki/Counting"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Counting""},""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.obolibrary.org/obo/APOLLO_SV_00000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""count"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000032""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-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","","","Mathias Brochhausen","","The planned process of finding the number of elements in a finite set of objects.","","","","","","","","","","","0.0","","http://en.wikipedia.org/wiki/Counting","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","","The planned process of finding the number of elements in a finite set of objects.","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","The planned process of finding the number of elements in a finite set of objects.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/APOLLO_SV_00000033","http://purl.obolibrary.org/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","counting","","","DUO","","APOLLO:SV_00000033","APOLLO_SV_00000033","","counting","duo","" -"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/APOLLO_SV_00000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO_SV:00000008""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that has specified output a software product and that involves the creation of source code."",""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_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that has specified output a software product and that involves the creation of source code."",""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""},{""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_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Software_development""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process resulting in a software product involving the creation of source 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"":""software development"",""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://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}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software development"",""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"":""A planned process that has specified output a software product and that involves the creation of source code."",""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"":""William R. Hogan"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Software_development""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process resulting in a software product involving the creation of source code."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000008""},""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_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/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://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://en.wikipedia.org/wiki/Software_development"":{""url"":""http://en.wikipedia.org/wiki/Software_development"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Software_development""},""http://www.w3.org/2000/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/OBI_0000011","true","","","Mathias Brochhausen|William R. Hogan","","A planned process that has specified output a software product and that involves the creation of source code.","","","","","","","","","","","1.0","","http://en.wikipedia.org/wiki/Software_development","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","","A planned process resulting in a software product involving the creation of source code.","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A planned process that has specified output a software product and that involves the creation of source code.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","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","software development","","","DUO","","APOLLO_SV:00000008","APOLLO_SV_00000008","","software development","duo","" +"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000032","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000032"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO_SV:00000032""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum that is the output of counting."",""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"":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_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum that is the output of counting."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum that is the output of counting."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""count"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000109"",""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_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/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000033"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""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"":""A measurement datum that is the output of counting."",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000032""},""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_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""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_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_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.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/APOLLO_SV_00000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""counting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO_SV:00000033""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":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_0000109","true","","","Mathias Brochhausen","","A measurement datum that is the output of counting.","","","","","","","","","","","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","","A measurement datum that is the output of counting.","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A measurement datum that is the output of counting.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000109","","http://purl.obolibrary.org/obo/APOLLO_SV_00000032","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","count","","","DUO","","APOLLO_SV:00000032","APOLLO_SV_00000032","","count","duo","" +"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000033","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000033"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO_SV:00000033""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The planned process of finding the number of elements in a finite set of objects."",""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"":""The planned process of finding the number of elements in a finite set of objects."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Counting""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The planned process of finding the number of elements in a finite set of objects."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""counting"",""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/APOLLO_SV_00000032"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""counting"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/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 planned process of finding the number of elements in a finite set of objects."",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Counting""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000033""},""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_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-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://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/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://en.wikipedia.org/wiki/Counting"":{""url"":""http://en.wikipedia.org/wiki/Counting"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Counting""},""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.obolibrary.org/obo/APOLLO_SV_00000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""count"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO_SV:00000032""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-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","","","Mathias Brochhausen","","The planned process of finding the number of elements in a finite set of objects.","","","","","","","","","","","0.0","","http://en.wikipedia.org/wiki/Counting","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","","The planned process of finding the number of elements in a finite set of objects.","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","The planned process of finding the number of elements in a finite set of objects.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/APOLLO_SV_00000033","http://purl.obolibrary.org/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","counting","","","DUO","","APOLLO_SV:00000033","APOLLO_SV_00000033","","counting","duo","" +"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""]},""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","" @@ -117,7 +117,7 @@ Superclass was 'digitial quality'","person:Chris Stoeckert","","A digital entity 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""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":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 +"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 @@ -155,7 +155,7 @@ whole sentence is deleted.|2009-03-16: this was report of results with definitio "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""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-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_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 diff --git a/testcases_expected_output/duo/duo_properties.csv b/testcases_expected_output/duo/duo_properties.csv index 4f47561e1..99643d286 100644 --- a/testcases_expected_output/duo/duo_properties.csv +++ b/testcases_expected_output/duo/duo_properties.csv @@ -192,7 +192,7 @@ EquivalentTo: xsd:integer[> 2151 , <= 2300] "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_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] "duo+property+http://purl.org/dc/elements/1.1/type","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/elements/1.1/type"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""type""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""type""},""numDescendants"":0.0,""numHierarchicalDescendants"":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"":""type""},""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/type","","false","type","","DUO","type","type","","duo","","","" "duo+property+http://purl.org/dc/terms/license","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/terms/license"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""license""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""license""},""numDescendants"":0.0,""numHierarchicalDescendants"":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"":""license""},""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/terms/license","","false","license","","DUO","license","license","","duo","","","" "duo+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"":""ObsoleteProperty""},""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"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""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"":true,""shortForm"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{}}","false","false","false","","0.0","property|objectProperty|entity","","","","false","","","","","","","","","","","","","","","","4.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","false","ObsoleteProperty","","DUO","ObsoleteProperty","ObsoleteProperty","","duo","","","" -"duo+property+http://www.geneontology.org/formats/oboInOwl#created_by","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#created_by"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""created:by""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""created_by""},""numDescendants"":0.0,""numHierarchicalDescendants"":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"":""created_by""},""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://www.geneontology.org/formats/oboInOwl#created_by","","false","created_by","","DUO","created:by","created_by","","duo","","","" -"duo+property+http://www.geneontology.org/formats/oboInOwl#creation_date","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#creation_date"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""creation: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"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""creation_date""},""numDescendants"":0.0,""numHierarchicalDescendants"":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"":""creation_date""},""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://www.geneontology.org/formats/oboInOwl#creation_date","","false","creation_date","","DUO","creation:date","creation_date","","duo","","","" +"duo+property+http://www.geneontology.org/formats/oboInOwl#created_by","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#created_by"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""created_by""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""created_by""},""numDescendants"":0.0,""numHierarchicalDescendants"":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"":""created_by""},""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://www.geneontology.org/formats/oboInOwl#created_by","","false","created_by","","DUO","created_by","created_by","","duo","","","" +"duo+property+http://www.geneontology.org/formats/oboInOwl#creation_date","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#creation_date"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""creation_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"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""creation_date""},""numDescendants"":0.0,""numHierarchicalDescendants"":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"":""creation_date""},""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://www.geneontology.org/formats/oboInOwl#creation_date","","false","creation_date","","DUO","creation_date","creation_date","","duo","","","" "duo+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""},""definition"":{""type"":[""literal""],""value"":""An alternative label for a class or property which has a more general meaning than the preferred name/primary label.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000118"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000118"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An alternative label for a class or property which has a more general meaning than the preferred name/primary label.""},""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/18""},""http://www.w3.org/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#seeAlso"":{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/18""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000118"",""imported"":true,""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"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An alternative label for a class or property which has a more general meaning than the preferred name/primary label.""},{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/18""},true],""shortForm"":{""type"":[""literal""],""value"":""hasBroadSynonym""},""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_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""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""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","http://orcid.org/0000-0001-5208-3432","","An alternative label for a class or property which has a more general meaning than the preferred name/primary label.","","https://github.com/information-artifact-ontology/ontology-metadata/issues/18","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000118","","http://purl.obolibrary.org/obo/IAO_0000118","","","https://github.com/information-artifact-ontology/ontology-metadata/issues/18","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An alternative label for a class or property which has a more general meaning than the preferred name/primary label.","","http://purl.obolibrary.org/obo/IAO_0000118","http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","","false","has broad synonym","","DUO","hasBroadSynonym","hasBroadSynonym","","duo","has broad synonym","","" "duo+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"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasDbXref""},""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","false","","http://purl.obolibrary.org/obo/duo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasDbXref","","false","hasDbXref","","DUO","hasDbXref","hasDbXref","","duo","","","" "duo+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""},""definition"":{""type"":[""literal""],""value"":""An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000118"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000118"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.""},""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/20""},""http://www.w3.org/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#seeAlso"":{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/20""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000118"",""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"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.""},{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/20""},false],""shortForm"":{""type"":[""literal""],""value"":""hasExactSynonym""},""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_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""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""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","http://orcid.org/0000-0001-5208-3432","","An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.","","https://github.com/information-artifact-ontology/ontology-metadata/issues/20","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000118","","http://purl.obolibrary.org/obo/IAO_0000118","","","https://github.com/information-artifact-ontology/ontology-metadata/issues/20","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","false","","http://purl.obolibrary.org/obo/duo.owl","An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.","","http://purl.obolibrary.org/obo/IAO_0000118","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","","false","has exact synonym","","DUO","hasExactSynonym","hasExactSynonym","","duo","has exact synonym","","" diff --git a/testcases_expected_output/duo/ontologies.json b/testcases_expected_output/duo/ontologies.json index d7cd44510..60a71de8d 100644 --- a/testcases_expected_output/duo/ontologies.json +++ b/testcases_expected_output/duo/ontologies.json @@ -175,7 +175,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000008" + "value": "APOLLO_SV:00000008" }, "definition": { "type": [ @@ -372,7 +372,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000032" + "value": "APOLLO_SV:00000032" }, "definition": { "type": [ @@ -525,7 +525,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000033" + "value": "APOLLO_SV:00000033" }, "definition": { "type": [ @@ -686,7 +686,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000522" + "value": "APOLLO_SV:00000522" }, "definition": [ { @@ -918,7 +918,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000524" + "value": "APOLLO_SV:00000524" }, "definition": [ { @@ -1138,7 +1138,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000796" + "value": "APOLLO_SV:00000796" }, "definition": { "type": [ @@ -78590,7 +78590,7 @@ "type": [ "literal" ], - "value": "created:by" + "value": "created_by" }, "directAncestor": [], "hasDirectChildren": false, @@ -78646,7 +78646,7 @@ "type": [ "literal" ], - "value": "creation:date" + "value": "creation_date" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/duo/ontologies_linked.json b/testcases_expected_output/duo/ontologies_linked.json index 365533fdf..e7188f398 100644 --- a/testcases_expected_output/duo/ontologies_linked.json +++ b/testcases_expected_output/duo/ontologies_linked.json @@ -177,7 +177,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000008" + "value": "APOLLO_SV:00000008" }, "definition": { "type": [ @@ -653,7 +653,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000032" + "value": "APOLLO_SV:00000032" }, "definition": { "type": [ @@ -1017,7 +1017,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000033" + "value": "APOLLO_SV:00000033" }, "type": [ "class", @@ -1079,7 +1079,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000033" + "value": "APOLLO_SV:00000033" }, "definition": { "type": [ @@ -1457,7 +1457,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000032" + "value": "APOLLO_SV:00000032" }, "type": [ "class", @@ -1497,7 +1497,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000522" + "value": "APOLLO_SV:00000522" }, "definition": [ { @@ -2046,7 +2046,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000524" + "value": "APOLLO_SV:00000524" }, "definition": [ { @@ -2366,7 +2366,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000008" + "value": "APOLLO_SV:00000008" }, "type": [ "class", @@ -2583,7 +2583,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000796" + "value": "APOLLO_SV:00000796" }, "definition": { "type": [ @@ -49533,7 +49533,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000522" + "value": "APOLLO_SV:00000522" }, "type": [ "class", @@ -61396,7 +61396,7 @@ "type": [ "literal" ], - "value": "APOLLO:SV_00000522" + "value": "APOLLO_SV:00000522" }, "type": [ "class", @@ -174717,7 +174717,7 @@ "type": [ "literal" ], - "value": "created:by" + "value": "created_by" }, "type": [ "property", @@ -184244,7 +184244,7 @@ "type": [ "literal" ], - "value": "created:by" + "value": "created_by" }, "directAncestor": [], "hasDirectChildren": false, @@ -184305,7 +184305,7 @@ "type": [ "literal" ], - "value": "creation:date" + "value": "creation_date" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/duo/properties.jsonl b/testcases_expected_output/duo/properties.jsonl index 9fb9edd13..69a5d9f2a 100644 --- a/testcases_expected_output/duo/properties.jsonl +++ b/testcases_expected_output/duo/properties.jsonl @@ -69,7 +69,7 @@ {"_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_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"]} @@ -114,8 +114,8 @@ {"_json":"{\"iri\":\"http://purl.org/dc/elements/1.1/type\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"type\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"type\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":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\":\"type\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"type","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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/type","imported":"true","iri":"http://purl.org/dc/elements/1.1/type","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"type","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"type","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.org/dc/terms/license\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"license\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"license\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":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\":\"license\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"license","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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/terms/license","imported":"true","iri":"http://purl.org/dc/terms/license","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"license","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"license","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"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\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"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\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"ObsoleteProperty","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","id":"duo+property+http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","imported":"true","iri":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ObsoleteProperty","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"ObsoleteProperty","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#created_by\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"created:by\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"created_by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":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\":\"created_by\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"created:by","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#created_by","imported":"true","iri":"http://www.geneontology.org/formats/oboInOwl#created_by","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"created_by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"created_by","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#creation_date\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"creation: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\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"creation_date\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":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\":\"creation_date\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"creation: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":"duo+property+http://www.geneontology.org/formats/oboInOwl#creation_date","imported":"true","iri":"http://www.geneontology.org/formats/oboInOwl#creation_date","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"creation_date","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"creation_date","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#created_by\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"created_by\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"created_by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":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\":\"created_by\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"created_by","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#created_by","imported":"true","iri":"http://www.geneontology.org/formats/oboInOwl#created_by","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"created_by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"created_by","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#creation_date\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"creation_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\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"creation_date\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":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\":\"creation_date\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"creation_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":"duo+property+http://www.geneontology.org/formats/oboInOwl#creation_date","imported":"true","iri":"http://www.geneontology.org/formats/oboInOwl#creation_date","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"creation_date","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"creation_date","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An alternative label for a class or property which has a more general meaning than the preferred name/primary label.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An alternative label for a class or property which has a more general meaning than the preferred name/primary label.\"},\"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/18\"},\"http://www.w3.org/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#seeAlso\":{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/18\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"imported\":true,\"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\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An alternative label for a class or property which has a more general meaning than the preferred name/primary label.\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/18\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"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_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"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\"]}}}","appearsIn":["duo"],"curie":"hasBroadSynonym","definition":"An alternative label for a class or property which has a more general meaning than the preferred name/primary label.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000118","directParent":"http://purl.obolibrary.org/obo/IAO_0000118","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"An alternative label for a class or property which has a more general meaning than the preferred name/primary label.","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/18","http__//www.w3.org/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#seeAlso":"https://github.com/information-artifact-ontology/ontology-metadata/issues/18","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000118","id":"duo+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","imported":"true","iri":"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has broad synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An alternative label for a class or property which has a more general meaning than the preferred name/primary label.","https://github.com/information-artifact-ontology/ontology-metadata/issues/18","true"],"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\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"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":"duo+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":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","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\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.\"},\"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/20\"},\"http://www.w3.org/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#seeAlso\":{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/20\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"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\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/20\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"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_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"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\"]}}}","appearsIn":["duo"],"curie":"hasExactSynonym","definition":"An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000118","directParent":"http://purl.obolibrary.org/obo/IAO_0000118","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.","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/20","http__//www.w3.org/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#seeAlso":"https://github.com/information-artifact-ontology/ontology-metadata/issues/20","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000118","id":"duo+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":"has exact synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An alternative label for a class or property which has the exact same meaning than the preferred name/primary label.","https://github.com/information-artifact-ontology/ontology-metadata/issues/20","false"],"shortForm":"hasExactSynonym","type":["property","annotationProperty","entity"]} 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 72feffc7a..a2027cb62 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,10 +1,10 @@ "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/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.) +"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/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"":{}}","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" @@ -23,10 +23,10 @@ A continuant cannot be part of an occurrent: use 'participates in'. An occurrent "efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000010","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/UBPROP_0000010"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBPROP:0000010""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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_0000010""},""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_0000010""},""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_0000010","","0.0","false","UBPROP_0000010","","efo-hierarchical-properties","","","UBPROP:0000010","UBPROP_0000010","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000012","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/UBPROP_0000012"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBPROP:0000012""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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_0000012""},""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_0000012""},""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_0000012","","0.0","false","UBPROP_0000012","","efo-hierarchical-properties","","","UBPROP:0000012","UBPROP_0000012","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000202","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/UBPROP_0000202"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBPROP:0000202""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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_0000202""},""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_0000202""},""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_0000202","","0.0","false","UBPROP_0000202","","efo-hierarchical-properties","","","UBPROP:0000202","UBPROP_0000202","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://www.ebi.ac.uk/efo/EFO_URI","OntologyEntity|OntologyProperty","{""iri"":""http://www.ebi.ac.uk/efo/EFO_URI"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""EFO:URI""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""EFO_URI""},""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"":""EFO_URI""},""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://www.ebi.ac.uk/efo/EFO_URI","","0.0","false","EFO_URI","","efo-hierarchical-properties","","","EFO:URI","EFO_URI","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://www.geneontology.org/formats/oboInOwl#date_retrieved","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#date_retrieved"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""date:retrieved""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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_retrieved""},""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"":""date_retrieved""},""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://www.geneontology.org/formats/oboInOwl#date_retrieved","","0.0","false","date_retrieved","","efo-hierarchical-properties","","","date:retrieved","date_retrieved","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://www.geneontology.org/formats/oboInOwl#external_class","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#external_class"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""external:class""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""external_class""},""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"":""external_class""},""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://www.geneontology.org/formats/oboInOwl#external_class","","0.0","false","external_class","","efo-hierarchical-properties","","","external:class","external_class","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://www.geneontology.org/formats/oboInOwl#external_ontology","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#external_ontology"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""external:ontology""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""external_ontology""},""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"":""external_ontology""},""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://www.geneontology.org/formats/oboInOwl#external_ontology","","0.0","false","external_ontology","","efo-hierarchical-properties","","","external:ontology","external_ontology","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://www.ebi.ac.uk/efo/EFO_URI","OntologyEntity|OntologyProperty","{""iri"":""http://www.ebi.ac.uk/efo/EFO_URI"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""EFO_URI""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""EFO_URI""},""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"":""EFO_URI""},""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://www.ebi.ac.uk/efo/EFO_URI","","0.0","false","EFO_URI","","efo-hierarchical-properties","","","EFO_URI","EFO_URI","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://www.geneontology.org/formats/oboInOwl#date_retrieved","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#date_retrieved"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""date_retrieved""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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_retrieved""},""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"":""date_retrieved""},""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://www.geneontology.org/formats/oboInOwl#date_retrieved","","0.0","false","date_retrieved","","efo-hierarchical-properties","","","date_retrieved","date_retrieved","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://www.geneontology.org/formats/oboInOwl#external_class","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#external_class"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""external_class""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""external_class""},""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"":""external_class""},""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://www.geneontology.org/formats/oboInOwl#external_class","","0.0","false","external_class","","efo-hierarchical-properties","","","external_class","external_class","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://www.geneontology.org/formats/oboInOwl#external_ontology","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#external_ontology"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""external_ontology""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""external_ontology""},""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"":""external_ontology""},""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://www.geneontology.org/formats/oboInOwl#external_ontology","","0.0","false","external_ontology","","efo-hierarchical-properties","","","external_ontology","external_ontology","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+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"":""hasAlternativeId""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""hasAlternativeId""},""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"":""hasAlternativeId""},""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://www.geneontology.org/formats/oboInOwl#hasAlternativeId","","0.0","false","hasAlternativeId","","efo-hierarchical-properties","","","hasAlternativeId","hasAlternativeId","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+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"":""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"":""hasBroadSynonym""},""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://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","","0.0","false","hasBroadSynonym","","efo-hierarchical-properties","","","hasBroadSynonym","hasBroadSynonym","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+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"":""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"":""hasDbXref""},""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://www.geneontology.org/formats/oboInOwl#hasDbXref","","0.0","false","hasDbXref","","efo-hierarchical-properties","","","hasDbXref","hasDbXref","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" @@ -40,4 +40,4 @@ A continuant cannot be part of an occurrent: use 'participates in'. An occurrent "efo-hierarchical-properties+property+http://www.geneontology.org/formats/oboInOwl#ontology","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#ontology"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""ontology""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""ontology""},""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"":""ontology""},""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://www.geneontology.org/formats/oboInOwl#ontology","","0.0","false","ontology","","efo-hierarchical-properties","","","ontology","ontology","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+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"":""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"":""shorthand""},""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://www.geneontology.org/formats/oboInOwl#shorthand","","0.0","false","shorthand","","efo-hierarchical-properties","","","shorthand","shorthand","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+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"":""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"":""source""},""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://www.geneontology.org/formats/oboInOwl#source","","0.0","false","source","","efo-hierarchical-properties","","","source","source","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://xmlns.com/foaf/0.1/depicted_by","OntologyEntity|OntologyProperty","{""iri"":""http://xmlns.com/foaf/0.1/depicted_by"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""depicted:by""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""depicted_by""},""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"":""depicted_by""},""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://xmlns.com/foaf/0.1/depicted_by","","0.0","false","depicted_by","","efo-hierarchical-properties","","","depicted:by","depicted_by","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://xmlns.com/foaf/0.1/depicted_by","OntologyEntity|OntologyProperty","{""iri"":""http://xmlns.com/foaf/0.1/depicted_by"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""depicted_by""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":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"":""depicted_by""},""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"":""depicted_by""},""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://xmlns.com/foaf/0.1/depicted_by","","0.0","false","depicted_by","","efo-hierarchical-properties","","","depicted_by","depicted_by","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" diff --git a/testcases_expected_output/hierarchical-properties/efo/ontologies.json b/testcases_expected_output/hierarchical-properties/efo/ontologies.json index bb255d48d..b15ea19d4 100644 --- a/testcases_expected_output/hierarchical-properties/efo/ontologies.json +++ b/testcases_expected_output/hierarchical-properties/efo/ontologies.json @@ -5169,7 +5169,7 @@ "type": [ "literal" ], - "value": "EFO:URI" + "value": "EFO_URI" }, "directAncestor": [], "hasDirectChildren": false, @@ -5225,7 +5225,7 @@ "type": [ "literal" ], - "value": "date:retrieved" + "value": "date_retrieved" }, "directAncestor": [], "hasDirectChildren": false, @@ -5281,7 +5281,7 @@ "type": [ "literal" ], - "value": "external:class" + "value": "external_class" }, "directAncestor": [], "hasDirectChildren": false, @@ -5337,7 +5337,7 @@ "type": [ "literal" ], - "value": "external:ontology" + "value": "external_ontology" }, "directAncestor": [], "hasDirectChildren": false, @@ -6121,7 +6121,7 @@ "type": [ "literal" ], - "value": "depicted:by" + "value": "depicted_by" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json b/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json index 9be2f6168..7f93712ba 100644 --- a/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json +++ b/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json @@ -8754,7 +8754,7 @@ "type": [ "literal" ], - "value": "EFO:URI" + "value": "EFO_URI" }, "type": [ "property", @@ -9115,7 +9115,7 @@ "type": [ "literal" ], - "value": "EFO:URI" + "value": "EFO_URI" }, "type": [ "property", @@ -10234,7 +10234,7 @@ "type": [ "literal" ], - "value": "EFO:URI" + "value": "EFO_URI" }, "directAncestor": [], "hasDirectChildren": false, @@ -10295,7 +10295,7 @@ "type": [ "literal" ], - "value": "date:retrieved" + "value": "date_retrieved" }, "directAncestor": [], "hasDirectChildren": false, @@ -10356,7 +10356,7 @@ "type": [ "literal" ], - "value": "external:class" + "value": "external_class" }, "directAncestor": [], "hasDirectChildren": false, @@ -10417,7 +10417,7 @@ "type": [ "literal" ], - "value": "external:ontology" + "value": "external_ontology" }, "directAncestor": [], "hasDirectChildren": false, @@ -11271,7 +11271,7 @@ "type": [ "literal" ], - "value": "depicted:by" + "value": "depicted_by" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/hierarchical-properties/efo/properties.jsonl b/testcases_expected_output/hierarchical-properties/efo/properties.jsonl index 3913fd9e0..f92710b5d 100644 --- a/testcases_expected_output/hierarchical-properties/efo/properties.jsonl +++ b/testcases_expected_output/hierarchical-properties/efo/properties.jsonl @@ -1,5 +1,5 @@ -{"_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/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\":{}}","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"]} @@ -18,10 +18,10 @@ {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBPROP_0000010\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBPROP:0000010\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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_0000010\"},\"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_0000010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBPROP:0000010","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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_0000010","imported":"false","iri":"http://purl.obolibrary.org/obo/UBPROP_0000010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"UBPROP_0000010","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_0000010","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBPROP_0000012\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBPROP:0000012\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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_0000012\"},\"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_0000012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBPROP:0000012","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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_0000012","imported":"false","iri":"http://purl.obolibrary.org/obo/UBPROP_0000012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"UBPROP_0000012","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_0000012","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBPROP_0000202\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBPROP:0000202\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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_0000202\"},\"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_0000202\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBPROP:0000202","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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_0000202","imported":"false","iri":"http://purl.obolibrary.org/obo/UBPROP_0000202","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"UBPROP_0000202","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_0000202","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.ebi.ac.uk/efo/EFO_URI\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:URI\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"EFO_URI\"},\"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\":\"EFO_URI\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"EFO:URI","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.ebi.ac.uk/efo/EFO_URI","imported":"false","iri":"http://www.ebi.ac.uk/efo/EFO_URI","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"EFO_URI","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":"EFO_URI","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#date_retrieved\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"date:retrieved\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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_retrieved\"},\"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\":\"date_retrieved\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"date:retrieved","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#date_retrieved","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#date_retrieved","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"date_retrieved","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":"date_retrieved","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#external_class\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"external:class\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"external_class\"},\"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\":\"external_class\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"external:class","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#external_class","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#external_class","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"external_class","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":"external_class","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#external_ontology\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"external:ontology\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"external_ontology\"},\"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\":\"external_ontology\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"external:ontology","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#external_ontology","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#external_ontology","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"external_ontology","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":"external_ontology","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.ebi.ac.uk/efo/EFO_URI\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO_URI\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"EFO_URI\"},\"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\":\"EFO_URI\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"EFO_URI","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.ebi.ac.uk/efo/EFO_URI","imported":"false","iri":"http://www.ebi.ac.uk/efo/EFO_URI","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"EFO_URI","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":"EFO_URI","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#date_retrieved\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"date_retrieved\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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_retrieved\"},\"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\":\"date_retrieved\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"date_retrieved","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#date_retrieved","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#date_retrieved","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"date_retrieved","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":"date_retrieved","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#external_class\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"external_class\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"external_class\"},\"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\":\"external_class\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"external_class","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#external_class","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#external_class","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"external_class","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":"external_class","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#external_ontology\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"external_ontology\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"external_ontology\"},\"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\":\"external_ontology\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"external_ontology","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#external_ontology","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#external_ontology","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"external_ontology","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":"external_ontology","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasAlternativeId\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasAlternativeId\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"hasAlternativeId\"},\"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\":\"hasAlternativeId\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"hasAlternativeId","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#hasAlternativeId","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasAlternativeId","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasAlternativeId","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":"hasAlternativeId","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\":\"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\":\"hasBroadSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"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":"efo-hierarchical-properties+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":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","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\":\"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\":\"hasDbXref\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"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":"efo-hierarchical-properties+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":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"hasDbXref","type":["property","annotationProperty","entity"]} @@ -35,4 +35,4 @@ {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#ontology\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ontology\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"ontology\"},\"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\":\"ontology\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"ontology","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://www.geneontology.org/formats/oboInOwl#ontology","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#ontology","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology","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":"ontology","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\":\"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\":\"shorthand\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"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":"efo-hierarchical-properties+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":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","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\":\"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\":\"source\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"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":"efo-hierarchical-properties+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":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"source","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://xmlns.com/foaf/0.1/depicted_by\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"depicted:by\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"depicted_by\"},\"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\":\"depicted_by\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"depicted:by","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://xmlns.com/foaf/0.1/depicted_by","imported":"false","iri":"http://xmlns.com/foaf/0.1/depicted_by","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"depicted_by","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":"depicted_by","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://xmlns.com/foaf/0.1/depicted_by\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"depicted_by\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":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\":\"depicted_by\"},\"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\":\"depicted_by\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"depicted_by","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"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://xmlns.com/foaf/0.1/depicted_by","imported":"false","iri":"http://xmlns.com/foaf/0.1/depicted_by","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"depicted_by","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":"depicted_by","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 4009ed857..9cd85146b 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\"]}}}","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/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.json b/testcases_expected_output/hierarchical-properties/partof/ontologies.json index 49f39ba79..ceaa7cc53 100644 --- a/testcases_expected_output/hierarchical-properties/partof/ontologies.json +++ b/testcases_expected_output/hierarchical-properties/partof/ontologies.json @@ -501,7 +501,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/hierarchical-properties/partof/ontologies.jsonl b/testcases_expected_output/hierarchical-properties/partof/ontologies.jsonl index 2ee420346..09fb86987 100644 --- a/testcases_expected_output/hierarchical-properties/partof/ontologies.jsonl +++ b/testcases_expected_output/hierarchical-properties/partof/ontologies.jsonl @@ -1 +1 @@ -{"_json":"{\"directAncestor\":[],\"exportsTo\":[],\"hierarchical_property\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/ms#part_of\"],\"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/hierarchical-properties/v0.0.1/partof.owl\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\",\"isObsolete\":false,\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"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/ms#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"4\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"6\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"2\"},\"oboSlims\":false,\"ontologyId\":\"partof\",\"ontology_purl\":\"./testcases/hierarchical-properties/partof.rdf\",\"preferredPrefix\":\"partof\",\"searchableAnnotationValues\":[false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"4\"},{\"type\":[\"literal\"],\"value\":\"6\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"2\"}],\"title\":\"partof\",\"type\":[\"ontology\"]}","directAncestor":[],"exportsTo":[],"hierarchical_property":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/ms#part_of"],"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/hierarchical-properties/v0.0.1/partof.owl","id":"partof+ontology+http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","imported":"false","importsFrom":[],"iri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","isObsolete":"false","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"4","numberOfEntities":"6","numberOfIndividuals":"0","numberOfProperties":"2","oboSlims":"false","ontologyId":"partof","ontology_purl":"./testcases/hierarchical-properties/partof.rdf","preferredPrefix":"partof","searchableAnnotationValues":["false","en","4","6","0","2"],"title":"partof","type":["ontology"]} +{"_json":"{\"directAncestor\":[],\"exportsTo\":[],\"hierarchical_property\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/ms#part_of\"],\"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/hierarchical-properties/v0.0.1/partof.owl\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\",\"isObsolete\":false,\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"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/ms#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"4\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"6\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"2\"},\"oboSlims\":false,\"ontologyId\":\"partof\",\"ontology_purl\":\"./testcases/hierarchical-properties/partof.rdf\",\"preferredPrefix\":\"partof\",\"searchableAnnotationValues\":[false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"4\"},{\"type\":[\"literal\"],\"value\":\"6\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"2\"}],\"title\":\"partof\",\"type\":[\"ontology\"]}","directAncestor":[],"exportsTo":[],"hierarchical_property":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/ms#part_of"],"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/hierarchical-properties/v0.0.1/partof.owl","id":"partof+ontology+http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","imported":"false","importsFrom":[],"iri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","isObsolete":"false","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"4","numberOfEntities":"6","numberOfIndividuals":"0","numberOfProperties":"2","oboSlims":"false","ontologyId":"partof","ontology_purl":"./testcases/hierarchical-properties/partof.rdf","preferredPrefix":"partof","searchableAnnotationValues":["false","en","4","6","0","2"],"title":"partof","type":["ontology"]} diff --git a/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json b/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json index 2dc8f9444..4399c3262 100644 --- a/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json +++ b/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json @@ -177,7 +177,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "type": [ "property", @@ -320,7 +320,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "type": [ "property", @@ -696,7 +696,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "directAncestor": [], "hasDirectChildren": false, @@ -786,7 +786,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "type": [ "property", diff --git a/testcases_expected_output/hierarchical-properties/partof/partof_classes.csv b/testcases_expected_output/hierarchical-properties/partof/partof_classes.csv index 00fc2f589..f2ee184a8 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""]}}}","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/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_ontologies.csv b/testcases_expected_output/hierarchical-properties/partof/partof_ontologies.csv index d13d68536..0db63bfc3 100644 --- a/testcases_expected_output/hierarchical-properties/partof/partof_ontologies.csv +++ b/testcases_expected_output/hierarchical-properties/partof/partof_ontologies.csv @@ -1,2 +1,2 @@ "id:ID",":LABEL","_json","iri","numberOfIndividuals:string[]","linkedEntities:string[]","ontology_purl:string[]","numDescendants:string[]","numberOfProperties:string[]","numberOfClasses:string[]","oboSlims:string[]","language:string[]","numHierarchicalDescendants:string[]","hierarchical_property:string[]","isObsolete:string[]","importsFrom:string[]","title:string[]","type:string[]","preferredPrefix:string[]","directAncestor:string[]","exportsTo:string[]","imported:string[]","numberOfEntities:string[]","ontologyId:string[]","http__//www.w3.org/2002/07/owl#versionIRI:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"partof+ontology+http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","Ontology","{""ontologyId"":""partof"",""importsFrom"":[],""exportsTo"":[],""iri"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl"",""preferredPrefix"":""partof"",""title"":""partof"",""hierarchical_property"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/ms#part_of""],""oboSlims"":false,""ontology_purl"":""./testcases/hierarchical-properties/partof.rdf"",""type"":[""ontology""],""directAncestor"":[],""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/hierarchical-properties/v0.0.1/partof.owl"",""imported"":false,""isObsolete"":false,""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""4""},""numberOfEntities"":{""type"":[""literal""],""value"":""6""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""2""},""searchableAnnotationValues"":[false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""4""},{""type"":[""literal""],""value"":""6""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""2""}],""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/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://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","0","","./testcases/hierarchical-properties/partof.rdf","0.0","2","4","false","en","0.0","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/ms#part_of","false","","partof","ontology","partof","","","false","6","partof","http://www.ebi.ac.uk/testcases/hierarchical-properties/v0.0.1/partof.owl","http://www.w3.org/2002/07/owl#Ontology" +"partof+ontology+http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","Ontology","{""ontologyId"":""partof"",""importsFrom"":[],""exportsTo"":[],""iri"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl"",""preferredPrefix"":""partof"",""title"":""partof"",""hierarchical_property"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/ms#part_of""],""oboSlims"":false,""ontology_purl"":""./testcases/hierarchical-properties/partof.rdf"",""type"":[""ontology""],""directAncestor"":[],""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/hierarchical-properties/v0.0.1/partof.owl"",""imported"":false,""isObsolete"":false,""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""4""},""numberOfEntities"":{""type"":[""literal""],""value"":""6""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""2""},""searchableAnnotationValues"":[false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""4""},{""type"":[""literal""],""value"":""6""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""2""}],""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/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://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","0","","./testcases/hierarchical-properties/partof.rdf","0.0","2","4","false","en","0.0","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/ms#part_of","false","","partof","ontology","partof","","","false","6","partof","http://www.ebi.ac.uk/testcases/hierarchical-properties/v0.0.1/partof.owl","http://www.w3.org/2002/07/owl#Ontology" diff --git a/testcases_expected_output/hierarchical-properties/partof/partof_properties.csv b/testcases_expected_output/hierarchical-properties/partof/partof_properties.csv index 48bd2b7f2..da1c6c6db 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"":{}}","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" +"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 1d2dc0cf4..2c044fdff 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\":{}}","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"]} +{"_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/use-user-defined-pref-label/classes.jsonl b/testcases_expected_output/iri-labels/use-user-defined-pref-label/classes.jsonl index 49e07210f..998ae2252 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\":{\"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"]} +{"_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.json b/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies.json index d3115fb7d..1e9dbc2b0 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies.json +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies.json @@ -102,7 +102,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000001" + "value": "XMPL_XMPL000001" }, "directAncestor": [], "hasDirectChildren": true, @@ -226,7 +226,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000002" + "value": "XMPL_XMPL000002" }, "directAncestor": "http://exmpl.org/xmpl/XMPL000001", "directParent": "http://exmpl.org/xmpl/XMPL000001", @@ -359,7 +359,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000003" + "value": "XMPL_XMPL000003" }, "directAncestor": "http://exmpl.org/xmpl/XMPL000001", "directParent": "http://exmpl.org/xmpl/XMPL000001", @@ -495,7 +495,7 @@ "type": [ "literal" ], - "value": "XMPL:Preferred_name" + "value": "XMPL_Preferred_name" }, "directAncestor": [], "hasDirectChildren": false, @@ -552,7 +552,7 @@ "type": [ "literal" ], - "value": "XMPL:Synonym" + "value": "XMPL_Synonym" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies.jsonl b/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies.jsonl index 85b5d99da..1d89c3928 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies.jsonl +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies.jsonl @@ -1 +1 @@ -{"_json":"{\"base_uri\":[\"http://exmpl.org/xmpl/\"],\"description\":\"This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection.\",\"directAncestor\":[],\"exportsTo\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://exmpl.org/xmpl/xmpl.owl\",\"isObsolete\":false,\"label_property\":[\"http://exmpl.org/xmpl/Preferred_name\",\"http://exmpl.org/xmpl/Other_preferred_name\"],\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"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\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"3\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"5\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"2\"},\"ontologyId\":\"xmpl\",\"ontology_purl\":\"./testcases/iri-labels/user-defined-pref-label.owl\",\"preferredPrefix\":\"XMPL\",\"reasoner\":\"none\",\"searchableAnnotationValues\":[false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"3\"},{\"type\":[\"literal\"],\"value\":\"5\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"2\"}],\"synonym_property\":[\"http://exmpl.org/xmpl/Synonym\"],\"title\":\"Example terminology with user defined pref label\",\"type\":[\"ontology\"],\"uri\":\"http://exmpl.org/xmpl/\"}","base_uri":["http://exmpl.org/xmpl/"],"description":"This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection.","directAncestor":[],"exportsTo":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","id":"xmpl+ontology+http://exmpl.org/xmpl/xmpl.owl","imported":"false","importsFrom":[],"iri":"http://exmpl.org/xmpl/xmpl.owl","isObsolete":"false","label_property":["http://exmpl.org/xmpl/Preferred_name","http://exmpl.org/xmpl/Other_preferred_name"],"language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"3","numberOfEntities":"5","numberOfIndividuals":"0","numberOfProperties":"2","ontologyId":"xmpl","ontology_purl":"./testcases/iri-labels/user-defined-pref-label.owl","preferredPrefix":"XMPL","reasoner":"none","searchableAnnotationValues":["false","en","3","5","0","2"],"synonym_property":["http://exmpl.org/xmpl/Synonym"],"title":"Example terminology with user defined pref label","type":["ontology"],"uri":"http://exmpl.org/xmpl/"} +{"_json":"{\"base_uri\":[\"http://exmpl.org/xmpl/\"],\"description\":\"This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection.\",\"directAncestor\":[],\"exportsTo\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://exmpl.org/xmpl/xmpl.owl\",\"isObsolete\":false,\"label_property\":[\"http://exmpl.org/xmpl/Preferred_name\",\"http://exmpl.org/xmpl/Other_preferred_name\"],\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"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\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"3\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"5\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"2\"},\"ontologyId\":\"xmpl\",\"ontology_purl\":\"./testcases/iri-labels/user-defined-pref-label.owl\",\"preferredPrefix\":\"XMPL\",\"reasoner\":\"none\",\"searchableAnnotationValues\":[false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"3\"},{\"type\":[\"literal\"],\"value\":\"5\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"2\"}],\"synonym_property\":[\"http://exmpl.org/xmpl/Synonym\"],\"title\":\"Example terminology with user defined pref label\",\"type\":[\"ontology\"],\"uri\":\"http://exmpl.org/xmpl/\"}","base_uri":["http://exmpl.org/xmpl/"],"description":"This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection.","directAncestor":[],"exportsTo":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","id":"xmpl+ontology+http://exmpl.org/xmpl/xmpl.owl","imported":"false","importsFrom":[],"iri":"http://exmpl.org/xmpl/xmpl.owl","isObsolete":"false","label_property":["http://exmpl.org/xmpl/Preferred_name","http://exmpl.org/xmpl/Other_preferred_name"],"language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"3","numberOfEntities":"5","numberOfIndividuals":"0","numberOfProperties":"2","ontologyId":"xmpl","ontology_purl":"./testcases/iri-labels/user-defined-pref-label.owl","preferredPrefix":"XMPL","reasoner":"none","searchableAnnotationValues":["false","en","3","5","0","2"],"synonym_property":["http://exmpl.org/xmpl/Synonym"],"title":"Example terminology with user defined pref label","type":["ontology"],"uri":"http://exmpl.org/xmpl/"} 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 a2c9c6e10..5aaec3b0d 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 @@ -104,7 +104,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000001" + "value": "XMPL_XMPL000001" }, "directAncestor": [], "hasDirectChildren": true, @@ -241,7 +241,7 @@ "type": [ "literal" ], - "value": "XMPL:Preferred_name" + "value": "XMPL_Preferred_name" }, "type": [ "property", @@ -265,7 +265,7 @@ "type": [ "literal" ], - "value": "XMPL:Synonym" + "value": "XMPL_Synonym" }, "type": [ "property", @@ -285,7 +285,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000002" + "value": "XMPL_XMPL000002" }, "directAncestor": "http://exmpl.org/xmpl/XMPL000001", "directParent": "http://exmpl.org/xmpl/XMPL000001", @@ -431,7 +431,7 @@ "type": [ "literal" ], - "value": "XMPL:Preferred_name" + "value": "XMPL_Preferred_name" }, "type": [ "property", @@ -467,7 +467,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000001" + "value": "XMPL_XMPL000001" }, "type": [ "class", @@ -490,7 +490,7 @@ "type": [ "literal" ], - "value": "XMPL:Synonym" + "value": "XMPL_Synonym" }, "type": [ "property", @@ -510,7 +510,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000003" + "value": "XMPL_XMPL000003" }, "directAncestor": "http://exmpl.org/xmpl/XMPL000001", "directParent": "http://exmpl.org/xmpl/XMPL000001", @@ -668,7 +668,7 @@ "type": [ "literal" ], - "value": "XMPL:XMPL000001" + "value": "XMPL_XMPL000001" }, "type": [ "class", @@ -691,7 +691,7 @@ "type": [ "literal" ], - "value": "XMPL:Synonym" + "value": "XMPL_Synonym" }, "type": [ "property", @@ -714,7 +714,7 @@ "type": [ "literal" ], - "value": "XMPL:Preferred_name" + "value": "XMPL_Preferred_name" }, "directAncestor": [], "hasDirectChildren": false, @@ -779,7 +779,7 @@ "type": [ "literal" ], - "value": "XMPL:Synonym" + "value": "XMPL_Synonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -852,7 +852,7 @@ "type": [ "literal" ], - "value": "XMPL:Preferred_name" + "value": "XMPL_Preferred_name" }, "type": [ "property", @@ -876,7 +876,7 @@ "type": [ "literal" ], - "value": "XMPL:Synonym" + "value": "XMPL_Synonym" }, "type": [ "property", 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 d6f4d77fd..d025ae07f 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\":{}}","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"]} +{"_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 3ba2dd094..eaeb3f235 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"":{""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" +"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_ontologies.csv b/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_ontologies.csv index 5a56a3b7a..51ed91168 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_ontologies.csv +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_ontologies.csv @@ -1,2 +1,2 @@ "id:ID",":LABEL","_json","linkedEntities:string[]","ontology_purl:string[]","numberOfProperties:string[]","numberOfClasses:string[]","description:string[]","language:string[]","numHierarchicalDescendants:string[]","title:string[]","type:string[]","preferredPrefix:string[]","base_uri:string[]","imported:string[]","numberOfEntities:string[]","reasoner:string[]","iri","label_property:string[]","numberOfIndividuals:string[]","numDescendants:string[]","synonym_property:string[]","isObsolete:string[]","importsFrom:string[]","uri:string[]","directAncestor:string[]","exportsTo:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"xmpl+ontology+http://exmpl.org/xmpl/xmpl.owl","Ontology","{""ontologyId"":""xmpl"",""importsFrom"":[],""exportsTo"":[],""iri"":""http://exmpl.org/xmpl/xmpl.owl"",""preferredPrefix"":""XMPL"",""title"":""Example terminology with user defined pref label"",""uri"":""http://exmpl.org/xmpl/"",""description"":""This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection."",""base_uri"":[""http://exmpl.org/xmpl/""],""label_property"":[""http://exmpl.org/xmpl/Preferred_name"",""http://exmpl.org/xmpl/Other_preferred_name""],""synonym_property"":[""http://exmpl.org/xmpl/Synonym""],""reasoner"":""none"",""ontology_purl"":""./testcases/iri-labels/user-defined-pref-label.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"":""3""},""numberOfEntities"":{""type"":[""literal""],""value"":""5""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""2""},""searchableAnnotationValues"":[false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""3""},{""type"":[""literal""],""value"":""5""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""2""}],""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""]}}}","","./testcases/iri-labels/user-defined-pref-label.owl","2","3","This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection.","en","0.0","Example terminology with user defined pref label","ontology","XMPL","http://exmpl.org/xmpl/","false","5","none","http://exmpl.org/xmpl/xmpl.owl","http://exmpl.org/xmpl/Preferred_name|http://exmpl.org/xmpl/Other_preferred_name","0","0.0","http://exmpl.org/xmpl/Synonym","false","","http://exmpl.org/xmpl/","","","xmpl","http://www.w3.org/2002/07/owl#Ontology" +"xmpl+ontology+http://exmpl.org/xmpl/xmpl.owl","Ontology","{""ontologyId"":""xmpl"",""importsFrom"":[],""exportsTo"":[],""iri"":""http://exmpl.org/xmpl/xmpl.owl"",""preferredPrefix"":""XMPL"",""title"":""Example terminology with user defined pref label"",""uri"":""http://exmpl.org/xmpl/"",""description"":""This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection."",""base_uri"":[""http://exmpl.org/xmpl/""],""label_property"":[""http://exmpl.org/xmpl/Preferred_name"",""http://exmpl.org/xmpl/Other_preferred_name""],""synonym_property"":[""http://exmpl.org/xmpl/Synonym""],""reasoner"":""none"",""ontology_purl"":""./testcases/iri-labels/user-defined-pref-label.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"":""3""},""numberOfEntities"":{""type"":[""literal""],""value"":""5""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""2""},""searchableAnnotationValues"":[false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""3""},{""type"":[""literal""],""value"":""5""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""2""}],""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""]}}}","","./testcases/iri-labels/user-defined-pref-label.owl","2","3","This config will use the defined label_property as label for a class. In OLS4 the value of label_property is a collection.","en","0.0","Example terminology with user defined pref label","ontology","XMPL","http://exmpl.org/xmpl/","false","5","none","http://exmpl.org/xmpl/xmpl.owl","http://exmpl.org/xmpl/Preferred_name|http://exmpl.org/xmpl/Other_preferred_name","0","0.0","http://exmpl.org/xmpl/Synonym","false","","http://exmpl.org/xmpl/","","","xmpl","http://www.w3.org/2002/07/owl#Ontology" 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 e6268dcea..3ff0bbd1b 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"":{}}","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" +"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/reification/reified-bnode/classes.jsonl b/testcases_expected_output/reification/reified-bnode/classes.jsonl index c831c7fa9..f46fd207f 100644 --- a/testcases_expected_output/reification/reified-bnode/classes.jsonl +++ b/testcases_expected_output/reification/reified-bnode/classes.jsonl @@ -1,2 +1,2 @@ -{"_json":"{\"iri\":\"http://example.com/reified-bnode#cell\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"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\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://example.com/reified-bnode\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"relatedFrom\":{\"property\":\"http://example.com/reified-bnode#part_of\",\"value\":\"http://example.com/reified-bnode#cell_part\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"isDefiningOntology\":false,\"appearsIn\":[\"reified-bnode\"],\"linkedEntities\":{\"http://example.com/reified-bnode#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://example.com/reified-bnode#cell_part\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"cell:part\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["reified-bnode"],"curie":"cell","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","id":"reified-bnode+class+http://example.com/reified-bnode#cell","imported":"false","iri":"http://example.com/reified-bnode#cell","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"reified-bnode","ontologyIri":"http://example.com/reified-bnode","ontologyPreferredPrefix":"reified-bnode","relatedFrom":"http://example.com/reified-bnode#cell_part","searchableAnnotationValues":"false","shortForm":"cell","type":["class","entity"]} -{"_json":"{\"iri\":\"http://example.com/reified-bnode#cell_part\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"cell:part\"},\"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://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"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://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"isObsolete\":false},\"axioms\":[{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This is an annotation on a property with a bnode value\"}}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://example.com/reified-bnode\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"relatedTo\":{\"property\":\"http://example.com/reified-bnode#part_of\",\"value\":\"http://example.com/reified-bnode#cell\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"isDefiningOntology\":false,\"appearsIn\":[\"reified-bnode\"],\"linkedEntities\":{\"http://example.com/reified-bnode#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://example.com/reified-bnode#cell\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["reified-bnode"],"curie":"cell:part","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","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"reified-bnode+class+http://example.com/reified-bnode#cell_part","imported":"false","iri":"http://example.com/reified-bnode#cell_part","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell_part","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"reified-bnode","ontologyIri":"http://example.com/reified-bnode","ontologyPreferredPrefix":"reified-bnode","relatedTo":"http://example.com/reified-bnode#cell","searchableAnnotationValues":"false","shortForm":"cell_part","type":["class","entity"]} +{"_json":"{\"iri\":\"http://example.com/reified-bnode#cell\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"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\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://example.com/reified-bnode\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"relatedFrom\":{\"property\":\"http://example.com/reified-bnode#part_of\",\"value\":\"http://example.com/reified-bnode#cell_part\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"isDefiningOntology\":false,\"appearsIn\":[\"reified-bnode\"],\"linkedEntities\":{\"http://example.com/reified-bnode#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://example.com/reified-bnode#cell_part\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["reified-bnode"],"curie":"cell","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","id":"reified-bnode+class+http://example.com/reified-bnode#cell","imported":"false","iri":"http://example.com/reified-bnode#cell","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"reified-bnode","ontologyIri":"http://example.com/reified-bnode","ontologyPreferredPrefix":"reified-bnode","relatedFrom":"http://example.com/reified-bnode#cell_part","searchableAnnotationValues":"false","shortForm":"cell","type":["class","entity"]} +{"_json":"{\"iri\":\"http://example.com/reified-bnode#cell_part\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"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://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"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://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"isObsolete\":false},\"axioms\":[{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This is an annotation on a property with a bnode value\"}}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://example.com/reified-bnode\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"relatedTo\":{\"property\":\"http://example.com/reified-bnode#part_of\",\"value\":\"http://example.com/reified-bnode#cell\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://example.com/reified-bnode#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://example.com/reified-bnode#cell\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"cell_part\"},\"isDefiningOntology\":false,\"appearsIn\":[\"reified-bnode\"],\"linkedEntities\":{\"http://example.com/reified-bnode#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://example.com/reified-bnode#cell\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["reified-bnode"],"curie":"cell_part","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","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"reified-bnode+class+http://example.com/reified-bnode#cell_part","imported":"false","iri":"http://example.com/reified-bnode#cell_part","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell_part","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"reified-bnode","ontologyIri":"http://example.com/reified-bnode","ontologyPreferredPrefix":"reified-bnode","relatedTo":"http://example.com/reified-bnode#cell","searchableAnnotationValues":"false","shortForm":"cell_part","type":["class","entity"]} diff --git a/testcases_expected_output/reification/reified-bnode/ontologies.json b/testcases_expected_output/reification/reified-bnode/ontologies.json index fc45a50eb..45f3d80ef 100644 --- a/testcases_expected_output/reification/reified-bnode/ontologies.json +++ b/testcases_expected_output/reification/reified-bnode/ontologies.json @@ -155,7 +155,7 @@ "type": [ "literal" ], - "value": "cell:part" + "value": "cell_part" }, "directAncestor": [], "hasDirectChildren": false, @@ -260,7 +260,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/reification/reified-bnode/ontologies_linked.json b/testcases_expected_output/reification/reified-bnode/ontologies_linked.json index 607e24f60..5f45915e8 100644 --- a/testcases_expected_output/reification/reified-bnode/ontologies_linked.json +++ b/testcases_expected_output/reification/reified-bnode/ontologies_linked.json @@ -164,7 +164,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "type": [ "property", @@ -185,7 +185,7 @@ "type": [ "literal" ], - "value": "cell:part" + "value": "cell_part" }, "type": [ "class", @@ -204,7 +204,7 @@ "type": [ "literal" ], - "value": "cell:part" + "value": "cell_part" }, "directAncestor": [], "hasDirectChildren": false, @@ -313,7 +313,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "type": [ "property", @@ -356,7 +356,7 @@ "type": [ "literal" ], - "value": "part:of" + "value": "part_of" }, "directAncestor": [], "hasDirectChildren": false, diff --git a/testcases_expected_output/reification/reified-bnode/properties.jsonl b/testcases_expected_output/reification/reified-bnode/properties.jsonl index 23d4f190e..d5103b2e7 100644 --- a/testcases_expected_output/reification/reified-bnode/properties.jsonl +++ b/testcases_expected_output/reification/reified-bnode/properties.jsonl @@ -1 +1 @@ -{"_json":"{\"iri\":\"http://example.com/reified-bnode#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\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://example.com/reified-bnode\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"isDefiningOntology\":false,\"appearsIn\":[\"reified-bnode\"],\"linkedEntities\":{}}","appearsIn":["reified-bnode"],"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","id":"reified-bnode+property+http://example.com/reified-bnode#part_of","imported":"false","iri":"http://example.com/reified-bnode#part_of","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"reified-bnode","ontologyIri":"http://example.com/reified-bnode","ontologyPreferredPrefix":"reified-bnode","searchableAnnotationValues":"false","shortForm":"part_of","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://example.com/reified-bnode#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\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://example.com/reified-bnode\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"reified-bnode\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"isDefiningOntology\":false,\"appearsIn\":[\"reified-bnode\"],\"linkedEntities\":{}}","appearsIn":["reified-bnode"],"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","id":"reified-bnode+property+http://example.com/reified-bnode#part_of","imported":"false","iri":"http://example.com/reified-bnode#part_of","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"reified-bnode","ontologyIri":"http://example.com/reified-bnode","ontologyPreferredPrefix":"reified-bnode","searchableAnnotationValues":"false","shortForm":"part_of","type":["property","objectProperty","entity"]} diff --git a/testcases_expected_output/reification/reified-bnode/reified-bnode_classes.csv b/testcases_expected_output/reification/reified-bnode/reified-bnode_classes.csv index 6b24047cf..4e601b8be 100644 --- a/testcases_expected_output/reification/reified-bnode/reified-bnode_classes.csv +++ b/testcases_expected_output/reification/reified-bnode/reified-bnode_classes.csv @@ -1,3 +1,3 @@ "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[]","relatedFrom: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[]" -"reified-bnode+class+http://example.com/reified-bnode#cell","OntologyEntity|OntologyClass","{""iri"":""http://example.com/reified-bnode#cell"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""cell""},""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"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""reified-bnode""},""ontologyIri"":{""type"":[""literal""],""value"":""http://example.com/reified-bnode""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""reified-bnode""},""relatedFrom"":{""property"":""http://example.com/reified-bnode#part_of"",""value"":""http://example.com/reified-bnode#cell_part"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""cell""},""isDefiningOntology"":false,""appearsIn"":[""reified-bnode""],""linkedEntities"":{""http://example.com/reified-bnode#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part:of""},""type"":[""property"",""objectProperty"",""entity""]},""http://example.com/reified-bnode#cell_part"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell_part""},""curie"":{""type"":[""literal""],""value"":""cell:part""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","class|entity","","","false","false","http://example.com/reified-bnode","http://example.com/reified-bnode#cell","","http://example.com/reified-bnode#cell_part","0.0","false","cell","reified-bnode","","cell","cell","reified-bnode","http://www.w3.org/2002/07/owl#Class" -"reified-bnode+class+http://example.com/reified-bnode#cell_part","OntologyEntity|OntologyClass","{""iri"":""http://example.com/reified-bnode#cell_part"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""cell:part""},""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://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""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://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""isObsolete"":false},""axioms"":[{""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This is an annotation on a property with a bnode value""}}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell_part""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""reified-bnode""},""ontologyIri"":{""type"":[""literal""],""value"":""http://example.com/reified-bnode""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""reified-bnode""},""relatedTo"":{""property"":""http://example.com/reified-bnode#part_of"",""value"":""http://example.com/reified-bnode#cell"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""cell_part""},""isDefiningOntology"":false,""appearsIn"":[""reified-bnode""],""linkedEntities"":{""http://example.com/reified-bnode#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part:of""},""type"":[""property"",""objectProperty"",""entity""]},""http://example.com/reified-bnode#cell"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""cell""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://example.com/reified-bnode#cell","","false","false","http://example.com/reified-bnode","http://example.com/reified-bnode#cell_part","","","0.0","false","cell_part","reified-bnode","","cell:part","cell_part","reified-bnode","http://www.w3.org/2002/07/owl#Class" +"reified-bnode+class+http://example.com/reified-bnode#cell","OntologyEntity|OntologyClass","{""iri"":""http://example.com/reified-bnode#cell"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""cell""},""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"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""reified-bnode""},""ontologyIri"":{""type"":[""literal""],""value"":""http://example.com/reified-bnode""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""reified-bnode""},""relatedFrom"":{""property"":""http://example.com/reified-bnode#part_of"",""value"":""http://example.com/reified-bnode#cell_part"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""cell""},""isDefiningOntology"":false,""appearsIn"":[""reified-bnode""],""linkedEntities"":{""http://example.com/reified-bnode#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part_of""},""type"":[""property"",""objectProperty"",""entity""]},""http://example.com/reified-bnode#cell_part"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell_part""},""curie"":{""type"":[""literal""],""value"":""cell_part""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","class|entity","","","false","false","http://example.com/reified-bnode","http://example.com/reified-bnode#cell","","http://example.com/reified-bnode#cell_part","0.0","false","cell","reified-bnode","","cell","cell","reified-bnode","http://www.w3.org/2002/07/owl#Class" +"reified-bnode+class+http://example.com/reified-bnode#cell_part","OntologyEntity|OntologyClass","{""iri"":""http://example.com/reified-bnode#cell_part"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""cell_part""},""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://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""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://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""isObsolete"":false},""axioms"":[{""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This is an annotation on a property with a bnode value""}}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell_part""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""reified-bnode""},""ontologyIri"":{""type"":[""literal""],""value"":""http://example.com/reified-bnode""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""reified-bnode""},""relatedTo"":{""property"":""http://example.com/reified-bnode#part_of"",""value"":""http://example.com/reified-bnode#cell"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://example.com/reified-bnode#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://example.com/reified-bnode#cell"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""cell_part""},""isDefiningOntology"":false,""appearsIn"":[""reified-bnode""],""linkedEntities"":{""http://example.com/reified-bnode#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part_of""},""type"":[""property"",""objectProperty"",""entity""]},""http://example.com/reified-bnode#cell"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""cell""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://example.com/reified-bnode#cell","","false","false","http://example.com/reified-bnode","http://example.com/reified-bnode#cell_part","","","0.0","false","cell_part","reified-bnode","","cell_part","cell_part","reified-bnode","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/reification/reified-bnode/reified-bnode_properties.csv b/testcases_expected_output/reification/reified-bnode/reified-bnode_properties.csv index 9de4e4aed..2e8d16532 100644 --- a/testcases_expected_output/reification/reified-bnode/reified-bnode_properties.csv +++ b/testcases_expected_output/reification/reified-bnode/reified-bnode_properties.csv @@ -1,2 +1,2 @@ "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[]","ontologyId:string[]","ontologyIri:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"reified-bnode+property+http://example.com/reified-bnode#part_of","OntologyEntity|OntologyProperty","{""iri"":""http://example.com/reified-bnode#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"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""part_of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""reified-bnode""},""ontologyIri"":{""type"":[""literal""],""value"":""http://example.com/reified-bnode""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""reified-bnode""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""part_of""},""isDefiningOntology"":false,""appearsIn"":[""reified-bnode""],""linkedEntities"":{}}","false","http://example.com/reified-bnode#part_of","false","false","false","false","","0.0","0.0","false","part_of","property|objectProperty|entity","reified-bnode","","part:of","false","false","part_of","reified-bnode","http://example.com/reified-bnode","http://www.w3.org/2002/07/owl#ObjectProperty" +"reified-bnode+property+http://example.com/reified-bnode#part_of","OntologyEntity|OntologyProperty","{""iri"":""http://example.com/reified-bnode#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"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""part_of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""reified-bnode""},""ontologyIri"":{""type"":[""literal""],""value"":""http://example.com/reified-bnode""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""reified-bnode""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""part_of""},""isDefiningOntology"":false,""appearsIn"":[""reified-bnode""],""linkedEntities"":{}}","false","http://example.com/reified-bnode#part_of","false","false","false","false","","0.0","0.0","false","part_of","property|objectProperty|entity","reified-bnode","","part_of","false","false","part_of","reified-bnode","http://example.com/reified-bnode","http://www.w3.org/2002/07/owl#ObjectProperty" 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 deleted file mode 100644 index 0a92b55c3..000000000 --- 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 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "error": "

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).
" -} \ 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 deleted file mode 100644 index 1d73af5ce..000000000 --- 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 +++ /dev/null @@ -1,4 +0,0 @@ -{ - "status": 404, - "message": "Endpoint not found: /api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523a" -} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTRUE.json b/testcases_expected_output_api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTRUE.json deleted file mode 100644 index 58ee5a481..000000000 --- a/testcases_expected_output_api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTRUE.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "iri": "http://www.ebi.ac.uk/testcases/defined-fields/isObsolete.rdf#DeprecatedClassWithValueTRUE", - "lang": "en", - "description": [], - "synonyms": [], - "annotation": {}, - "label": "DeprecatedClassWithValueTRUE", - "ontology_name": "isobsolete", - "ontology_prefix": "IsObsolete", - "ontology_iri": "http://www.ebi.ac.uk/testcases/defined-fields/isObsolete.rdf", - "is_obsolete": true, - "is_defining_ontology": false, - "has_children": false, - "is_root": true, - "short_form": "DeprecatedClassWithValueTRUE", - "obo_id": "DeprecatedClassWithValueTRUE", - "is_preferred_root": false, - "_links": { - "self": { - "href": "http://localhost:8080/api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTRUE?lang=en" - }, - "graph": { - "href": "http://localhost:8080/api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTRUE/graph" - } - } -} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTrue.json b/testcases_expected_output_api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTrue.json deleted file mode 100644 index 40e99b3fa..000000000 --- a/testcases_expected_output_api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTrue.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "iri": "http://www.ebi.ac.uk/testcases/defined-fields/isObsolete.rdf#DeprecatedClassWithValueTrue", - "lang": "en", - "description": [], - "synonyms": [], - "annotation": {}, - "label": "DeprecatedClassWithValueTrue", - "ontology_name": "isobsolete", - "ontology_prefix": "IsObsolete", - "ontology_iri": "http://www.ebi.ac.uk/testcases/defined-fields/isObsolete.rdf", - "is_obsolete": true, - "is_defining_ontology": false, - "has_children": false, - "is_root": true, - "short_form": "DeprecatedClassWithValueTrue", - "obo_id": "DeprecatedClassWithValueTrue", - "is_preferred_root": false, - "_links": { - "self": { - "href": "http://localhost:8080/api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTrue?lang=en" - }, - "graph": { - "href": "http://localhost:8080/api/ontologies/isobsolete/terms/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523DeprecatedClassWithValueTrue/graph" - } - } -} \ 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 65577767a..c925d9e62 100644 --- a/testcases_expected_output_api/v2/ontologies.json +++ b/testcases_expected_output_api/v2/ontologies.json @@ -167,7 +167,7 @@ "language": "en", "linkedEntities": { "http://exmpl.org/xmpl/Preferred_name": { - "curie": "XMPL:Preferred_name", + "curie": "XMPL_Preferred_name", "definedBy": [ "xmpl" ], @@ -181,7 +181,7 @@ ] }, "http://exmpl.org/xmpl/Synonym": { - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -241,7 +241,7 @@ "language": "en", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -254,7 +254,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -300,7 +300,7 @@ "language": "en", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -359,7 +359,7 @@ "language": "en", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -372,7 +372,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -385,7 +385,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -452,7 +452,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -604,7 +604,7 @@ ] }, "http://purl.obolibrary.org/obo/ms#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, diff --git a/testcases_expected_output_api/v2/ontologies/duo/classes.json b/testcases_expected_output_api/v2/ontologies/duo/classes.json index 4015e94bc..f1087ff03 100644 --- a/testcases_expected_output_api/v2/ontologies/duo/classes.json +++ b/testcases_expected_output_api/v2/ontologies/duo/classes.json @@ -3,7 +3,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000008", + "curie": "APOLLO_SV:00000008", "definition": "A planned process that has specified output a software product and that involves the creation of source code.", "definitionProperty": "http://purl.obolibrary.org/obo/IAO_0000115", "directAncestor": [ @@ -214,7 +214,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000032", + "curie": "APOLLO_SV:00000032", "definition": "A measurement datum that is the output of counting.", "definitionProperty": "http://purl.obolibrary.org/obo/IAO_0000115", "directAncestor": [ @@ -266,7 +266,7 @@ "label": "count", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000033": { - "curie": "APOLLO:SV_00000033", + "curie": "APOLLO_SV:00000033", "hasLocalDefinition": true, "label": "counting", "numAppearsIn": 1.0, @@ -410,7 +410,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000033", + "curie": "APOLLO_SV:00000033", "definition": "The planned process of finding the number of elements in a finite set of objects.", "definitionProperty": "http://purl.obolibrary.org/obo/IAO_0000115", "directAncestor": [ @@ -464,7 +464,7 @@ "url": "http://en.wikipedia.org/wiki/Counting" }, "http://purl.obolibrary.org/obo/APOLLO_SV_00000032": { - "curie": "APOLLO:SV_00000032", + "curie": "APOLLO_SV:00000032", "hasLocalDefinition": true, "label": "count", "numAppearsIn": 1.0, @@ -599,7 +599,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000522", + "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" @@ -867,7 +867,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000524", + "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'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.).", @@ -941,7 +941,7 @@ "label": "compiling software", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000008": { - "curie": "APOLLO:SV_00000008", + "curie": "APOLLO_SV:00000008", "hasLocalDefinition": true, "label": "software development", "numAppearsIn": 1.0, @@ -1109,7 +1109,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000796", + "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": [ @@ -20289,7 +20289,7 @@ "label": "data item", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { - "curie": "APOLLO:SV_00000522", + "curie": "APOLLO_SV:00000522", "hasLocalDefinition": true, "label": "source code repository", "numAppearsIn": 1.0, @@ -24297,7 +24297,7 @@ "label": "source code module", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { - "curie": "APOLLO:SV_00000522", + "curie": "APOLLO_SV:00000522", "hasLocalDefinition": true, "label": "source code repository", "numAppearsIn": 1.0, diff --git a/testcases_expected_output_api/v2/ontologies/duo/entities.json b/testcases_expected_output_api/v2/ontologies/duo/entities.json index f8a308c0c..27a4a3d72 100644 --- a/testcases_expected_output_api/v2/ontologies/duo/entities.json +++ b/testcases_expected_output_api/v2/ontologies/duo/entities.json @@ -3,7 +3,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000008", + "curie": "APOLLO_SV:00000008", "definition": "A planned process that has specified output a software product and that involves the creation of source code.", "definitionProperty": "http://purl.obolibrary.org/obo/IAO_0000115", "directAncestor": [ @@ -214,7 +214,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000032", + "curie": "APOLLO_SV:00000032", "definition": "A measurement datum that is the output of counting.", "definitionProperty": "http://purl.obolibrary.org/obo/IAO_0000115", "directAncestor": [ @@ -266,7 +266,7 @@ "label": "count", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000033": { - "curie": "APOLLO:SV_00000033", + "curie": "APOLLO_SV:00000033", "hasLocalDefinition": true, "label": "counting", "numAppearsIn": 1.0, @@ -410,7 +410,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000033", + "curie": "APOLLO_SV:00000033", "definition": "The planned process of finding the number of elements in a finite set of objects.", "definitionProperty": "http://purl.obolibrary.org/obo/IAO_0000115", "directAncestor": [ @@ -464,7 +464,7 @@ "url": "http://en.wikipedia.org/wiki/Counting" }, "http://purl.obolibrary.org/obo/APOLLO_SV_00000032": { - "curie": "APOLLO:SV_00000032", + "curie": "APOLLO_SV:00000032", "hasLocalDefinition": true, "label": "count", "numAppearsIn": 1.0, @@ -599,7 +599,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000522", + "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" @@ -867,7 +867,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000524", + "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'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.).", @@ -941,7 +941,7 @@ "label": "compiling software", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000008": { - "curie": "APOLLO:SV_00000008", + "curie": "APOLLO_SV:00000008", "hasLocalDefinition": true, "label": "software development", "numAppearsIn": 1.0, @@ -1109,7 +1109,7 @@ "appearsIn": [ "duo" ], - "curie": "APOLLO:SV_00000796", + "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": [ @@ -21757,7 +21757,7 @@ "label": "data item", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { - "curie": "APOLLO:SV_00000522", + "curie": "APOLLO_SV:00000522", "hasLocalDefinition": true, "label": "source code repository", "numAppearsIn": 1.0, @@ -25836,7 +25836,7 @@ "label": "source code module", "linkedEntities": { "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { - "curie": "APOLLO:SV_00000522", + "curie": "APOLLO_SV:00000522", "hasLocalDefinition": true, "label": "source code repository", "numAppearsIn": 1.0, @@ -73904,7 +73904,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#created_by": { - "curie": "created:by", + "curie": "created_by", "hasLocalDefinition": true, "label": "created_by", "numAppearsIn": 1.0, @@ -78651,7 +78651,7 @@ "appearsIn": [ "duo" ], - "curie": "created:by", + "curie": "created_by", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -78681,7 +78681,7 @@ "appearsIn": [ "duo" ], - "curie": "creation:date", + "curie": "creation_date", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, diff --git a/testcases_expected_output_api/v2/ontologies/duo/properties.json b/testcases_expected_output_api/v2/ontologies/duo/properties.json index 76b9ac0f3..1b98781a2 100644 --- a/testcases_expected_output_api/v2/ontologies/duo/properties.json +++ b/testcases_expected_output_api/v2/ontologies/duo/properties.json @@ -7781,7 +7781,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#created_by": { - "curie": "created:by", + "curie": "created_by", "hasLocalDefinition": true, "label": "created_by", "numAppearsIn": 1.0, @@ -11227,7 +11227,7 @@ "appearsIn": [ "duo" ], - "curie": "created:by", + "curie": "created_by", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -11257,7 +11257,7 @@ "appearsIn": [ "duo" ], - "curie": "creation:date", + "curie": "creation_date", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, 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 680873023..9f9b93e38 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 @@ -226,7 +226,7 @@ ] }, "http://www.ebi.ac.uk/efo/EFO_URI": { - "curie": "EFO:URI", + "curie": "EFO_URI", "hasLocalDefinition": true, "label": "EFO_URI", "numAppearsIn": 1.0, @@ -380,7 +380,7 @@ ] }, "http://www.ebi.ac.uk/efo/EFO_URI": { - "curie": "EFO:URI", + "curie": "EFO_URI", "hasLocalDefinition": true, "label": "EFO_URI", "numAppearsIn": 1.0, @@ -432,7 +432,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "EFO:URI", + "curie": "EFO_URI", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -5523,7 +5523,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "date:retrieved", + "curie": "date_retrieved", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -5553,7 +5553,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "depicted:by", + "curie": "depicted_by", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -5583,7 +5583,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "external:class", + "curie": "external_class", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -5613,7 +5613,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "external:ontology", + "curie": "external_ontology", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, 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 e4e0c784a..b93d6e85e 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 @@ -226,7 +226,7 @@ ] }, "http://www.ebi.ac.uk/efo/EFO_URI": { - "curie": "EFO:URI", + "curie": "EFO_URI", "hasLocalDefinition": true, "label": "EFO_URI", "numAppearsIn": 1.0, @@ -380,7 +380,7 @@ ] }, "http://www.ebi.ac.uk/efo/EFO_URI": { - "curie": "EFO:URI", + "curie": "EFO_URI", "hasLocalDefinition": true, "label": "EFO_URI", "numAppearsIn": 1.0, @@ -432,7 +432,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "EFO:URI", + "curie": "EFO_URI", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -1002,7 +1002,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "date:retrieved", + "curie": "date_retrieved", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -1032,7 +1032,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "depicted:by", + "curie": "depicted_by", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -1062,7 +1062,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "external:class", + "curie": "external_class", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -1092,7 +1092,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "curie": "external:ontology", + "curie": "external_ontology", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, diff --git a/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json b/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json index 1275a33c7..1298ddd22 100644 --- a/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json +++ b/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -205,7 +205,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -218,7 +218,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -313,7 +313,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -326,7 +326,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -398,7 +398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -411,7 +411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -525,7 +525,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -538,7 +538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -661,7 +661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -674,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -772,7 +772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -785,7 +785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -864,7 +864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -877,7 +877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -991,7 +991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1004,7 +1004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1125,7 +1125,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1138,7 +1138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1277,7 +1277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1290,7 +1290,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1411,7 +1411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1424,7 +1424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1601,7 +1601,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1614,7 +1614,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1772,7 +1772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1785,7 +1785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1973,7 +1973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1986,7 +1986,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2145,7 +2145,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2158,7 +2158,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2335,7 +2335,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2348,7 +2348,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2519,7 +2519,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2532,7 +2532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2692,7 +2692,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2705,7 +2705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3053,7 +3053,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3066,7 +3066,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3291,7 +3291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3304,7 +3304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3527,7 +3527,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3540,7 +3540,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3845,7 +3845,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3858,7 +3858,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4052,7 +4052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4065,7 +4065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4177,7 +4177,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4190,7 +4190,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4346,7 +4346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4359,7 +4359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4579,7 +4579,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4592,7 +4592,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4846,7 +4846,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4859,7 +4859,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -5124,7 +5124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5137,7 +5137,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -5424,7 +5424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5437,7 +5437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -5769,7 +5769,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5782,7 +5782,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6191,7 +6191,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6204,7 +6204,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6403,7 +6403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6416,7 +6416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6503,7 +6503,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6516,7 +6516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6576,7 +6576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6589,7 +6589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6835,7 +6835,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6848,7 +6848,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7130,7 +7130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7143,7 +7143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7219,7 +7219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7318,7 +7318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7331,7 +7331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7431,7 +7431,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7444,7 +7444,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7551,7 +7551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7564,7 +7564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7839,7 +7839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7852,7 +7852,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8052,7 +8052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8065,7 +8065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8269,7 +8269,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8282,7 +8282,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8443,7 +8443,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8456,7 +8456,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8688,7 +8688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8701,7 +8701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8970,7 +8970,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8983,7 +8983,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9163,7 +9163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9176,7 +9176,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9330,7 +9330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9343,7 +9343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9475,7 +9475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9488,7 +9488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9620,7 +9620,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9633,7 +9633,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9730,7 +9730,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9917,7 +9917,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9930,7 +9930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10093,7 +10093,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10106,7 +10106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10292,7 +10292,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10305,7 +10305,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10514,7 +10514,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10527,7 +10527,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10673,7 +10673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10686,7 +10686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10795,7 +10795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10808,7 +10808,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10964,7 +10964,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10977,7 +10977,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11058,7 +11058,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11071,7 +11071,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11170,7 +11170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11183,7 +11183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11227,7 +11227,7 @@ "label": "kinase activity", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11447,7 +11447,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11460,7 +11460,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11690,7 +11690,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11703,7 +11703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11856,7 +11856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11869,7 +11869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12171,7 +12171,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12184,7 +12184,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12357,7 +12357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12370,7 +12370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12501,7 +12501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12514,7 +12514,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12772,7 +12772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12785,7 +12785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12856,7 +12856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12869,7 +12869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12966,7 +12966,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12979,7 +12979,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13039,7 +13039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13052,7 +13052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13157,7 +13157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13170,7 +13170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13312,7 +13312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13325,7 +13325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13481,7 +13481,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13494,7 +13494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13660,7 +13660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13673,7 +13673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13882,7 +13882,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13895,7 +13895,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14092,7 +14092,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14105,7 +14105,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14291,7 +14291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14304,7 +14304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14391,7 +14391,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14610,7 +14610,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14623,7 +14623,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14762,7 +14762,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14775,7 +14775,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14943,7 +14943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14956,7 +14956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15032,7 +15032,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15325,7 +15325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15338,7 +15338,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15470,7 +15470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15483,7 +15483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15804,7 +15804,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15817,7 +15817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16028,7 +16028,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16041,7 +16041,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16172,7 +16172,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16185,7 +16185,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16396,7 +16396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16409,7 +16409,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16584,7 +16584,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16597,7 +16597,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16750,7 +16750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16763,7 +16763,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16928,7 +16928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16941,7 +16941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17106,7 +17106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17119,7 +17119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17227,7 +17227,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17240,7 +17240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17346,7 +17346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17359,7 +17359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17487,7 +17487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17500,7 +17500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17620,7 +17620,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17633,7 +17633,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17704,7 +17704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17717,7 +17717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17777,7 +17777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17790,7 +17790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17866,7 +17866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17879,7 +17879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17955,7 +17955,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17968,7 +17968,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18086,7 +18086,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18099,7 +18099,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18231,7 +18231,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18244,7 +18244,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18365,7 +18365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18378,7 +18378,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18609,7 +18609,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18622,7 +18622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18693,7 +18693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18706,7 +18706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18782,7 +18782,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18795,7 +18795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19060,7 +19060,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19073,7 +19073,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19156,7 +19156,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19169,7 +19169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19340,7 +19340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19353,7 +19353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19518,7 +19518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19531,7 +19531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19690,7 +19690,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19703,7 +19703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19824,7 +19824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19837,7 +19837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19897,7 +19897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19910,7 +19910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19989,7 +19989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20424,7 +20424,7 @@ "url": "http://purl.obolibrary.org/obo/NCIT_C2991" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -20438,7 +20438,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -20479,7 +20479,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_377788" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20492,7 +20492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -20505,7 +20505,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -21015,7 +21015,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -21029,7 +21029,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -21065,7 +21065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -21078,7 +21078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -21091,7 +21091,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -21554,7 +21554,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -21568,7 +21568,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -21593,7 +21593,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -21618,7 +21618,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -21631,7 +21631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -21644,7 +21644,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -22239,7 +22239,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -22253,7 +22253,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -22289,7 +22289,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -22302,7 +22302,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -22315,7 +22315,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -22895,7 +22895,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -22909,7 +22909,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -22923,7 +22923,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -22937,7 +22937,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -22973,7 +22973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -22986,7 +22986,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -22999,7 +22999,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -23485,7 +23485,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -23496,7 +23496,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -23510,7 +23510,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -23546,7 +23546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -23559,7 +23559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -23572,7 +23572,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -24113,7 +24113,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": { - "curie": "OIO:hasBroadSynonym", + "curie": "OIO_hasBroadSynonym", "definedBy": [ "oio" ], @@ -24127,7 +24127,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -24141,7 +24141,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -24155,7 +24155,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -24169,7 +24169,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -24194,7 +24194,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -24219,7 +24219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -24232,7 +24232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -24245,7 +24245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -24258,7 +24258,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -24700,7 +24700,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -24736,7 +24736,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -24749,7 +24749,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -24762,7 +24762,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -25225,7 +25225,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -25239,7 +25239,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -25264,7 +25264,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -25289,7 +25289,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -25302,7 +25302,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -25315,7 +25315,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -25986,7 +25986,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -26000,7 +26000,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -26025,7 +26025,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -26050,7 +26050,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -26063,7 +26063,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -26076,7 +26076,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -26089,7 +26089,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -26632,7 +26632,7 @@ "url": "http://purl.obolibrary.org/obo/NCIT_C26836" }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -26643,7 +26643,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -26657,7 +26657,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -26671,7 +26671,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -26696,7 +26696,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -26721,7 +26721,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -26734,7 +26734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -26747,7 +26747,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -27310,7 +27310,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -27332,7 +27332,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -27346,7 +27346,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -27371,7 +27371,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -27396,7 +27396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -27409,7 +27409,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -27422,7 +27422,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -28646,7 +28646,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -28660,7 +28660,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -28674,7 +28674,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -28688,7 +28688,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -28713,7 +28713,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -28743,7 +28743,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_739" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -28756,7 +28756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -28769,7 +28769,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -28782,7 +28782,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "SKOS:closeMatch", + "curie": "SKOS_closeMatch", "definedBy": [ "skos" ], @@ -28796,7 +28796,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -29440,7 +29440,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -29454,7 +29454,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -29479,7 +29479,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -29504,7 +29504,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -29517,7 +29517,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -29530,7 +29530,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -29543,7 +29543,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -29860,7 +29860,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -29871,7 +29871,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -29896,7 +29896,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -29926,7 +29926,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_101957" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -29939,7 +29939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -29952,7 +29952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -29965,7 +29965,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -30244,7 +30244,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -30258,7 +30258,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -30283,7 +30283,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -30308,7 +30308,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -30321,7 +30321,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -30628,7 +30628,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -30653,7 +30653,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -30683,7 +30683,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_139024" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -30696,7 +30696,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -30709,7 +30709,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -30722,7 +30722,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -31058,7 +31058,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -31072,7 +31072,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -31097,7 +31097,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -31127,7 +31127,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_156643" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -31140,7 +31140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -31153,7 +31153,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -31742,7 +31742,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -31767,7 +31767,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -31797,7 +31797,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_174590" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -31810,7 +31810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -31823,7 +31823,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -32097,7 +32097,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -32122,7 +32122,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -32152,7 +32152,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_180208" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -32165,7 +32165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -32178,7 +32178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -32191,7 +32191,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -32584,7 +32584,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -32598,7 +32598,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -32623,7 +32623,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -32653,7 +32653,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_202940" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -32666,7 +32666,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -32679,7 +32679,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -32692,7 +32692,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -33216,7 +33216,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -33230,7 +33230,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -33255,7 +33255,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -33285,7 +33285,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_240371" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -33298,7 +33298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -33311,7 +33311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -33324,7 +33324,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -34020,7 +34020,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#should_conform_to": { - "curie": "should:conform_to", + "curie": "should_conform_to", "hasLocalDefinition": true, "label": "should_conform_to", "numAppearsIn": 1.0, @@ -34031,7 +34031,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -34045,7 +34045,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -34059,7 +34059,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -34073,7 +34073,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -34098,7 +34098,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -34128,7 +34128,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_432" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -34141,7 +34141,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -34154,7 +34154,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -34931,7 +34931,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -34942,7 +34942,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -34956,7 +34956,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -34970,7 +34970,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -34995,7 +34995,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -35025,7 +35025,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68335" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -35038,7 +35038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -35051,7 +35051,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -35565,7 +35565,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -35579,7 +35579,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -35593,7 +35593,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -35618,7 +35618,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -35648,7 +35648,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68341" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -35661,7 +35661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -35674,7 +35674,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -36286,7 +36286,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -36308,7 +36308,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -36322,7 +36322,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -36347,7 +36347,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -36377,7 +36377,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_77828" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -36390,7 +36390,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -36403,7 +36403,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -36944,7 +36944,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -36958,7 +36958,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -36983,7 +36983,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -37013,7 +37013,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_93890" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -37026,7 +37026,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -37039,7 +37039,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -37410,7 +37410,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -37435,7 +37435,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -37465,7 +37465,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_95488" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -37478,7 +37478,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -37491,7 +37491,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -37669,7 +37669,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -37683,7 +37683,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -37719,7 +37719,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -37732,7 +37732,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -37745,7 +37745,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -37914,7 +37914,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -37939,7 +37939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -37952,7 +37952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -38129,7 +38129,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -38154,7 +38154,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -38167,7 +38167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -38309,7 +38309,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -38322,7 +38322,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -38530,7 +38530,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -38544,7 +38544,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -38569,7 +38569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -38582,7 +38582,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -38749,7 +38749,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -38762,7 +38762,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -38991,7 +38991,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -39005,7 +39005,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -39041,7 +39041,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39054,7 +39054,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39347,7 +39347,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -39372,7 +39372,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -39397,7 +39397,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39410,7 +39410,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39423,7 +39423,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -39564,7 +39564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39577,7 +39577,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39777,7 +39777,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -39791,7 +39791,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -39827,7 +39827,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39840,7 +39840,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -40128,7 +40128,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -40161,7 +40161,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -40175,7 +40175,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -40211,7 +40211,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -40224,7 +40224,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -40562,7 +40562,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -40598,7 +40598,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -40611,7 +40611,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -40970,7 +40970,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -41006,7 +41006,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41019,7 +41019,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41032,7 +41032,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -41282,7 +41282,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -41296,7 +41296,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -41321,7 +41321,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -41346,7 +41346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41359,7 +41359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41530,7 +41530,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41543,7 +41543,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41703,7 +41703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41716,7 +41716,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41900,7 +41900,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41913,7 +41913,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -42109,7 +42109,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42122,7 +42122,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -42246,7 +42246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42259,7 +42259,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -42324,7 +42324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42555,7 +42555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42568,7 +42568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -42860,7 +42860,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42873,7 +42873,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43021,7 +43021,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43034,7 +43034,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43422,7 +43422,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43435,7 +43435,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43516,7 +43516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43529,7 +43529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43844,7 +43844,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43857,7 +43857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -44197,7 +44197,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -44210,7 +44210,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -44574,7 +44574,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -44587,7 +44587,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -44819,7 +44819,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -44832,7 +44832,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45076,7 +45076,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45089,7 +45089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45357,7 +45357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45370,7 +45370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45446,7 +45446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45459,7 +45459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45568,7 +45568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45581,7 +45581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45704,7 +45704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45717,7 +45717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45841,7 +45841,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45854,7 +45854,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46182,7 +46182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46195,7 +46195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46451,7 +46451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46464,7 +46464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46564,7 +46564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46577,7 +46577,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46748,7 +46748,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46761,7 +46761,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46965,7 +46965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46978,7 +46978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47138,7 +47138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47151,7 +47151,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47323,7 +47323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47336,7 +47336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47544,7 +47544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47557,7 +47557,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47705,7 +47705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47718,7 +47718,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47998,7 +47998,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48011,7 +48011,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -48327,7 +48327,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48340,7 +48340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -48692,7 +48692,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48705,7 +48705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -49081,7 +49081,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -49094,7 +49094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -49494,7 +49494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -49507,7 +49507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -49940,7 +49940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -49953,7 +49953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50078,7 +50078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50091,7 +50091,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50170,7 +50170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50183,7 +50183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50283,7 +50283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50296,7 +50296,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50408,7 +50408,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50421,7 +50421,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50521,7 +50521,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50534,7 +50534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50622,7 +50622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50635,7 +50635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50747,7 +50747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50760,7 +50760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50905,7 +50905,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50918,7 +50918,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51029,7 +51029,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51042,7 +51042,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51175,7 +51175,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51188,7 +51188,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51344,7 +51344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51357,7 +51357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51475,7 +51475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51488,7 +51488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51707,7 +51707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51720,7 +51720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -52083,7 +52083,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52096,7 +52096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -52401,7 +52401,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52414,7 +52414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -52812,7 +52812,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52825,7 +52825,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -53221,7 +53221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53234,7 +53234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -53511,7 +53511,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53524,7 +53524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -53814,7 +53814,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53827,7 +53827,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -54098,7 +54098,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54111,7 +54111,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -54327,7 +54327,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54340,7 +54340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -54604,7 +54604,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54617,7 +54617,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -54866,7 +54866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54879,7 +54879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -55161,7 +55161,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55174,7 +55174,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -55466,7 +55466,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55479,7 +55479,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -55775,7 +55775,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55788,7 +55788,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -56120,7 +56120,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56133,7 +56133,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -56324,7 +56324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56337,7 +56337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -56482,7 +56482,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56495,7 +56495,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -56737,7 +56737,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56750,7 +56750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -57010,7 +57010,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57023,7 +57023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -57306,7 +57306,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57319,7 +57319,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -57576,7 +57576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57589,7 +57589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -57935,7 +57935,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57948,7 +57948,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -58333,7 +58333,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58346,7 +58346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -58791,7 +58791,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58804,7 +58804,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -59303,7 +59303,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59316,7 +59316,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -59631,7 +59631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59644,7 +59644,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -59767,7 +59767,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59780,7 +59780,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -59992,7 +59992,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60005,7 +60005,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -60324,7 +60324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60337,7 +60337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -60646,7 +60646,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60659,7 +60659,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -60874,7 +60874,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60887,7 +60887,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -61167,7 +61167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61180,7 +61180,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -61417,7 +61417,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61430,7 +61430,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -61618,7 +61618,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61631,7 +61631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -61915,7 +61915,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61928,7 +61928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -62216,7 +62216,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62229,7 +62229,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -62400,7 +62400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62413,7 +62413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -62640,7 +62640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62653,7 +62653,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -62789,7 +62789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62802,7 +62802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -62926,7 +62926,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62939,7 +62939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -63104,7 +63104,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63117,7 +63117,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -63440,7 +63440,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63453,7 +63453,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -63734,7 +63734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63747,7 +63747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS: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 79f0e560b..09947fb6f 100644 --- a/testcases_expected_output_api/v2/ontologies/gitissue502/entities.json +++ b/testcases_expected_output_api/v2/ontologies/gitissue502/entities.json @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -205,7 +205,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -218,7 +218,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -313,7 +313,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -326,7 +326,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -398,7 +398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -411,7 +411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -525,7 +525,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -538,7 +538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -661,7 +661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -674,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -772,7 +772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -785,7 +785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -864,7 +864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -877,7 +877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -991,7 +991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1004,7 +1004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1125,7 +1125,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1138,7 +1138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1277,7 +1277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1290,7 +1290,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1399,7 +1399,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1412,7 +1412,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1522,7 +1522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1535,7 +1535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1682,7 +1682,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1695,7 +1695,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1708,7 +1708,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1721,7 +1721,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1840,7 +1840,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1853,7 +1853,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1866,7 +1866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1879,7 +1879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1996,7 +1996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2009,7 +2009,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2022,7 +2022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2096,7 +2096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2215,7 +2215,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2228,7 +2228,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2405,7 +2405,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2418,7 +2418,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2576,7 +2576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2589,7 +2589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2777,7 +2777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2790,7 +2790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2949,7 +2949,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2962,7 +2962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3139,7 +3139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3152,7 +3152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3323,7 +3323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3336,7 +3336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3496,7 +3496,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3509,7 +3509,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3857,7 +3857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3870,7 +3870,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4095,7 +4095,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4108,7 +4108,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4331,7 +4331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4344,7 +4344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4649,7 +4649,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4662,7 +4662,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4856,7 +4856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4869,7 +4869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -4981,7 +4981,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4994,7 +4994,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -5150,7 +5150,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5163,7 +5163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -5383,7 +5383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5396,7 +5396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -5650,7 +5650,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5663,7 +5663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -5928,7 +5928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5941,7 +5941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6228,7 +6228,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6241,7 +6241,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6573,7 +6573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6586,7 +6586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6995,7 +6995,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7008,7 +7008,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7207,7 +7207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7220,7 +7220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7307,7 +7307,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7320,7 +7320,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7380,7 +7380,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7393,7 +7393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7639,7 +7639,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7652,7 +7652,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -7934,7 +7934,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7947,7 +7947,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8023,7 +8023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8122,7 +8122,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8135,7 +8135,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8235,7 +8235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8248,7 +8248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8355,7 +8355,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8368,7 +8368,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8643,7 +8643,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8656,7 +8656,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8856,7 +8856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8869,7 +8869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9073,7 +9073,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9086,7 +9086,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9247,7 +9247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9260,7 +9260,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9492,7 +9492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9505,7 +9505,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9774,7 +9774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9787,7 +9787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9967,7 +9967,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9980,7 +9980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10134,7 +10134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10147,7 +10147,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10279,7 +10279,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10292,7 +10292,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10424,7 +10424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10437,7 +10437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10534,7 +10534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10721,7 +10721,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10734,7 +10734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -10897,7 +10897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10910,7 +10910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11096,7 +11096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11109,7 +11109,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11318,7 +11318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11331,7 +11331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11477,7 +11477,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11490,7 +11490,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11599,7 +11599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11612,7 +11612,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11768,7 +11768,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11781,7 +11781,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11862,7 +11862,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11875,7 +11875,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -11974,7 +11974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11987,7 +11987,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12031,7 +12031,7 @@ "label": "kinase activity", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12251,7 +12251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12264,7 +12264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12494,7 +12494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12507,7 +12507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12660,7 +12660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12673,7 +12673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -12975,7 +12975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12988,7 +12988,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13161,7 +13161,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13174,7 +13174,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13305,7 +13305,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13318,7 +13318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13576,7 +13576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13589,7 +13589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13660,7 +13660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13673,7 +13673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13770,7 +13770,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13783,7 +13783,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13843,7 +13843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13856,7 +13856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -13961,7 +13961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13974,7 +13974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14116,7 +14116,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14129,7 +14129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14285,7 +14285,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14298,7 +14298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14464,7 +14464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14477,7 +14477,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14686,7 +14686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14699,7 +14699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -14896,7 +14896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14909,7 +14909,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15095,7 +15095,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15108,7 +15108,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15195,7 +15195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15414,7 +15414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15427,7 +15427,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15566,7 +15566,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15579,7 +15579,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15747,7 +15747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15760,7 +15760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -15836,7 +15836,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16129,7 +16129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16142,7 +16142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16274,7 +16274,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16287,7 +16287,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16608,7 +16608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16621,7 +16621,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16832,7 +16832,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16845,7 +16845,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -16976,7 +16976,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16989,7 +16989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17200,7 +17200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17213,7 +17213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17388,7 +17388,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17401,7 +17401,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17554,7 +17554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17567,7 +17567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17732,7 +17732,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17745,7 +17745,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -17910,7 +17910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17923,7 +17923,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18031,7 +18031,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18044,7 +18044,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18150,7 +18150,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18163,7 +18163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18291,7 +18291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18304,7 +18304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18424,7 +18424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18437,7 +18437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18508,7 +18508,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18521,7 +18521,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18581,7 +18581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18594,7 +18594,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18670,7 +18670,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18683,7 +18683,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18759,7 +18759,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18772,7 +18772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -18890,7 +18890,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18903,7 +18903,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19035,7 +19035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19048,7 +19048,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19169,7 +19169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19182,7 +19182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19413,7 +19413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19426,7 +19426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19497,7 +19497,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19510,7 +19510,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19586,7 +19586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19599,7 +19599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19864,7 +19864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19877,7 +19877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -19960,7 +19960,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19973,7 +19973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -20144,7 +20144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20157,7 +20157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -20322,7 +20322,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20335,7 +20335,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -20494,7 +20494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20507,7 +20507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -20628,7 +20628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20641,7 +20641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -20701,7 +20701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20714,7 +20714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -20793,7 +20793,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -21348,7 +21348,7 @@ "url": "http://purl.obolibrary.org/obo/NCIT_C2991" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -21362,7 +21362,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -21403,7 +21403,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_377788" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -21416,7 +21416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -21429,7 +21429,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -21939,7 +21939,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -21953,7 +21953,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -21989,7 +21989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -22002,7 +22002,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -22015,7 +22015,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -22478,7 +22478,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -22492,7 +22492,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -22517,7 +22517,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -22542,7 +22542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -22555,7 +22555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -22568,7 +22568,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -23163,7 +23163,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -23177,7 +23177,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -23213,7 +23213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -23226,7 +23226,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -23239,7 +23239,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -23819,7 +23819,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -23833,7 +23833,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -23847,7 +23847,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -23861,7 +23861,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -23897,7 +23897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -23910,7 +23910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -23923,7 +23923,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -24409,7 +24409,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -24420,7 +24420,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -24434,7 +24434,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -24470,7 +24470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -24483,7 +24483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -24496,7 +24496,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -25037,7 +25037,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": { - "curie": "OIO:hasBroadSynonym", + "curie": "OIO_hasBroadSynonym", "definedBy": [ "oio" ], @@ -25051,7 +25051,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -25065,7 +25065,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -25079,7 +25079,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -25093,7 +25093,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -25118,7 +25118,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -25143,7 +25143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -25156,7 +25156,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -25169,7 +25169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -25182,7 +25182,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -25624,7 +25624,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -25660,7 +25660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -25673,7 +25673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -25686,7 +25686,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -26149,7 +26149,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -26163,7 +26163,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -26188,7 +26188,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -26213,7 +26213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -26226,7 +26226,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -26239,7 +26239,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -26910,7 +26910,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -26924,7 +26924,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -26949,7 +26949,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -26974,7 +26974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -26987,7 +26987,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -27000,7 +27000,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -27013,7 +27013,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -27556,7 +27556,7 @@ "url": "http://purl.obolibrary.org/obo/NCIT_C26836" }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -27567,7 +27567,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -27581,7 +27581,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -27595,7 +27595,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -27620,7 +27620,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -27645,7 +27645,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -27658,7 +27658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -27671,7 +27671,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -28234,7 +28234,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -28256,7 +28256,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -28270,7 +28270,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -28295,7 +28295,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -28320,7 +28320,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -28333,7 +28333,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -28346,7 +28346,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -29570,7 +29570,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -29584,7 +29584,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -29598,7 +29598,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -29612,7 +29612,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -29637,7 +29637,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -29667,7 +29667,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_739" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -29680,7 +29680,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -29693,7 +29693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -29706,7 +29706,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "SKOS:closeMatch", + "curie": "SKOS_closeMatch", "definedBy": [ "skos" ], @@ -29720,7 +29720,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -30364,7 +30364,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -30378,7 +30378,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -30403,7 +30403,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -30428,7 +30428,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -30441,7 +30441,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -30454,7 +30454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -30467,7 +30467,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -30784,7 +30784,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -30795,7 +30795,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -30820,7 +30820,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -30850,7 +30850,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_101957" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -30863,7 +30863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -30876,7 +30876,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -30889,7 +30889,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -31168,7 +31168,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -31182,7 +31182,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -31207,7 +31207,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -31232,7 +31232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -31245,7 +31245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -31552,7 +31552,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -31577,7 +31577,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -31607,7 +31607,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_139024" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -31620,7 +31620,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -31633,7 +31633,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -31646,7 +31646,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -31982,7 +31982,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -31996,7 +31996,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -32021,7 +32021,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -32051,7 +32051,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_156643" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -32064,7 +32064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -32077,7 +32077,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -32666,7 +32666,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -32691,7 +32691,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -32721,7 +32721,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_174590" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -32734,7 +32734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -32747,7 +32747,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -33021,7 +33021,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -33046,7 +33046,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -33076,7 +33076,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_180208" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -33089,7 +33089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -33102,7 +33102,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -33115,7 +33115,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -33508,7 +33508,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -33522,7 +33522,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -33547,7 +33547,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -33577,7 +33577,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_202940" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -33590,7 +33590,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -33603,7 +33603,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -33616,7 +33616,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -34140,7 +34140,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -34154,7 +34154,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -34179,7 +34179,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -34209,7 +34209,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_240371" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -34222,7 +34222,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -34235,7 +34235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -34248,7 +34248,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -34944,7 +34944,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#should_conform_to": { - "curie": "should:conform_to", + "curie": "should_conform_to", "hasLocalDefinition": true, "label": "should_conform_to", "numAppearsIn": 1.0, @@ -34955,7 +34955,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -34969,7 +34969,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -34983,7 +34983,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -34997,7 +34997,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -35022,7 +35022,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -35052,7 +35052,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_432" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -35065,7 +35065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -35078,7 +35078,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -35855,7 +35855,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -35866,7 +35866,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -35880,7 +35880,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -35894,7 +35894,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -35919,7 +35919,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -35949,7 +35949,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68335" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -35962,7 +35962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -35975,7 +35975,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -36489,7 +36489,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -36503,7 +36503,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -36517,7 +36517,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -36542,7 +36542,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -36572,7 +36572,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68341" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -36585,7 +36585,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -36598,7 +36598,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -37210,7 +37210,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -37232,7 +37232,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -37246,7 +37246,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -37271,7 +37271,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -37301,7 +37301,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_77828" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -37314,7 +37314,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -37327,7 +37327,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -37868,7 +37868,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -37882,7 +37882,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -37907,7 +37907,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -37937,7 +37937,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_93890" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -37950,7 +37950,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -37963,7 +37963,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -38334,7 +38334,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -38359,7 +38359,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -38389,7 +38389,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_95488" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -38402,7 +38402,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -38415,7 +38415,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -38593,7 +38593,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -38607,7 +38607,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -38643,7 +38643,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -38656,7 +38656,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -38669,7 +38669,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -38838,7 +38838,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -38863,7 +38863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -38876,7 +38876,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39053,7 +39053,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -39078,7 +39078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39091,7 +39091,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39233,7 +39233,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39246,7 +39246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39454,7 +39454,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -39468,7 +39468,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -39493,7 +39493,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39506,7 +39506,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39673,7 +39673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39686,7 +39686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -39915,7 +39915,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -39929,7 +39929,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -39965,7 +39965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -39978,7 +39978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -40271,7 +40271,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -40296,7 +40296,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -40321,7 +40321,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -40334,7 +40334,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -40347,7 +40347,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -40488,7 +40488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -40501,7 +40501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -40701,7 +40701,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -40715,7 +40715,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -40751,7 +40751,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -40764,7 +40764,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41052,7 +41052,7 @@ ] }, "http://purl.obolibrary.org/obo/mondo#excluded_subClassOf": { - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasLocalDefinition": true, "label": "excluded_subClassOf", "numAppearsIn": 1.0, @@ -41085,7 +41085,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -41099,7 +41099,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -41135,7 +41135,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41148,7 +41148,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41486,7 +41486,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -41522,7 +41522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41535,7 +41535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41894,7 +41894,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -41930,7 +41930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -41943,7 +41943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -41956,7 +41956,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], @@ -42206,7 +42206,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -42220,7 +42220,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -42245,7 +42245,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -42270,7 +42270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42283,7 +42283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -42454,7 +42454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42467,7 +42467,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -42627,7 +42627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42640,7 +42640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -42824,7 +42824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -42837,7 +42837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43033,7 +43033,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43046,7 +43046,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43170,7 +43170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43183,7 +43183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43248,7 +43248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43479,7 +43479,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43492,7 +43492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43784,7 +43784,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43797,7 +43797,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -43945,7 +43945,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -43958,7 +43958,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -44346,7 +44346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -44359,7 +44359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -44440,7 +44440,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -44453,7 +44453,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -44768,7 +44768,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -44781,7 +44781,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45121,7 +45121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45134,7 +45134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45498,7 +45498,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45511,7 +45511,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -45743,7 +45743,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -45756,7 +45756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46000,7 +46000,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46013,7 +46013,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46281,7 +46281,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46294,7 +46294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46370,7 +46370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46383,7 +46383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46492,7 +46492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46505,7 +46505,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46628,7 +46628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46641,7 +46641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -46765,7 +46765,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -46778,7 +46778,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47106,7 +47106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47119,7 +47119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47375,7 +47375,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47388,7 +47388,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47488,7 +47488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47501,7 +47501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47672,7 +47672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47685,7 +47685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -47889,7 +47889,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -47902,7 +47902,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -48062,7 +48062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48075,7 +48075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -48247,7 +48247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48260,7 +48260,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -48468,7 +48468,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48481,7 +48481,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -48629,7 +48629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48642,7 +48642,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -48922,7 +48922,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -48935,7 +48935,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -49251,7 +49251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -49264,7 +49264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -49616,7 +49616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -49629,7 +49629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50005,7 +50005,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50018,7 +50018,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50418,7 +50418,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50431,7 +50431,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -50864,7 +50864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -50877,7 +50877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51002,7 +51002,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51015,7 +51015,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51094,7 +51094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51107,7 +51107,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51207,7 +51207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51220,7 +51220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51332,7 +51332,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51345,7 +51345,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51445,7 +51445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51458,7 +51458,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51546,7 +51546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51559,7 +51559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51671,7 +51671,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51684,7 +51684,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51829,7 +51829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51842,7 +51842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -51953,7 +51953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -51966,7 +51966,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -52099,7 +52099,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52112,7 +52112,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -52268,7 +52268,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52281,7 +52281,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -52367,7 +52367,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52479,7 +52479,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -52515,7 +52515,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52528,7 +52528,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -52625,7 +52625,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -52638,7 +52638,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52651,7 +52651,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -52774,7 +52774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -52787,7 +52787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52800,7 +52800,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -52912,7 +52912,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -52925,7 +52925,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -52938,7 +52938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53039,7 +53039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53052,7 +53052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53153,7 +53153,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53166,7 +53166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53291,7 +53291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -53304,7 +53304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53317,7 +53317,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -53330,7 +53330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53444,7 +53444,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53457,7 +53457,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -53470,7 +53470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53595,7 +53595,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -53608,7 +53608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53621,7 +53621,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -53634,7 +53634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53747,7 +53747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -53760,7 +53760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53773,7 +53773,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -53786,7 +53786,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53874,7 +53874,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -53887,7 +53887,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -53975,7 +53975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54088,7 +54088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -54101,7 +54101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54114,7 +54114,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -54284,7 +54284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54297,7 +54297,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -54488,7 +54488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54501,7 +54501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -54692,7 +54692,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54705,7 +54705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -54804,7 +54804,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54817,7 +54817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -54928,7 +54928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -54941,7 +54941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54954,7 +54954,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -54967,7 +54967,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55066,7 +55066,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55079,7 +55079,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55188,7 +55188,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55201,7 +55201,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55310,7 +55310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55323,7 +55323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55435,7 +55435,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55448,7 +55448,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55507,7 +55507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55520,7 +55520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55611,7 +55611,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55624,7 +55624,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55688,7 +55688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55701,7 +55701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55824,7 +55824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55837,7 +55837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -55948,7 +55948,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -55961,7 +55961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -56059,7 +56059,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56146,7 +56146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56159,7 +56159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -56320,7 +56320,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -56356,7 +56356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56487,7 +56487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56500,7 +56500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -56602,7 +56602,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -56615,7 +56615,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56628,7 +56628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -56641,7 +56641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -56777,7 +56777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56790,7 +56790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -56930,7 +56930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -56943,7 +56943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -56956,7 +56956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -56969,7 +56969,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -57106,7 +57106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57119,7 +57119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -57318,7 +57318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -57331,7 +57331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57344,7 +57344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -57357,7 +57357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -57551,7 +57551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57564,7 +57564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -57778,7 +57778,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57791,7 +57791,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -57914,7 +57914,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -57927,7 +57927,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -57940,7 +57940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -57953,7 +57953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -58042,7 +58042,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58055,7 +58055,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -58114,7 +58114,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -58127,7 +58127,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58140,7 +58140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -58257,7 +58257,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58270,7 +58270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -58392,7 +58392,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58405,7 +58405,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -58520,7 +58520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58533,7 +58533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -58652,7 +58652,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58665,7 +58665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -58787,7 +58787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58800,7 +58800,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -58923,7 +58923,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -58936,7 +58936,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -58949,7 +58949,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -58962,7 +58962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -59085,7 +59085,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -59098,7 +59098,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59111,7 +59111,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -59124,7 +59124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -59237,7 +59237,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -59250,7 +59250,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59263,7 +59263,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -59388,7 +59388,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -59401,7 +59401,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59414,7 +59414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -59427,7 +59427,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -59573,7 +59573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59586,7 +59586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -59688,7 +59688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -59701,7 +59701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59714,7 +59714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -59841,7 +59841,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59854,7 +59854,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -59969,7 +59969,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -59982,7 +59982,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -60069,7 +60069,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60082,7 +60082,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -60183,7 +60183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60196,7 +60196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -60337,7 +60337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60350,7 +60350,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -60493,7 +60493,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60506,7 +60506,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -60663,7 +60663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60676,7 +60676,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -60839,7 +60839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60852,7 +60852,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -60939,7 +60939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60952,7 +60952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61068,7 +61068,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -61081,7 +61081,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61094,7 +61094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -61107,7 +61107,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61220,7 +61220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61233,7 +61233,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61346,7 +61346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61359,7 +61359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61446,7 +61446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61459,7 +61459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61532,7 +61532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -61545,7 +61545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61558,7 +61558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -61634,7 +61634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61647,7 +61647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61723,7 +61723,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61736,7 +61736,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61826,7 +61826,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61839,7 +61839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -61983,7 +61983,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -61996,7 +61996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -62149,7 +62149,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62162,7 +62162,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -62406,7 +62406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62419,7 +62419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -62650,7 +62650,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62663,7 +62663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -62797,7 +62797,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62810,7 +62810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -62965,7 +62965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -62978,7 +62978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -63080,7 +63080,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63093,7 +63093,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -63183,7 +63183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63196,7 +63196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -63370,7 +63370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63383,7 +63383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -63563,7 +63563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63576,7 +63576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -63756,7 +63756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63769,7 +63769,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -63888,7 +63888,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -63901,7 +63901,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -63992,7 +63992,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -64005,7 +64005,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -64018,7 +64018,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -64096,7 +64096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -64109,7 +64109,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -64196,7 +64196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -64209,7 +64209,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -64390,7 +64390,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -64403,7 +64403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -64416,7 +64416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -64429,7 +64429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -64616,7 +64616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -64629,7 +64629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -64642,7 +64642,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -64655,7 +64655,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -64842,7 +64842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -64855,7 +64855,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -64868,7 +64868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -64881,7 +64881,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -64982,7 +64982,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -64995,7 +64995,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65008,7 +65008,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -65021,7 +65021,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -65104,7 +65104,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -65117,7 +65117,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65130,7 +65130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -65199,7 +65199,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -65212,7 +65212,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65225,7 +65225,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -65345,7 +65345,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65358,7 +65358,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -65471,7 +65471,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65484,7 +65484,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -65559,7 +65559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65572,7 +65572,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -65694,7 +65694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65707,7 +65707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -65820,7 +65820,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65833,7 +65833,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -65925,7 +65925,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -65938,7 +65938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -66057,7 +66057,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66070,7 +66070,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -66211,7 +66211,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66224,7 +66224,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -66365,7 +66365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66378,7 +66378,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -66465,7 +66465,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66478,7 +66478,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -66551,7 +66551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -66564,7 +66564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66577,7 +66577,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -66648,7 +66648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -66661,7 +66661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66674,7 +66674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -66747,7 +66747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66760,7 +66760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -66913,7 +66913,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -66926,7 +66926,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -66939,7 +66939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -66952,7 +66952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -67131,7 +67131,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -67144,7 +67144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -67245,7 +67245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -67258,7 +67258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -67353,7 +67353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -67366,7 +67366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -67379,7 +67379,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -67494,7 +67494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -67507,7 +67507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -67634,7 +67634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -67647,7 +67647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -67774,7 +67774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -67787,7 +67787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -67860,7 +67860,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -68087,7 +68087,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -68100,7 +68100,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -68327,7 +68327,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -68340,7 +68340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -68425,7 +68425,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -68438,7 +68438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -68451,7 +68451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -68536,7 +68536,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -68549,7 +68549,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -68562,7 +68562,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -68634,7 +68634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -68647,7 +68647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -68660,7 +68660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -68815,7 +68815,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -68851,7 +68851,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -68864,7 +68864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -68877,7 +68877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -68890,7 +68890,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -68948,7 +68948,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -68961,7 +68961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -69085,7 +69085,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -69121,7 +69121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -69134,7 +69134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -69147,7 +69147,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -69160,7 +69160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -69307,7 +69307,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -69343,7 +69343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -69356,7 +69356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -69369,7 +69369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -69464,7 +69464,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -69500,7 +69500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -69513,7 +69513,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -69626,7 +69626,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -69639,7 +69639,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -69750,7 +69750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -69763,7 +69763,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -69918,7 +69918,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -69931,7 +69931,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -70088,7 +70088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70101,7 +70101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -70176,7 +70176,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70189,7 +70189,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -70262,7 +70262,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70275,7 +70275,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -70374,7 +70374,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -70387,7 +70387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70400,7 +70400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -70413,7 +70413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -70538,7 +70538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70551,7 +70551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -70706,7 +70706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70719,7 +70719,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -70817,7 +70817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -70830,7 +70830,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70843,7 +70843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -70933,7 +70933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -70946,7 +70946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -71064,7 +71064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -71077,7 +71077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -71187,7 +71187,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -71200,7 +71200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -71419,7 +71419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -71432,7 +71432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -71795,7 +71795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -71808,7 +71808,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -72113,7 +72113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -72126,7 +72126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -72524,7 +72524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -72537,7 +72537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -72933,7 +72933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -72946,7 +72946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -73223,7 +73223,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -73236,7 +73236,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -73526,7 +73526,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -73539,7 +73539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -73810,7 +73810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -73823,7 +73823,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -74039,7 +74039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -74052,7 +74052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -74316,7 +74316,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -74329,7 +74329,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -74578,7 +74578,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -74591,7 +74591,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -74873,7 +74873,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -74886,7 +74886,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -75178,7 +75178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -75191,7 +75191,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -75487,7 +75487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -75500,7 +75500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -75832,7 +75832,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -75845,7 +75845,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -76036,7 +76036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -76049,7 +76049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -76194,7 +76194,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -76207,7 +76207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -76449,7 +76449,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -76462,7 +76462,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -76722,7 +76722,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -76735,7 +76735,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -77018,7 +77018,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -77031,7 +77031,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -77288,7 +77288,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -77301,7 +77301,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -77647,7 +77647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -77660,7 +77660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -78045,7 +78045,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -78058,7 +78058,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -78503,7 +78503,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -78516,7 +78516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -79015,7 +79015,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -79028,7 +79028,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -79343,7 +79343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -79356,7 +79356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -79479,7 +79479,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -79492,7 +79492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -79704,7 +79704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -79717,7 +79717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -80036,7 +80036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -80049,7 +80049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -80358,7 +80358,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -80371,7 +80371,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -80586,7 +80586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -80599,7 +80599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -80879,7 +80879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -80892,7 +80892,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -81129,7 +81129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -81142,7 +81142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -81330,7 +81330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -81343,7 +81343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -81627,7 +81627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -81640,7 +81640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -81928,7 +81928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -81941,7 +81941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -82112,7 +82112,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -82125,7 +82125,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -82352,7 +82352,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -82365,7 +82365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -82501,7 +82501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -82514,7 +82514,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -82638,7 +82638,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -82651,7 +82651,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -82816,7 +82816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -82829,7 +82829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -83152,7 +83152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -83165,7 +83165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -83446,7 +83446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -83459,7 +83459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -83602,7 +83602,7 @@ "appearsIn": [ "gitissue502" ], - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -83692,7 +83692,7 @@ "appearsIn": [ "gitissue502" ], - "curie": "should:conform_to", + "curie": "should_conform_to", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -83753,7 +83753,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasBroadSynonym", + "curie": "OIO_hasBroadSynonym", "definedBy": [ "oio" ], @@ -83787,7 +83787,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -83821,7 +83821,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -83855,7 +83855,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -83889,7 +83889,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -83923,7 +83923,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -83957,7 +83957,7 @@ "gitissue502", "oio" ], - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -83992,7 +83992,7 @@ "owl", "rdfs" ], - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -84026,7 +84026,7 @@ "gitissue502", "skos" ], - "curie": "SKOS:closeMatch", + "curie": "SKOS_closeMatch", "definedBy": [ "skos" ], @@ -84060,7 +84060,7 @@ "gitissue502", "skos" ], - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], diff --git a/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json b/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json index d1064a214..dddf21a68 100644 --- a/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json +++ b/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json @@ -77,7 +77,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -90,7 +90,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -200,7 +200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -213,7 +213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -360,7 +360,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -373,7 +373,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -386,7 +386,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -399,7 +399,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -518,7 +518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -531,7 +531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -544,7 +544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -557,7 +557,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -674,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -687,7 +687,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -700,7 +700,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -774,7 +774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -973,7 +973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1085,7 +1085,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1121,7 +1121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1134,7 +1134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1231,7 +1231,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1244,7 +1244,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1257,7 +1257,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1380,7 +1380,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1393,7 +1393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1406,7 +1406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1518,7 +1518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1531,7 +1531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1544,7 +1544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1645,7 +1645,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1658,7 +1658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1759,7 +1759,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1772,7 +1772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1897,7 +1897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1910,7 +1910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1923,7 +1923,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1936,7 +1936,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2050,7 +2050,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2063,7 +2063,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2076,7 +2076,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2201,7 +2201,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2214,7 +2214,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2227,7 +2227,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2240,7 +2240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2353,7 +2353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2366,7 +2366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2379,7 +2379,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2392,7 +2392,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2480,7 +2480,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2493,7 +2493,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2581,7 +2581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2694,7 +2694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2707,7 +2707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2720,7 +2720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2890,7 +2890,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2903,7 +2903,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3094,7 +3094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3107,7 +3107,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3298,7 +3298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3311,7 +3311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3410,7 +3410,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3423,7 +3423,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3534,7 +3534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3547,7 +3547,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3560,7 +3560,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3573,7 +3573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3672,7 +3672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3685,7 +3685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3794,7 +3794,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3807,7 +3807,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3916,7 +3916,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3929,7 +3929,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4041,7 +4041,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4054,7 +4054,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4113,7 +4113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4126,7 +4126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4217,7 +4217,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4230,7 +4230,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4294,7 +4294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4307,7 +4307,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4430,7 +4430,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4443,7 +4443,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4554,7 +4554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4567,7 +4567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4665,7 +4665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4752,7 +4752,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4765,7 +4765,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4926,7 +4926,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -4962,7 +4962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5093,7 +5093,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5106,7 +5106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -5208,7 +5208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5221,7 +5221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5234,7 +5234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5247,7 +5247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -5383,7 +5383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5396,7 +5396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -5536,7 +5536,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5549,7 +5549,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5562,7 +5562,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5575,7 +5575,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -5712,7 +5712,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5725,7 +5725,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -5924,7 +5924,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5937,7 +5937,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5950,7 +5950,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5963,7 +5963,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -6157,7 +6157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6170,7 +6170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -6384,7 +6384,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6397,7 +6397,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -6520,7 +6520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6533,7 +6533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6546,7 +6546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6559,7 +6559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -6648,7 +6648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6661,7 +6661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -6720,7 +6720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6733,7 +6733,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6746,7 +6746,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6863,7 +6863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6876,7 +6876,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -6998,7 +6998,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7011,7 +7011,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -7126,7 +7126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7139,7 +7139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -7258,7 +7258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7271,7 +7271,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -7393,7 +7393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7406,7 +7406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -7529,7 +7529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7542,7 +7542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7555,7 +7555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7568,7 +7568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -7691,7 +7691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7704,7 +7704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7717,7 +7717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7730,7 +7730,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -7843,7 +7843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7856,7 +7856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7869,7 +7869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -7994,7 +7994,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -8007,7 +8007,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8020,7 +8020,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -8033,7 +8033,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -8179,7 +8179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8192,7 +8192,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -8294,7 +8294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -8307,7 +8307,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8320,7 +8320,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -8447,7 +8447,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8460,7 +8460,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -8575,7 +8575,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8588,7 +8588,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -8675,7 +8675,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8688,7 +8688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -8789,7 +8789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8802,7 +8802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -8943,7 +8943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8956,7 +8956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9099,7 +9099,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9112,7 +9112,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9269,7 +9269,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9282,7 +9282,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9445,7 +9445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9458,7 +9458,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9545,7 +9545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9558,7 +9558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9674,7 +9674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9687,7 +9687,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9700,7 +9700,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9713,7 +9713,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9826,7 +9826,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9839,7 +9839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9952,7 +9952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9965,7 +9965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -10052,7 +10052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10065,7 +10065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -10138,7 +10138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -10151,7 +10151,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10164,7 +10164,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -10240,7 +10240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10253,7 +10253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -10329,7 +10329,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10342,7 +10342,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -10432,7 +10432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10445,7 +10445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -10589,7 +10589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10602,7 +10602,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -10755,7 +10755,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10768,7 +10768,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -11012,7 +11012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11025,7 +11025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -11256,7 +11256,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11269,7 +11269,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -11403,7 +11403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11416,7 +11416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -11571,7 +11571,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11584,7 +11584,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -11686,7 +11686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11699,7 +11699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -11789,7 +11789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11802,7 +11802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -11976,7 +11976,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -11989,7 +11989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -12169,7 +12169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12182,7 +12182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -12362,7 +12362,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12375,7 +12375,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -12494,7 +12494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12507,7 +12507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -12598,7 +12598,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -12611,7 +12611,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12624,7 +12624,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -12702,7 +12702,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12715,7 +12715,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -12802,7 +12802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -12815,7 +12815,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -12996,7 +12996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -13009,7 +13009,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13022,7 +13022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -13035,7 +13035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -13222,7 +13222,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -13235,7 +13235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13248,7 +13248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -13261,7 +13261,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -13448,7 +13448,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -13461,7 +13461,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13474,7 +13474,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -13487,7 +13487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -13588,7 +13588,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -13601,7 +13601,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13614,7 +13614,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -13627,7 +13627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -13710,7 +13710,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -13723,7 +13723,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13736,7 +13736,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -13805,7 +13805,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -13818,7 +13818,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13831,7 +13831,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -13951,7 +13951,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -13964,7 +13964,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14077,7 +14077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14090,7 +14090,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14165,7 +14165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14178,7 +14178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14300,7 +14300,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14313,7 +14313,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14426,7 +14426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14439,7 +14439,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14531,7 +14531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14544,7 +14544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14663,7 +14663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14676,7 +14676,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14817,7 +14817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14830,7 +14830,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -14971,7 +14971,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -14984,7 +14984,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -15071,7 +15071,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15084,7 +15084,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -15157,7 +15157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -15170,7 +15170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15183,7 +15183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -15254,7 +15254,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -15267,7 +15267,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15280,7 +15280,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -15353,7 +15353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15366,7 +15366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -15519,7 +15519,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -15532,7 +15532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15545,7 +15545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -15558,7 +15558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -15737,7 +15737,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15750,7 +15750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -15851,7 +15851,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15864,7 +15864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -15959,7 +15959,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -15972,7 +15972,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -15985,7 +15985,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -16100,7 +16100,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16113,7 +16113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -16240,7 +16240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16253,7 +16253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -16380,7 +16380,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16393,7 +16393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -16466,7 +16466,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16693,7 +16693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16706,7 +16706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -16933,7 +16933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -16946,7 +16946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -17031,7 +17031,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -17044,7 +17044,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17057,7 +17057,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -17142,7 +17142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -17155,7 +17155,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17168,7 +17168,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -17240,7 +17240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -17253,7 +17253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17266,7 +17266,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -17421,7 +17421,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -17457,7 +17457,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -17470,7 +17470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17483,7 +17483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -17496,7 +17496,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -17554,7 +17554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -17567,7 +17567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17691,7 +17691,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -17727,7 +17727,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -17740,7 +17740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17753,7 +17753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -17766,7 +17766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -17913,7 +17913,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -17949,7 +17949,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -17962,7 +17962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -17975,7 +17975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -18070,7 +18070,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -18106,7 +18106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -18119,7 +18119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18232,7 +18232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18245,7 +18245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -18356,7 +18356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18369,7 +18369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -18524,7 +18524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18537,7 +18537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -18694,7 +18694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18707,7 +18707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -18782,7 +18782,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18795,7 +18795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -18868,7 +18868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -18881,7 +18881,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -18980,7 +18980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -18993,7 +18993,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19006,7 +19006,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -19019,7 +19019,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -19144,7 +19144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19157,7 +19157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -19312,7 +19312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19325,7 +19325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -19423,7 +19423,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -19436,7 +19436,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19449,7 +19449,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -19539,7 +19539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19552,7 +19552,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -19670,7 +19670,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -19683,7 +19683,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -19805,7 +19805,7 @@ "appearsIn": [ "gitissue502" ], - "curie": "excluded:subClassOf", + "curie": "excluded_subClassOf", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -19895,7 +19895,7 @@ "appearsIn": [ "gitissue502" ], - "curie": "should:conform_to", + "curie": "should_conform_to", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -19956,7 +19956,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasBroadSynonym", + "curie": "OIO_hasBroadSynonym", "definedBy": [ "oio" ], @@ -19990,7 +19990,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -20024,7 +20024,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -20058,7 +20058,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -20092,7 +20092,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -20126,7 +20126,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -20160,7 +20160,7 @@ "gitissue502", "oio" ], - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -20195,7 +20195,7 @@ "owl", "rdfs" ], - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -20229,7 +20229,7 @@ "gitissue502", "skos" ], - "curie": "SKOS:closeMatch", + "curie": "SKOS_closeMatch", "definedBy": [ "skos" ], @@ -20263,7 +20263,7 @@ "gitissue502", "skos" ], - "curie": "SKOS:exactMatch", + "curie": "SKOS_exactMatch", "definedBy": [ "skos" ], diff --git a/testcases_expected_output_api/v2/ontologies/oio/classes.json b/testcases_expected_output_api/v2/ontologies/oio/classes.json index 18fe45bd6..fe9a78146 100644 --- a/testcases_expected_output_api/v2/ontologies/oio/classes.json +++ b/testcases_expected_output_api/v2/ontologies/oio/classes.json @@ -3,7 +3,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -21,7 +21,7 @@ "label": "database_cross_reference", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -49,7 +49,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -87,7 +87,7 @@ "label": "definition", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -100,7 +100,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -114,7 +114,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -128,7 +128,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -142,7 +142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -155,7 +155,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -188,7 +188,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:ObsoleteClass", + "curie": "OIO_ObsoleteClass", "definedBy": [ "oio" ], @@ -217,7 +217,7 @@ "label": "obsolete_class", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -230,7 +230,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -243,7 +243,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -257,7 +257,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -271,7 +271,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -285,7 +285,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -318,7 +318,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:Subset", + "curie": "OIO_Subset", "definedBy": [ "oio" ], @@ -377,7 +377,7 @@ "label": "subset", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -390,7 +390,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -403,7 +403,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Synonym": { - "curie": "OIO:Synonym", + "curie": "OIO_Synonym", "definedBy": [ "oio" ], @@ -416,7 +416,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -430,7 +430,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -444,7 +444,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -458,7 +458,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -472,7 +472,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -486,7 +486,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -550,7 +550,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:Synonym", + "curie": "OIO_Synonym", "definedBy": [ "oio" ], @@ -582,7 +582,7 @@ "label": "synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -595,7 +595,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -608,7 +608,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -622,7 +622,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -636,7 +636,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -650,7 +650,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -663,7 +663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -696,7 +696,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:SynonymType", + "curie": "OIO_SynonymType", "definedBy": [ "oio" ], @@ -714,7 +714,7 @@ "label": "synonym_type", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/oio/entities.json b/testcases_expected_output_api/v2/ontologies/oio/entities.json index 3902836b6..043f3bbdf 100644 --- a/testcases_expected_output_api/v2/ontologies/oio/entities.json +++ b/testcases_expected_output_api/v2/ontologies/oio/entities.json @@ -4,7 +4,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasBroadSynonym", + "curie": "OIO_hasBroadSynonym", "definedBy": [ "oio" ], @@ -42,7 +42,7 @@ "label": "has_broad_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -55,7 +55,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -68,7 +68,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -82,7 +82,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -96,7 +96,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -110,7 +110,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -124,7 +124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -137,7 +137,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -177,7 +177,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -201,7 +201,7 @@ "label": "has_dbxref", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -214,7 +214,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -228,7 +228,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -263,7 +263,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -301,7 +301,7 @@ "label": "has_exact_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -314,7 +314,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -327,7 +327,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -341,7 +341,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -355,7 +355,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -369,7 +369,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -383,7 +383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -396,7 +396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -436,7 +436,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -474,7 +474,7 @@ "label": "has_narrow_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -487,7 +487,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -500,7 +500,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -514,7 +514,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -528,7 +528,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -542,7 +542,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -556,7 +556,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -569,7 +569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -609,7 +609,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -647,7 +647,7 @@ "label": "has_related_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -660,7 +660,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -673,7 +673,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -687,7 +687,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -701,7 +701,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -715,7 +715,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -729,7 +729,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -742,7 +742,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -782,7 +782,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -806,7 +806,7 @@ "label": "has_synonym_type", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -819,7 +819,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -833,7 +833,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -847,7 +847,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -877,7 +877,7 @@ "gitissue502", "oio" ], - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -912,7 +912,7 @@ "label": "in_subset", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -925,7 +925,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -938,7 +938,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -952,7 +952,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -966,7 +966,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -980,7 +980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1019,7 +1019,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1037,7 +1037,7 @@ "label": "database_cross_reference", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1065,7 +1065,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1103,7 +1103,7 @@ "label": "definition", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1116,7 +1116,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1130,7 +1130,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1144,7 +1144,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1158,7 +1158,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1171,7 +1171,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1204,7 +1204,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:ObsoleteClass", + "curie": "OIO_ObsoleteClass", "definedBy": [ "oio" ], @@ -1233,7 +1233,7 @@ "label": "obsolete_class", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1246,7 +1246,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1259,7 +1259,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1273,7 +1273,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1287,7 +1287,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1301,7 +1301,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1334,7 +1334,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:ObsoleteProperty", + "curie": "OIO_ObsoleteProperty", "definedBy": [ "oio" ], @@ -1366,7 +1366,7 @@ "label": "obsolete_property", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1379,7 +1379,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1392,7 +1392,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1406,7 +1406,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1420,7 +1420,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1434,7 +1434,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1447,7 +1447,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1481,7 +1481,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:Subset", + "curie": "OIO_Subset", "definedBy": [ "oio" ], @@ -1540,7 +1540,7 @@ "label": "subset", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1553,7 +1553,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1566,7 +1566,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Synonym": { - "curie": "OIO:Synonym", + "curie": "OIO_Synonym", "definedBy": [ "oio" ], @@ -1579,7 +1579,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1593,7 +1593,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1607,7 +1607,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -1621,7 +1621,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -1635,7 +1635,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1649,7 +1649,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1713,7 +1713,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:SubsetProperty", + "curie": "OIO_SubsetProperty", "definedBy": [ "oio" ], @@ -1742,7 +1742,7 @@ "label": "subset_property", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1755,7 +1755,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1768,7 +1768,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1782,7 +1782,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1796,7 +1796,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1810,7 +1810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1844,7 +1844,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:Synonym", + "curie": "OIO_Synonym", "definedBy": [ "oio" ], @@ -1876,7 +1876,7 @@ "label": "synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1889,7 +1889,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1902,7 +1902,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1916,7 +1916,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1930,7 +1930,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1944,7 +1944,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1957,7 +1957,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1990,7 +1990,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:SynonymType", + "curie": "OIO_SynonymType", "definedBy": [ "oio" ], @@ -2008,7 +2008,7 @@ "label": "synonym_type", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2036,7 +2036,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:SynonymTypeProperty", + "curie": "OIO_SynonymTypeProperty", "definedBy": [ "oio" ], @@ -2065,7 +2065,7 @@ "label": "synonym_type_property", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2078,7 +2078,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2091,7 +2091,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2105,7 +2105,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2119,7 +2119,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2133,7 +2133,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2167,7 +2167,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:consider", + "curie": "OIO_consider", "definedBy": [ "oio" ], @@ -2202,7 +2202,7 @@ "label": "consider", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2215,7 +2215,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2228,7 +2228,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2242,7 +2242,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2256,7 +2256,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2270,7 +2270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2309,7 +2309,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasAlternativeId", + "curie": "OIO_hasAlternativeId", "definedBy": [ "oio" ], @@ -2344,7 +2344,7 @@ "label": "has_alternative_id", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2357,7 +2357,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2370,7 +2370,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2384,7 +2384,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2398,7 +2398,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2412,7 +2412,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2451,7 +2451,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasDate", + "curie": "OIO_hasDate", "definedBy": [ "oio" ], @@ -2475,7 +2475,7 @@ "label": "has_date", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2488,7 +2488,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2502,7 +2502,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2516,7 +2516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2550,7 +2550,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasDefaultNamespace", + "curie": "OIO_hasDefaultNamespace", "definedBy": [ "oio" ], @@ -2574,7 +2574,7 @@ "label": "has_default_namespace", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2587,7 +2587,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2601,7 +2601,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2615,7 +2615,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2644,7 +2644,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2682,7 +2682,7 @@ "label": "has_definition", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2695,7 +2695,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2708,7 +2708,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2722,7 +2722,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2736,7 +2736,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2749,7 +2749,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2788,7 +2788,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasOBONamespace", + "curie": "OIO_hasOBONamespace", "definedBy": [ "oio" ], @@ -2823,7 +2823,7 @@ "label": "has_obo_namespace", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2836,7 +2836,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2849,7 +2849,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2863,7 +2863,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2877,7 +2877,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2891,7 +2891,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2930,7 +2930,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasSubset", + "curie": "OIO_hasSubset", "definedBy": [ "oio" ], @@ -2959,7 +2959,7 @@ "label": "has_subset", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2972,7 +2972,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2985,7 +2985,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2999,7 +2999,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -3013,7 +3013,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -3027,7 +3027,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3061,7 +3061,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -3099,7 +3099,7 @@ "label": "has_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -3112,7 +3112,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -3125,7 +3125,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -3139,7 +3139,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -3153,7 +3153,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -3167,7 +3167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3180,7 +3180,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3219,7 +3219,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -3237,7 +3237,7 @@ "label": "has_URI", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3266,7 +3266,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasVersion", + "curie": "OIO_hasVersion", "definedBy": [ "oio" ], @@ -3290,7 +3290,7 @@ "label": "has_version", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -3303,7 +3303,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -3317,7 +3317,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -3331,7 +3331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3365,7 +3365,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:isCyclic", + "curie": "OIO_isCyclic", "definedBy": [ "oio" ], @@ -3394,7 +3394,7 @@ "label": "is_cyclic", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -3407,7 +3407,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -3420,7 +3420,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -3434,7 +3434,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -3448,7 +3448,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -3462,7 +3462,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3496,7 +3496,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:replacedBy", + "curie": "OIO_replacedBy", "definedBy": [ "oio" ], @@ -3531,7 +3531,7 @@ "label": "replaced_by", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -3544,7 +3544,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -3557,7 +3557,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -3571,7 +3571,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -3585,7 +3585,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -3599,7 +3599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3638,7 +3638,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:savedBy", + "curie": "OIO_savedBy", "definedBy": [ "oio" ], @@ -3662,7 +3662,7 @@ "label": "saved_by", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -3675,7 +3675,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -3689,7 +3689,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -3703,7 +3703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/oio/properties.json b/testcases_expected_output_api/v2/ontologies/oio/properties.json index 96ce9bd54..f3f32d630 100644 --- a/testcases_expected_output_api/v2/ontologies/oio/properties.json +++ b/testcases_expected_output_api/v2/ontologies/oio/properties.json @@ -4,7 +4,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasBroadSynonym", + "curie": "OIO_hasBroadSynonym", "definedBy": [ "oio" ], @@ -42,7 +42,7 @@ "label": "has_broad_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -55,7 +55,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -68,7 +68,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -82,7 +82,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -96,7 +96,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -110,7 +110,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -124,7 +124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -137,7 +137,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -177,7 +177,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -201,7 +201,7 @@ "label": "has_dbxref", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -214,7 +214,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -228,7 +228,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -263,7 +263,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasExactSynonym", + "curie": "OIO_hasExactSynonym", "definedBy": [ "oio" ], @@ -301,7 +301,7 @@ "label": "has_exact_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -314,7 +314,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -327,7 +327,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -341,7 +341,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -355,7 +355,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -369,7 +369,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -383,7 +383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -396,7 +396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -436,7 +436,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasNarrowSynonym", + "curie": "OIO_hasNarrowSynonym", "definedBy": [ "oio" ], @@ -474,7 +474,7 @@ "label": "has_narrow_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -487,7 +487,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -500,7 +500,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -514,7 +514,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -528,7 +528,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -542,7 +542,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -556,7 +556,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -569,7 +569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -609,7 +609,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasRelatedSynonym", + "curie": "OIO_hasRelatedSynonym", "definedBy": [ "oio" ], @@ -647,7 +647,7 @@ "label": "has_related_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -660,7 +660,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -673,7 +673,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -687,7 +687,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -701,7 +701,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -715,7 +715,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -729,7 +729,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -742,7 +742,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -782,7 +782,7 @@ "gitissue502", "oio" ], - "curie": "OIO:hasSynonymType", + "curie": "OIO_hasSynonymType", "definedBy": [ "oio" ], @@ -806,7 +806,7 @@ "label": "has_synonym_type", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -819,7 +819,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -833,7 +833,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -847,7 +847,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -877,7 +877,7 @@ "gitissue502", "oio" ], - "curie": "OIO:inSubset", + "curie": "OIO_inSubset", "definedBy": [ "oio" ], @@ -912,7 +912,7 @@ "label": "in_subset", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -925,7 +925,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -938,7 +938,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -952,7 +952,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -966,7 +966,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -980,7 +980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1019,7 +1019,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:ObsoleteProperty", + "curie": "OIO_ObsoleteProperty", "definedBy": [ "oio" ], @@ -1051,7 +1051,7 @@ "label": "obsolete_property", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1064,7 +1064,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1077,7 +1077,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1091,7 +1091,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1105,7 +1105,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1119,7 +1119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1132,7 +1132,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1166,7 +1166,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:SubsetProperty", + "curie": "OIO_SubsetProperty", "definedBy": [ "oio" ], @@ -1195,7 +1195,7 @@ "label": "subset_property", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1208,7 +1208,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1221,7 +1221,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1235,7 +1235,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1249,7 +1249,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1263,7 +1263,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1297,7 +1297,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:SynonymTypeProperty", + "curie": "OIO_SynonymTypeProperty", "definedBy": [ "oio" ], @@ -1326,7 +1326,7 @@ "label": "synonym_type_property", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1339,7 +1339,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1352,7 +1352,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1366,7 +1366,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1380,7 +1380,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1394,7 +1394,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1428,7 +1428,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:consider", + "curie": "OIO_consider", "definedBy": [ "oio" ], @@ -1463,7 +1463,7 @@ "label": "consider", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1476,7 +1476,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1489,7 +1489,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1503,7 +1503,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1517,7 +1517,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1531,7 +1531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1570,7 +1570,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasAlternativeId", + "curie": "OIO_hasAlternativeId", "definedBy": [ "oio" ], @@ -1605,7 +1605,7 @@ "label": "has_alternative_id", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1618,7 +1618,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1631,7 +1631,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1645,7 +1645,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1659,7 +1659,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1673,7 +1673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1712,7 +1712,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasDate", + "curie": "OIO_hasDate", "definedBy": [ "oio" ], @@ -1736,7 +1736,7 @@ "label": "has_date", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1749,7 +1749,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1763,7 +1763,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1777,7 +1777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1811,7 +1811,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasDefaultNamespace", + "curie": "OIO_hasDefaultNamespace", "definedBy": [ "oio" ], @@ -1835,7 +1835,7 @@ "label": "has_default_namespace", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1848,7 +1848,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1862,7 +1862,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1876,7 +1876,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1905,7 +1905,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -1943,7 +1943,7 @@ "label": "has_definition", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -1956,7 +1956,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -1969,7 +1969,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -1983,7 +1983,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -1997,7 +1997,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2010,7 +2010,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2049,7 +2049,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasOBONamespace", + "curie": "OIO_hasOBONamespace", "definedBy": [ "oio" ], @@ -2084,7 +2084,7 @@ "label": "has_obo_namespace", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2097,7 +2097,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2110,7 +2110,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2124,7 +2124,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2138,7 +2138,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2152,7 +2152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2191,7 +2191,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasSubset", + "curie": "OIO_hasSubset", "definedBy": [ "oio" ], @@ -2220,7 +2220,7 @@ "label": "has_subset", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2233,7 +2233,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2246,7 +2246,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2260,7 +2260,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2274,7 +2274,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2288,7 +2288,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2322,7 +2322,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasSynonym", + "curie": "OIO_hasSynonym", "definedBy": [ "oio" ], @@ -2360,7 +2360,7 @@ "label": "has_synonym", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2373,7 +2373,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2386,7 +2386,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2400,7 +2400,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2414,7 +2414,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2428,7 +2428,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2441,7 +2441,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2480,7 +2480,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2498,7 +2498,7 @@ "label": "has_URI", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2527,7 +2527,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:hasVersion", + "curie": "OIO_hasVersion", "definedBy": [ "oio" ], @@ -2551,7 +2551,7 @@ "label": "has_version", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2564,7 +2564,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2578,7 +2578,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2592,7 +2592,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2626,7 +2626,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:isCyclic", + "curie": "OIO_isCyclic", "definedBy": [ "oio" ], @@ -2655,7 +2655,7 @@ "label": "is_cyclic", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2668,7 +2668,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2681,7 +2681,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2695,7 +2695,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2709,7 +2709,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2723,7 +2723,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2757,7 +2757,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:replacedBy", + "curie": "OIO_replacedBy", "definedBy": [ "oio" ], @@ -2792,7 +2792,7 @@ "label": "replaced_by", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2805,7 +2805,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#Definition": { - "curie": "OIO:Definition", + "curie": "OIO_Definition", "definedBy": [ "oio" ], @@ -2818,7 +2818,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2832,7 +2832,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { - "curie": "OIO:hasDefinition", + "curie": "OIO_hasDefinition", "definedBy": [ "oio" ], @@ -2846,7 +2846,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2860,7 +2860,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2899,7 +2899,7 @@ "appearsIn": [ "oio" ], - "curie": "OIO:savedBy", + "curie": "OIO_savedBy", "definedBy": [ "oio" ], @@ -2923,7 +2923,7 @@ "label": "saved_by", "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#DbXref": { - "curie": "OIO:DbXref", + "curie": "OIO_DbXref", "definedBy": [ "oio" ], @@ -2936,7 +2936,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "OIO:hasDbXref", + "curie": "OIO_hasDbXref", "definedBy": [ "oio" ], @@ -2950,7 +2950,7 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasURI": { - "curie": "OIO:hasURI", + "curie": "OIO_hasURI", "definedBy": [ "oio" ], @@ -2964,7 +2964,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/owl/classes.json b/testcases_expected_output_api/v2/ontologies/owl/classes.json index 9e6f2e65d..89b0e7120 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": "OWL:AllDifferent", + "curie": "OWL_AllDifferent", "definedBy": [ "owl" ], @@ -31,7 +31,7 @@ "label": "AllDifferent", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -44,7 +44,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -57,7 +57,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -70,7 +70,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -83,7 +83,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -96,7 +96,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -124,7 +124,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AllDisjointClasses", + "curie": "OWL_AllDisjointClasses", "definedBy": [ "owl" ], @@ -152,7 +152,7 @@ "label": "AllDisjointClasses", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -165,7 +165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -178,7 +178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -191,7 +191,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -204,7 +204,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -217,7 +217,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -245,7 +245,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AllDisjointProperties", + "curie": "OWL_AllDisjointProperties", "definedBy": [ "owl" ], @@ -273,7 +273,7 @@ "label": "AllDisjointProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -286,7 +286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -299,7 +299,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -312,7 +312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -325,7 +325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -338,7 +338,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -366,7 +366,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Annotation", + "curie": "OWL_Annotation", "definedBy": [ "owl" ], @@ -394,7 +394,7 @@ "label": "Annotation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -407,7 +407,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -420,7 +420,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -433,7 +433,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -446,7 +446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -459,7 +459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -487,7 +487,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AnnotationProperty", + "curie": "OWL_AnnotationProperty", "definedBy": [ "owl" ], @@ -511,7 +511,7 @@ "label": "AnnotationProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -524,7 +524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -537,7 +537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -550,7 +550,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -563,7 +563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -591,7 +591,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AsymmetricProperty", + "curie": "OWL_AsymmetricProperty", "definedBy": [ "owl" ], @@ -619,7 +619,7 @@ "label": "AsymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -632,7 +632,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -645,7 +645,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -658,7 +658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -671,7 +671,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -699,7 +699,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Axiom", + "curie": "OWL_Axiom", "definedBy": [ "owl" ], @@ -727,7 +727,7 @@ "label": "Axiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -740,7 +740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -753,7 +753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -766,7 +766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -779,7 +779,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -792,7 +792,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -820,7 +820,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Class", + "curie": "OWL_Class", "definedBy": [ "owl" ], @@ -854,7 +854,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -867,7 +867,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -880,7 +880,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -893,7 +893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -906,7 +906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -919,7 +919,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -947,7 +947,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DataRange", + "curie": "OWL_DataRange", "definedBy": [ "owl" ], @@ -983,7 +983,7 @@ "label": "DataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -996,7 +996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -1009,7 +1009,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1022,7 +1022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1035,7 +1035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1048,7 +1048,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1061,7 +1061,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1089,7 +1089,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DatatypeProperty", + "curie": "OWL_DatatypeProperty", "definedBy": [ "owl" ], @@ -1113,7 +1113,7 @@ "label": "DatatypeProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1126,7 +1126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1139,7 +1139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1152,7 +1152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1165,7 +1165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1193,7 +1193,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DeprecatedClass", + "curie": "OWL_DeprecatedClass", "definedBy": [ "owl" ], @@ -1227,7 +1227,7 @@ "label": "DeprecatedClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1240,7 +1240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1253,7 +1253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1266,7 +1266,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1279,7 +1279,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1292,7 +1292,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1320,7 +1320,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DeprecatedProperty", + "curie": "OWL_DeprecatedProperty", "definedBy": [ "owl" ], @@ -1344,7 +1344,7 @@ "label": "DeprecatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1357,7 +1357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1370,7 +1370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1383,7 +1383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1396,7 +1396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1424,7 +1424,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:FunctionalProperty", + "curie": "OWL_FunctionalProperty", "definedBy": [ "owl" ], @@ -1448,7 +1448,7 @@ "label": "FunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1461,7 +1461,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1474,7 +1474,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1487,7 +1487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1500,7 +1500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1528,7 +1528,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:InverseFunctionalProperty", + "curie": "OWL_InverseFunctionalProperty", "definedBy": [ "owl" ], @@ -1556,7 +1556,7 @@ "label": "InverseFunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1569,7 +1569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1582,7 +1582,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1595,7 +1595,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1608,7 +1608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1636,7 +1636,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:IrreflexiveProperty", + "curie": "OWL_IrreflexiveProperty", "definedBy": [ "owl" ], @@ -1664,7 +1664,7 @@ "label": "IrreflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1677,7 +1677,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1690,7 +1690,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1703,7 +1703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1716,7 +1716,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1744,7 +1744,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:NamedIndividual", + "curie": "OWL_NamedIndividual", "definedBy": [ "owl" ], @@ -1772,7 +1772,7 @@ "label": "NamedIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1785,7 +1785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1798,7 +1798,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1811,7 +1811,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1824,7 +1824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1852,7 +1852,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:NegativePropertyAssertion", + "curie": "OWL_NegativePropertyAssertion", "definedBy": [ "owl" ], @@ -1880,7 +1880,7 @@ "label": "NegativePropertyAssertion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1893,7 +1893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1906,7 +1906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1919,7 +1919,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1932,7 +1932,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1945,7 +1945,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1973,7 +1973,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Nothing", + "curie": "OWL_Nothing", "definedBy": [ "owl" ], @@ -2001,7 +2001,7 @@ "label": "Nothing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2014,7 +2014,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2027,7 +2027,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2040,7 +2040,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2068,7 +2068,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:ObjectProperty", + "curie": "OWL_ObjectProperty", "definedBy": [ "owl" ], @@ -2092,7 +2092,7 @@ "label": "ObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2105,7 +2105,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2118,7 +2118,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2131,7 +2131,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2144,7 +2144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2172,7 +2172,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Ontology", + "curie": "OWL_Ontology", "definedBy": [ "owl" ], @@ -2200,7 +2200,7 @@ "label": "Ontology", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2213,7 +2213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2226,7 +2226,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2239,7 +2239,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2252,7 +2252,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2265,7 +2265,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2293,7 +2293,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:OntologyProperty", + "curie": "OWL_OntologyProperty", "definedBy": [ "owl" ], @@ -2317,7 +2317,7 @@ "label": "OntologyProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2330,7 +2330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2343,7 +2343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2356,7 +2356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2369,7 +2369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2397,7 +2397,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:ReflexiveProperty", + "curie": "OWL_ReflexiveProperty", "definedBy": [ "owl" ], @@ -2425,7 +2425,7 @@ "label": "ReflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2438,7 +2438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2451,7 +2451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2464,7 +2464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2477,7 +2477,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2505,7 +2505,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Restriction", + "curie": "OWL_Restriction", "definedBy": [ "owl" ], @@ -2541,7 +2541,7 @@ "label": "Restriction", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2554,7 +2554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2567,7 +2567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2580,7 +2580,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2593,7 +2593,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2606,7 +2606,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2634,7 +2634,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:SymmetricProperty", + "curie": "OWL_SymmetricProperty", "definedBy": [ "owl" ], @@ -2662,7 +2662,7 @@ "label": "SymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2675,7 +2675,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2688,7 +2688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2701,7 +2701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2714,7 +2714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2742,7 +2742,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Thing", + "curie": "OWL_Thing", "definedBy": [ "owl" ], @@ -2764,7 +2764,7 @@ "label": "Thing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2777,7 +2777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2790,7 +2790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2818,7 +2818,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:TransitiveProperty", + "curie": "OWL_TransitiveProperty", "definedBy": [ "owl" ], @@ -2846,7 +2846,7 @@ "label": "TransitiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2859,7 +2859,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2872,7 +2872,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2885,7 +2885,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2898,7 +2898,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2927,7 +2927,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2955,7 +2955,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2968,7 +2968,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2981,7 +2981,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2994,7 +2994,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3007,7 +3007,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3036,7 +3036,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Container", + "curie": "RDFS_Container", "definedBy": [ "rdfs" ], @@ -3064,7 +3064,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -3077,7 +3077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3090,7 +3090,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3103,7 +3103,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3116,7 +3116,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3129,7 +3129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3158,7 +3158,7 @@ "owl", "rdfs" ], - "curie": "RDFS:ContainerMembershipProperty", + "curie": "RDFS_ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -3182,7 +3182,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -3195,7 +3195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3208,7 +3208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3221,7 +3221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3234,7 +3234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3263,7 +3263,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -3297,7 +3297,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -3310,7 +3310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3323,7 +3323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3336,7 +3336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3349,7 +3349,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3362,7 +3362,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3391,7 +3391,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -3419,7 +3419,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -3432,7 +3432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3445,7 +3445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3458,7 +3458,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3471,7 +3471,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3484,7 +3484,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3513,7 +3513,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3535,7 +3535,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -3548,7 +3548,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3561,7 +3561,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3574,7 +3574,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/owl/entities.json b/testcases_expected_output_api/v2/ontologies/owl/entities.json index bdf314640..5b56adb33 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": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -122,7 +122,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AllDifferent", + "curie": "OWL_AllDifferent", "definedBy": [ "owl" ], @@ -150,7 +150,7 @@ "label": "AllDifferent", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -163,7 +163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -176,7 +176,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -189,7 +189,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -202,7 +202,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -215,7 +215,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -243,7 +243,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AllDisjointClasses", + "curie": "OWL_AllDisjointClasses", "definedBy": [ "owl" ], @@ -271,7 +271,7 @@ "label": "AllDisjointClasses", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -284,7 +284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -297,7 +297,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -310,7 +310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -323,7 +323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -336,7 +336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -364,7 +364,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AllDisjointProperties", + "curie": "OWL_AllDisjointProperties", "definedBy": [ "owl" ], @@ -392,7 +392,7 @@ "label": "AllDisjointProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -405,7 +405,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -418,7 +418,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -431,7 +431,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -444,7 +444,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -457,7 +457,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -485,7 +485,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Annotation", + "curie": "OWL_Annotation", "definedBy": [ "owl" ], @@ -513,7 +513,7 @@ "label": "Annotation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -526,7 +526,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -539,7 +539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -552,7 +552,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -565,7 +565,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -578,7 +578,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -606,7 +606,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AnnotationProperty", + "curie": "OWL_AnnotationProperty", "definedBy": [ "owl" ], @@ -630,7 +630,7 @@ "label": "AnnotationProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -643,7 +643,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -656,7 +656,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -669,7 +669,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -682,7 +682,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -710,7 +710,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:AsymmetricProperty", + "curie": "OWL_AsymmetricProperty", "definedBy": [ "owl" ], @@ -738,7 +738,7 @@ "label": "AsymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -751,7 +751,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -764,7 +764,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -777,7 +777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -790,7 +790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -818,7 +818,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Axiom", + "curie": "OWL_Axiom", "definedBy": [ "owl" ], @@ -846,7 +846,7 @@ "label": "Axiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -859,7 +859,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -872,7 +872,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -885,7 +885,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -898,7 +898,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -911,7 +911,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -939,7 +939,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Class", + "curie": "OWL_Class", "definedBy": [ "owl" ], @@ -973,7 +973,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -986,7 +986,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -999,7 +999,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1012,7 +1012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1025,7 +1025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1038,7 +1038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1066,7 +1066,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DataRange", + "curie": "OWL_DataRange", "definedBy": [ "owl" ], @@ -1102,7 +1102,7 @@ "label": "DataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1115,7 +1115,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -1128,7 +1128,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1141,7 +1141,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1154,7 +1154,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1167,7 +1167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1180,7 +1180,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1208,7 +1208,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DatatypeProperty", + "curie": "OWL_DatatypeProperty", "definedBy": [ "owl" ], @@ -1232,7 +1232,7 @@ "label": "DatatypeProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1245,7 +1245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1258,7 +1258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1271,7 +1271,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1284,7 +1284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1312,7 +1312,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DeprecatedClass", + "curie": "OWL_DeprecatedClass", "definedBy": [ "owl" ], @@ -1346,7 +1346,7 @@ "label": "DeprecatedClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1359,7 +1359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1372,7 +1372,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1385,7 +1385,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1398,7 +1398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1411,7 +1411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1439,7 +1439,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:DeprecatedProperty", + "curie": "OWL_DeprecatedProperty", "definedBy": [ "owl" ], @@ -1463,7 +1463,7 @@ "label": "DeprecatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1476,7 +1476,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1489,7 +1489,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1502,7 +1502,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1515,7 +1515,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1543,7 +1543,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:FunctionalProperty", + "curie": "OWL_FunctionalProperty", "definedBy": [ "owl" ], @@ -1567,7 +1567,7 @@ "label": "FunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1580,7 +1580,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1593,7 +1593,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1606,7 +1606,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1619,7 +1619,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1647,7 +1647,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:InverseFunctionalProperty", + "curie": "OWL_InverseFunctionalProperty", "definedBy": [ "owl" ], @@ -1675,7 +1675,7 @@ "label": "InverseFunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1688,7 +1688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1701,7 +1701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1714,7 +1714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1727,7 +1727,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1755,7 +1755,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:IrreflexiveProperty", + "curie": "OWL_IrreflexiveProperty", "definedBy": [ "owl" ], @@ -1783,7 +1783,7 @@ "label": "IrreflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1796,7 +1796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1809,7 +1809,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1822,7 +1822,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1835,7 +1835,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1863,7 +1863,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:NamedIndividual", + "curie": "OWL_NamedIndividual", "definedBy": [ "owl" ], @@ -1891,7 +1891,7 @@ "label": "NamedIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1904,7 +1904,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1917,7 +1917,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1930,7 +1930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1943,7 +1943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1971,7 +1971,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:NegativePropertyAssertion", + "curie": "OWL_NegativePropertyAssertion", "definedBy": [ "owl" ], @@ -1999,7 +1999,7 @@ "label": "NegativePropertyAssertion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2012,7 +2012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2025,7 +2025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2038,7 +2038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2051,7 +2051,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2064,7 +2064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2092,7 +2092,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Nothing", + "curie": "OWL_Nothing", "definedBy": [ "owl" ], @@ -2120,7 +2120,7 @@ "label": "Nothing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2133,7 +2133,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2146,7 +2146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2159,7 +2159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2187,7 +2187,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:ObjectProperty", + "curie": "OWL_ObjectProperty", "definedBy": [ "owl" ], @@ -2211,7 +2211,7 @@ "label": "ObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2224,7 +2224,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2237,7 +2237,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2250,7 +2250,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2263,7 +2263,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2291,7 +2291,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Ontology", + "curie": "OWL_Ontology", "definedBy": [ "owl" ], @@ -2319,7 +2319,7 @@ "label": "Ontology", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2332,7 +2332,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2345,7 +2345,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2358,7 +2358,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2371,7 +2371,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2384,7 +2384,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2412,7 +2412,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:OntologyProperty", + "curie": "OWL_OntologyProperty", "definedBy": [ "owl" ], @@ -2436,7 +2436,7 @@ "label": "OntologyProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2449,7 +2449,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2462,7 +2462,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2475,7 +2475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2488,7 +2488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2516,7 +2516,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:ReflexiveProperty", + "curie": "OWL_ReflexiveProperty", "definedBy": [ "owl" ], @@ -2544,7 +2544,7 @@ "label": "ReflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2557,7 +2557,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2570,7 +2570,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2583,7 +2583,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2596,7 +2596,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2624,7 +2624,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Restriction", + "curie": "OWL_Restriction", "definedBy": [ "owl" ], @@ -2660,7 +2660,7 @@ "label": "Restriction", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2673,7 +2673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2686,7 +2686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2699,7 +2699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2712,7 +2712,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2725,7 +2725,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2753,7 +2753,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:SymmetricProperty", + "curie": "OWL_SymmetricProperty", "definedBy": [ "owl" ], @@ -2781,7 +2781,7 @@ "label": "SymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2794,7 +2794,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2807,7 +2807,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2820,7 +2820,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2833,7 +2833,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -2861,7 +2861,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:Thing", + "curie": "OWL_Thing", "definedBy": [ "owl" ], @@ -2883,7 +2883,7 @@ "label": "Thing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2896,7 +2896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2909,7 +2909,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2937,7 +2937,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:TransitiveProperty", + "curie": "OWL_TransitiveProperty", "definedBy": [ "owl" ], @@ -2965,7 +2965,7 @@ "label": "TransitiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2978,7 +2978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2991,7 +2991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3004,7 +3004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3017,7 +3017,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -3045,7 +3045,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:allValuesFrom", + "curie": "OWL_allValuesFrom", "definedBy": [ "owl" ], @@ -3069,7 +3069,7 @@ "label": "allValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -3082,7 +3082,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3095,7 +3095,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3108,7 +3108,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3121,7 +3121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3134,7 +3134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3162,7 +3162,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:annotatedProperty", + "curie": "OWL_annotatedProperty", "definedBy": [ "owl" ], @@ -3186,7 +3186,7 @@ "label": "annotatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3199,7 +3199,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3212,7 +3212,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3225,7 +3225,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3238,7 +3238,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3251,7 +3251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3279,7 +3279,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:annotatedSource", + "curie": "OWL_annotatedSource", "definedBy": [ "owl" ], @@ -3303,7 +3303,7 @@ "label": "annotatedSource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3316,7 +3316,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3329,7 +3329,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3342,7 +3342,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3355,7 +3355,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3368,7 +3368,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3396,7 +3396,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:annotatedTarget", + "curie": "OWL_annotatedTarget", "definedBy": [ "owl" ], @@ -3420,7 +3420,7 @@ "label": "annotatedTarget", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3433,7 +3433,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3446,7 +3446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3459,7 +3459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3472,7 +3472,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3485,7 +3485,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3513,7 +3513,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:assertionProperty", + "curie": "OWL_assertionProperty", "definedBy": [ "owl" ], @@ -3537,7 +3537,7 @@ "label": "assertionProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3550,7 +3550,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3563,7 +3563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3576,7 +3576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3589,7 +3589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3617,7 +3617,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:backwardCompatibleWith", + "curie": "OWL_backwardCompatibleWith", "definedBy": [ "owl" ], @@ -3644,7 +3644,7 @@ "label": "backwardCompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3657,7 +3657,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3670,7 +3670,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3683,7 +3683,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3696,7 +3696,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3725,7 +3725,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:bottomDataProperty", + "curie": "OWL_bottomDataProperty", "definedBy": [ "owl" ], @@ -3749,7 +3749,7 @@ "label": "bottomDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -3762,7 +3762,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3775,7 +3775,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3788,7 +3788,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3801,7 +3801,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3814,7 +3814,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3843,7 +3843,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:bottomObjectProperty", + "curie": "OWL_bottomObjectProperty", "definedBy": [ "owl" ], @@ -3867,7 +3867,7 @@ "label": "bottomObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3880,7 +3880,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3893,7 +3893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3906,7 +3906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3919,7 +3919,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3948,7 +3948,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:cardinality", + "curie": "OWL_cardinality", "definedBy": [ "owl" ], @@ -3972,7 +3972,7 @@ "label": "cardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3985,7 +3985,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3998,7 +3998,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4011,7 +4011,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4024,7 +4024,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4052,7 +4052,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:complementOf", + "curie": "OWL_complementOf", "definedBy": [ "owl" ], @@ -4076,7 +4076,7 @@ "label": "complementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4089,7 +4089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4102,7 +4102,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4115,7 +4115,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4128,7 +4128,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4156,7 +4156,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:datatypeComplementOf", + "curie": "OWL_datatypeComplementOf", "definedBy": [ "owl" ], @@ -4180,7 +4180,7 @@ "label": "datatypeComplementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -4193,7 +4193,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4206,7 +4206,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4219,7 +4219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4232,7 +4232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4245,7 +4245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4273,7 +4273,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:deprecated", + "curie": "OWL_deprecated", "definedBy": [ "owl" ], @@ -4297,7 +4297,7 @@ "label": "deprecated", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -4310,7 +4310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4323,7 +4323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4336,7 +4336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4349,7 +4349,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4362,7 +4362,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4391,7 +4391,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:differentFrom", + "curie": "OWL_differentFrom", "definedBy": [ "owl" ], @@ -4415,7 +4415,7 @@ "label": "differentFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4428,7 +4428,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4441,7 +4441,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4454,7 +4454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4467,7 +4467,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4495,7 +4495,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:disjointUnionOf", + "curie": "OWL_disjointUnionOf", "definedBy": [ "owl" ], @@ -4519,7 +4519,7 @@ "label": "disjointUnionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4532,7 +4532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4545,7 +4545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4558,7 +4558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4571,7 +4571,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4599,7 +4599,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:disjointWith", + "curie": "OWL_disjointWith", "definedBy": [ "owl" ], @@ -4623,7 +4623,7 @@ "label": "disjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4636,7 +4636,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4649,7 +4649,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4662,7 +4662,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4675,7 +4675,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4703,7 +4703,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:distinctMembers", + "curie": "OWL_distinctMembers", "definedBy": [ "owl" ], @@ -4727,7 +4727,7 @@ "label": "distinctMembers", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4740,7 +4740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4753,7 +4753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4766,7 +4766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4779,7 +4779,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4807,7 +4807,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:equivalentClass", + "curie": "OWL_equivalentClass", "definedBy": [ "owl" ], @@ -4831,7 +4831,7 @@ "label": "equivalentClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -4844,7 +4844,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4857,7 +4857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4870,7 +4870,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4883,7 +4883,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4896,7 +4896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4924,7 +4924,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:equivalentProperty", + "curie": "OWL_equivalentProperty", "definedBy": [ "owl" ], @@ -4948,7 +4948,7 @@ "label": "equivalentProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4961,7 +4961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4974,7 +4974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4987,7 +4987,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5000,7 +5000,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5028,7 +5028,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:hasKey", + "curie": "OWL_hasKey", "definedBy": [ "owl" ], @@ -5052,7 +5052,7 @@ "label": "hasKey", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5065,7 +5065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5078,7 +5078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5091,7 +5091,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5104,7 +5104,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5132,7 +5132,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:hasSelf", + "curie": "OWL_hasSelf", "definedBy": [ "owl" ], @@ -5156,7 +5156,7 @@ "label": "hasSelf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -5169,7 +5169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5182,7 +5182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5195,7 +5195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5208,7 +5208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5221,7 +5221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5249,7 +5249,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:hasValue", + "curie": "OWL_hasValue", "definedBy": [ "owl" ], @@ -5273,7 +5273,7 @@ "label": "hasValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -5286,7 +5286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5299,7 +5299,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5312,7 +5312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5325,7 +5325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5338,7 +5338,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5366,7 +5366,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:incompatibleWith", + "curie": "OWL_incompatibleWith", "definedBy": [ "owl" ], @@ -5393,7 +5393,7 @@ "label": "incompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5406,7 +5406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5419,7 +5419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5432,7 +5432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5445,7 +5445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5474,7 +5474,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:intersectionOf", + "curie": "OWL_intersectionOf", "definedBy": [ "owl" ], @@ -5498,7 +5498,7 @@ "label": "intersectionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -5511,7 +5511,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5524,7 +5524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5537,7 +5537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5550,7 +5550,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5563,7 +5563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5591,7 +5591,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:inverseOf", + "curie": "OWL_inverseOf", "definedBy": [ "owl" ], @@ -5615,7 +5615,7 @@ "label": "inverseOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5628,7 +5628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5641,7 +5641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5654,7 +5654,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5667,7 +5667,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5695,7 +5695,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:maxCardinality", + "curie": "OWL_maxCardinality", "definedBy": [ "owl" ], @@ -5719,7 +5719,7 @@ "label": "maxCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5732,7 +5732,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5745,7 +5745,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5758,7 +5758,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5771,7 +5771,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5799,7 +5799,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:maxQualifiedCardinality", + "curie": "OWL_maxQualifiedCardinality", "definedBy": [ "owl" ], @@ -5823,7 +5823,7 @@ "label": "maxQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5836,7 +5836,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5849,7 +5849,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5862,7 +5862,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5875,7 +5875,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5903,7 +5903,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:members", + "curie": "OWL_members", "definedBy": [ "owl" ], @@ -5927,7 +5927,7 @@ "label": "members", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -5940,7 +5940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5953,7 +5953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5966,7 +5966,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5979,7 +5979,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5992,7 +5992,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6020,7 +6020,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:minCardinality", + "curie": "OWL_minCardinality", "definedBy": [ "owl" ], @@ -6044,7 +6044,7 @@ "label": "minCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6057,7 +6057,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6070,7 +6070,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6083,7 +6083,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6096,7 +6096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6124,7 +6124,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:minQualifiedCardinality", + "curie": "OWL_minQualifiedCardinality", "definedBy": [ "owl" ], @@ -6148,7 +6148,7 @@ "label": "minQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6161,7 +6161,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6174,7 +6174,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6187,7 +6187,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6200,7 +6200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6228,7 +6228,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onClass", + "curie": "OWL_onClass", "definedBy": [ "owl" ], @@ -6252,7 +6252,7 @@ "label": "onClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6265,7 +6265,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6278,7 +6278,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6291,7 +6291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6304,7 +6304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6332,7 +6332,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onDataRange", + "curie": "OWL_onDataRange", "definedBy": [ "owl" ], @@ -6356,7 +6356,7 @@ "label": "onDataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -6369,7 +6369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6382,7 +6382,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6395,7 +6395,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6408,7 +6408,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6421,7 +6421,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6449,7 +6449,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onDatatype", + "curie": "OWL_onDatatype", "definedBy": [ "owl" ], @@ -6473,7 +6473,7 @@ "label": "onDatatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -6486,7 +6486,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6499,7 +6499,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6512,7 +6512,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6525,7 +6525,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6538,7 +6538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6566,7 +6566,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onProperties", + "curie": "OWL_onProperties", "definedBy": [ "owl" ], @@ -6590,7 +6590,7 @@ "label": "onProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6603,7 +6603,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6616,7 +6616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6629,7 +6629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6642,7 +6642,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6670,7 +6670,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onProperty", + "curie": "OWL_onProperty", "definedBy": [ "owl" ], @@ -6694,7 +6694,7 @@ "label": "onProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6707,7 +6707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6720,7 +6720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6733,7 +6733,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6746,7 +6746,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6774,7 +6774,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:oneOf", + "curie": "OWL_oneOf", "definedBy": [ "owl" ], @@ -6798,7 +6798,7 @@ "label": "oneOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -6811,7 +6811,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6824,7 +6824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6837,7 +6837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6850,7 +6850,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6863,7 +6863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6891,7 +6891,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:priorVersion", + "curie": "OWL_priorVersion", "definedBy": [ "owl" ], @@ -6918,7 +6918,7 @@ "label": "priorVersion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6931,7 +6931,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6944,7 +6944,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6957,7 +6957,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6970,7 +6970,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6999,7 +6999,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:propertyChainAxiom", + "curie": "OWL_propertyChainAxiom", "definedBy": [ "owl" ], @@ -7023,7 +7023,7 @@ "label": "propertyChainAxiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7036,7 +7036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7049,7 +7049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7062,7 +7062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7075,7 +7075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7103,7 +7103,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:propertyDisjointWith", + "curie": "OWL_propertyDisjointWith", "definedBy": [ "owl" ], @@ -7127,7 +7127,7 @@ "label": "propertyDisjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7140,7 +7140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7153,7 +7153,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7166,7 +7166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7179,7 +7179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7207,7 +7207,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:qualifiedCardinality", + "curie": "OWL_qualifiedCardinality", "definedBy": [ "owl" ], @@ -7231,7 +7231,7 @@ "label": "qualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7244,7 +7244,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7257,7 +7257,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7270,7 +7270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7283,7 +7283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7311,7 +7311,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:sameAs", + "curie": "OWL_sameAs", "definedBy": [ "owl" ], @@ -7335,7 +7335,7 @@ "label": "sameAs", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7348,7 +7348,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7361,7 +7361,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7374,7 +7374,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7387,7 +7387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7415,7 +7415,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:someValuesFrom", + "curie": "OWL_someValuesFrom", "definedBy": [ "owl" ], @@ -7439,7 +7439,7 @@ "label": "someValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -7452,7 +7452,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7465,7 +7465,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7478,7 +7478,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7491,7 +7491,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7504,7 +7504,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7532,7 +7532,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:sourceIndividual", + "curie": "OWL_sourceIndividual", "definedBy": [ "owl" ], @@ -7556,7 +7556,7 @@ "label": "sourceIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7569,7 +7569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7582,7 +7582,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7595,7 +7595,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7608,7 +7608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7636,7 +7636,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:targetIndividual", + "curie": "OWL_targetIndividual", "definedBy": [ "owl" ], @@ -7660,7 +7660,7 @@ "label": "targetIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7673,7 +7673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7686,7 +7686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7699,7 +7699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7712,7 +7712,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7740,7 +7740,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:targetValue", + "curie": "OWL_targetValue", "definedBy": [ "owl" ], @@ -7764,7 +7764,7 @@ "label": "targetValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -7777,7 +7777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7790,7 +7790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7803,7 +7803,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7816,7 +7816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7829,7 +7829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7857,7 +7857,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:topDataProperty", + "curie": "OWL_topDataProperty", "definedBy": [ "owl" ], @@ -7881,7 +7881,7 @@ "label": "topDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -7894,7 +7894,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -7907,7 +7907,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -7920,7 +7920,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -7933,7 +7933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -7946,7 +7946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -7975,7 +7975,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:topObjectProperty", + "curie": "OWL_topObjectProperty", "definedBy": [ "owl" ], @@ -7999,7 +7999,7 @@ "label": "topObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8012,7 +8012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -8025,7 +8025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8038,7 +8038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8051,7 +8051,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -8080,7 +8080,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:unionOf", + "curie": "OWL_unionOf", "definedBy": [ "owl" ], @@ -8104,7 +8104,7 @@ "label": "unionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -8117,7 +8117,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8130,7 +8130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -8143,7 +8143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8156,7 +8156,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8169,7 +8169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -8197,7 +8197,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:versionInfo", + "curie": "OWL_versionInfo", "definedBy": [ "owl" ], @@ -8221,7 +8221,7 @@ "label": "versionInfo", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -8234,7 +8234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8247,7 +8247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -8260,7 +8260,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8273,7 +8273,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8286,7 +8286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -8315,7 +8315,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:withRestrictions", + "curie": "OWL_withRestrictions", "definedBy": [ "owl" ], @@ -8339,7 +8339,7 @@ "label": "withRestrictions", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -8352,7 +8352,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8365,7 +8365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -8378,7 +8378,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8391,7 +8391,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8404,7 +8404,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -8433,7 +8433,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -8461,7 +8461,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -8474,7 +8474,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8487,7 +8487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8500,7 +8500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8513,7 +8513,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8542,7 +8542,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Container", + "curie": "RDFS_Container", "definedBy": [ "rdfs" ], @@ -8570,7 +8570,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -8583,7 +8583,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -8596,7 +8596,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8609,7 +8609,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8622,7 +8622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8635,7 +8635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8664,7 +8664,7 @@ "owl", "rdfs" ], - "curie": "RDFS:ContainerMembershipProperty", + "curie": "RDFS_ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -8688,7 +8688,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -8701,7 +8701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8714,7 +8714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8727,7 +8727,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8740,7 +8740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8769,7 +8769,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -8803,7 +8803,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -8816,7 +8816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -8829,7 +8829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8842,7 +8842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8855,7 +8855,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8868,7 +8868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -8897,7 +8897,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -8925,7 +8925,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -8938,7 +8938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -8951,7 +8951,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -8964,7 +8964,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -8977,7 +8977,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -8990,7 +8990,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9019,7 +9019,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -9041,7 +9041,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -9054,7 +9054,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9067,7 +9067,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9080,7 +9080,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9109,7 +9109,7 @@ "owl", "rdfs" ], - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9133,7 +9133,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -9146,7 +9146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -9159,7 +9159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9172,7 +9172,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9185,7 +9185,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9198,7 +9198,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9227,7 +9227,7 @@ "owl", "rdfs" ], - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9251,7 +9251,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -9264,7 +9264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9277,7 +9277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9290,7 +9290,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9303,7 +9303,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9332,7 +9332,7 @@ "owl", "rdfs" ], - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9359,7 +9359,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -9372,7 +9372,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9385,7 +9385,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9398,7 +9398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9411,7 +9411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9424,7 +9424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -9437,7 +9437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9466,7 +9466,7 @@ "owl", "rdfs" ], - "curie": "RDFS:member", + "curie": "RDFS_member", "definedBy": [ "rdfs" ], @@ -9490,7 +9490,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -9503,7 +9503,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9516,7 +9516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9529,7 +9529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9542,7 +9542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9555,7 +9555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9584,7 +9584,7 @@ "owl", "rdfs" ], - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9608,7 +9608,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -9621,7 +9621,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9634,7 +9634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9647,7 +9647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9660,7 +9660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9689,7 +9689,7 @@ "owl", "rdfs" ], - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -9713,7 +9713,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -9726,7 +9726,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9739,7 +9739,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9752,7 +9752,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9765,7 +9765,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9778,7 +9778,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9807,7 +9807,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -9831,7 +9831,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -9844,7 +9844,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9857,7 +9857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9870,7 +9870,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9883,7 +9883,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -9896,7 +9896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -9925,7 +9925,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -9949,7 +9949,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -9962,7 +9962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -9975,7 +9975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -9988,7 +9988,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -10001,7 +10001,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/owl/properties.json b/testcases_expected_output_api/v2/ontologies/owl/properties.json index 58ff301c0..ae793fa46 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": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -122,7 +122,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:allValuesFrom", + "curie": "OWL_allValuesFrom", "definedBy": [ "owl" ], @@ -146,7 +146,7 @@ "label": "allValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -159,7 +159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -172,7 +172,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -185,7 +185,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -198,7 +198,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -211,7 +211,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -239,7 +239,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:annotatedProperty", + "curie": "OWL_annotatedProperty", "definedBy": [ "owl" ], @@ -263,7 +263,7 @@ "label": "annotatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -276,7 +276,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -289,7 +289,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -302,7 +302,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -315,7 +315,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -328,7 +328,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -356,7 +356,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:annotatedSource", + "curie": "OWL_annotatedSource", "definedBy": [ "owl" ], @@ -380,7 +380,7 @@ "label": "annotatedSource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -393,7 +393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -406,7 +406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -419,7 +419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -432,7 +432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -445,7 +445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -473,7 +473,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:annotatedTarget", + "curie": "OWL_annotatedTarget", "definedBy": [ "owl" ], @@ -497,7 +497,7 @@ "label": "annotatedTarget", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -510,7 +510,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -523,7 +523,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -536,7 +536,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -549,7 +549,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -562,7 +562,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -590,7 +590,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:assertionProperty", + "curie": "OWL_assertionProperty", "definedBy": [ "owl" ], @@ -614,7 +614,7 @@ "label": "assertionProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -627,7 +627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -640,7 +640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -653,7 +653,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -666,7 +666,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -694,7 +694,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:backwardCompatibleWith", + "curie": "OWL_backwardCompatibleWith", "definedBy": [ "owl" ], @@ -721,7 +721,7 @@ "label": "backwardCompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -734,7 +734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -747,7 +747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -760,7 +760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -773,7 +773,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -802,7 +802,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:bottomDataProperty", + "curie": "OWL_bottomDataProperty", "definedBy": [ "owl" ], @@ -826,7 +826,7 @@ "label": "bottomDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -839,7 +839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -852,7 +852,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -865,7 +865,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -878,7 +878,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -891,7 +891,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -920,7 +920,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:bottomObjectProperty", + "curie": "OWL_bottomObjectProperty", "definedBy": [ "owl" ], @@ -944,7 +944,7 @@ "label": "bottomObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -957,7 +957,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -970,7 +970,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -983,7 +983,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -996,7 +996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1025,7 +1025,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:cardinality", + "curie": "OWL_cardinality", "definedBy": [ "owl" ], @@ -1049,7 +1049,7 @@ "label": "cardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1062,7 +1062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1075,7 +1075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1088,7 +1088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1101,7 +1101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1129,7 +1129,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:complementOf", + "curie": "OWL_complementOf", "definedBy": [ "owl" ], @@ -1153,7 +1153,7 @@ "label": "complementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1166,7 +1166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1179,7 +1179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1192,7 +1192,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1205,7 +1205,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1233,7 +1233,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:datatypeComplementOf", + "curie": "OWL_datatypeComplementOf", "definedBy": [ "owl" ], @@ -1257,7 +1257,7 @@ "label": "datatypeComplementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -1270,7 +1270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1283,7 +1283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1296,7 +1296,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1309,7 +1309,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1322,7 +1322,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1350,7 +1350,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:deprecated", + "curie": "OWL_deprecated", "definedBy": [ "owl" ], @@ -1374,7 +1374,7 @@ "label": "deprecated", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1387,7 +1387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1400,7 +1400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1413,7 +1413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1426,7 +1426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1439,7 +1439,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1468,7 +1468,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:differentFrom", + "curie": "OWL_differentFrom", "definedBy": [ "owl" ], @@ -1492,7 +1492,7 @@ "label": "differentFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1505,7 +1505,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1518,7 +1518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1531,7 +1531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1544,7 +1544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1572,7 +1572,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:disjointUnionOf", + "curie": "OWL_disjointUnionOf", "definedBy": [ "owl" ], @@ -1596,7 +1596,7 @@ "label": "disjointUnionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1609,7 +1609,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1622,7 +1622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1635,7 +1635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1648,7 +1648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1676,7 +1676,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:disjointWith", + "curie": "OWL_disjointWith", "definedBy": [ "owl" ], @@ -1700,7 +1700,7 @@ "label": "disjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1713,7 +1713,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1726,7 +1726,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1739,7 +1739,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1752,7 +1752,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1780,7 +1780,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:distinctMembers", + "curie": "OWL_distinctMembers", "definedBy": [ "owl" ], @@ -1804,7 +1804,7 @@ "label": "distinctMembers", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1817,7 +1817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1830,7 +1830,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1843,7 +1843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1856,7 +1856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1884,7 +1884,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:equivalentClass", + "curie": "OWL_equivalentClass", "definedBy": [ "owl" ], @@ -1908,7 +1908,7 @@ "label": "equivalentClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1921,7 +1921,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1934,7 +1934,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1947,7 +1947,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1960,7 +1960,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1973,7 +1973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2001,7 +2001,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:equivalentProperty", + "curie": "OWL_equivalentProperty", "definedBy": [ "owl" ], @@ -2025,7 +2025,7 @@ "label": "equivalentProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2038,7 +2038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2051,7 +2051,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2064,7 +2064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2077,7 +2077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2105,7 +2105,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:hasKey", + "curie": "OWL_hasKey", "definedBy": [ "owl" ], @@ -2129,7 +2129,7 @@ "label": "hasKey", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2142,7 +2142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2155,7 +2155,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2168,7 +2168,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2181,7 +2181,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2209,7 +2209,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:hasSelf", + "curie": "OWL_hasSelf", "definedBy": [ "owl" ], @@ -2233,7 +2233,7 @@ "label": "hasSelf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2246,7 +2246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2259,7 +2259,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2272,7 +2272,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2285,7 +2285,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2298,7 +2298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2326,7 +2326,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:hasValue", + "curie": "OWL_hasValue", "definedBy": [ "owl" ], @@ -2350,7 +2350,7 @@ "label": "hasValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -2363,7 +2363,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2376,7 +2376,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2389,7 +2389,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2402,7 +2402,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2415,7 +2415,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2443,7 +2443,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:incompatibleWith", + "curie": "OWL_incompatibleWith", "definedBy": [ "owl" ], @@ -2470,7 +2470,7 @@ "label": "incompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2483,7 +2483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2496,7 +2496,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2509,7 +2509,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2522,7 +2522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2551,7 +2551,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:intersectionOf", + "curie": "OWL_intersectionOf", "definedBy": [ "owl" ], @@ -2575,7 +2575,7 @@ "label": "intersectionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -2588,7 +2588,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2601,7 +2601,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2614,7 +2614,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2627,7 +2627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2640,7 +2640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2668,7 +2668,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:inverseOf", + "curie": "OWL_inverseOf", "definedBy": [ "owl" ], @@ -2692,7 +2692,7 @@ "label": "inverseOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2705,7 +2705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2718,7 +2718,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2731,7 +2731,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2744,7 +2744,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2772,7 +2772,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:maxCardinality", + "curie": "OWL_maxCardinality", "definedBy": [ "owl" ], @@ -2796,7 +2796,7 @@ "label": "maxCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2809,7 +2809,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2822,7 +2822,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2835,7 +2835,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2848,7 +2848,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2876,7 +2876,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:maxQualifiedCardinality", + "curie": "OWL_maxQualifiedCardinality", "definedBy": [ "owl" ], @@ -2900,7 +2900,7 @@ "label": "maxQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2913,7 +2913,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2926,7 +2926,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2939,7 +2939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2952,7 +2952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2980,7 +2980,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:members", + "curie": "OWL_members", "definedBy": [ "owl" ], @@ -3004,7 +3004,7 @@ "label": "members", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -3017,7 +3017,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3030,7 +3030,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3043,7 +3043,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3056,7 +3056,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3069,7 +3069,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3097,7 +3097,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:minCardinality", + "curie": "OWL_minCardinality", "definedBy": [ "owl" ], @@ -3121,7 +3121,7 @@ "label": "minCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3134,7 +3134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3147,7 +3147,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3160,7 +3160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3173,7 +3173,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3201,7 +3201,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:minQualifiedCardinality", + "curie": "OWL_minQualifiedCardinality", "definedBy": [ "owl" ], @@ -3225,7 +3225,7 @@ "label": "minQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3238,7 +3238,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3251,7 +3251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3264,7 +3264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3277,7 +3277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3305,7 +3305,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onClass", + "curie": "OWL_onClass", "definedBy": [ "owl" ], @@ -3329,7 +3329,7 @@ "label": "onClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3342,7 +3342,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3355,7 +3355,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3368,7 +3368,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3381,7 +3381,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3409,7 +3409,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onDataRange", + "curie": "OWL_onDataRange", "definedBy": [ "owl" ], @@ -3433,7 +3433,7 @@ "label": "onDataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -3446,7 +3446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3459,7 +3459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3472,7 +3472,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3485,7 +3485,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3498,7 +3498,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3526,7 +3526,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onDatatype", + "curie": "OWL_onDatatype", "definedBy": [ "owl" ], @@ -3550,7 +3550,7 @@ "label": "onDatatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -3563,7 +3563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3576,7 +3576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3589,7 +3589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3602,7 +3602,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3615,7 +3615,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3643,7 +3643,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onProperties", + "curie": "OWL_onProperties", "definedBy": [ "owl" ], @@ -3667,7 +3667,7 @@ "label": "onProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3680,7 +3680,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3693,7 +3693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3706,7 +3706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3719,7 +3719,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3747,7 +3747,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:onProperty", + "curie": "OWL_onProperty", "definedBy": [ "owl" ], @@ -3771,7 +3771,7 @@ "label": "onProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3784,7 +3784,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3797,7 +3797,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3810,7 +3810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3823,7 +3823,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3851,7 +3851,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:oneOf", + "curie": "OWL_oneOf", "definedBy": [ "owl" ], @@ -3875,7 +3875,7 @@ "label": "oneOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -3888,7 +3888,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3901,7 +3901,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3914,7 +3914,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3927,7 +3927,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3940,7 +3940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3968,7 +3968,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:priorVersion", + "curie": "OWL_priorVersion", "definedBy": [ "owl" ], @@ -3995,7 +3995,7 @@ "label": "priorVersion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4008,7 +4008,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4021,7 +4021,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4034,7 +4034,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4047,7 +4047,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4076,7 +4076,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:propertyChainAxiom", + "curie": "OWL_propertyChainAxiom", "definedBy": [ "owl" ], @@ -4100,7 +4100,7 @@ "label": "propertyChainAxiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4113,7 +4113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4126,7 +4126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4139,7 +4139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4152,7 +4152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4180,7 +4180,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:propertyDisjointWith", + "curie": "OWL_propertyDisjointWith", "definedBy": [ "owl" ], @@ -4204,7 +4204,7 @@ "label": "propertyDisjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4217,7 +4217,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4230,7 +4230,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4243,7 +4243,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4256,7 +4256,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4284,7 +4284,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:qualifiedCardinality", + "curie": "OWL_qualifiedCardinality", "definedBy": [ "owl" ], @@ -4308,7 +4308,7 @@ "label": "qualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4321,7 +4321,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4334,7 +4334,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4347,7 +4347,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4360,7 +4360,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4388,7 +4388,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:sameAs", + "curie": "OWL_sameAs", "definedBy": [ "owl" ], @@ -4412,7 +4412,7 @@ "label": "sameAs", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4425,7 +4425,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4438,7 +4438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4451,7 +4451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4464,7 +4464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4492,7 +4492,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:someValuesFrom", + "curie": "OWL_someValuesFrom", "definedBy": [ "owl" ], @@ -4516,7 +4516,7 @@ "label": "someValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -4529,7 +4529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4542,7 +4542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4555,7 +4555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4568,7 +4568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4581,7 +4581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4609,7 +4609,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:sourceIndividual", + "curie": "OWL_sourceIndividual", "definedBy": [ "owl" ], @@ -4633,7 +4633,7 @@ "label": "sourceIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4646,7 +4646,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4659,7 +4659,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4672,7 +4672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4685,7 +4685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4713,7 +4713,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:targetIndividual", + "curie": "OWL_targetIndividual", "definedBy": [ "owl" ], @@ -4737,7 +4737,7 @@ "label": "targetIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4750,7 +4750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4763,7 +4763,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4776,7 +4776,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4789,7 +4789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4817,7 +4817,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:targetValue", + "curie": "OWL_targetValue", "definedBy": [ "owl" ], @@ -4841,7 +4841,7 @@ "label": "targetValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -4854,7 +4854,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4867,7 +4867,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4880,7 +4880,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4893,7 +4893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4906,7 +4906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4934,7 +4934,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:topDataProperty", + "curie": "OWL_topDataProperty", "definedBy": [ "owl" ], @@ -4958,7 +4958,7 @@ "label": "topDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -4971,7 +4971,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -4984,7 +4984,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4997,7 +4997,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5010,7 +5010,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5023,7 +5023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5052,7 +5052,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:topObjectProperty", + "curie": "OWL_topObjectProperty", "definedBy": [ "owl" ], @@ -5076,7 +5076,7 @@ "label": "topObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5089,7 +5089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5102,7 +5102,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5115,7 +5115,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5128,7 +5128,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5157,7 +5157,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:unionOf", + "curie": "OWL_unionOf", "definedBy": [ "owl" ], @@ -5181,7 +5181,7 @@ "label": "unionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -5194,7 +5194,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5207,7 +5207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5220,7 +5220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5233,7 +5233,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5246,7 +5246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5274,7 +5274,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:versionInfo", + "curie": "OWL_versionInfo", "definedBy": [ "owl" ], @@ -5298,7 +5298,7 @@ "label": "versionInfo", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -5311,7 +5311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5324,7 +5324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5337,7 +5337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5350,7 +5350,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5363,7 +5363,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5392,7 +5392,7 @@ "appearsIn": [ "owl" ], - "curie": "OWL:withRestrictions", + "curie": "OWL_withRestrictions", "definedBy": [ "owl" ], @@ -5416,7 +5416,7 @@ "label": "withRestrictions", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -5429,7 +5429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5442,7 +5442,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5455,7 +5455,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5468,7 +5468,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5481,7 +5481,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5510,7 +5510,7 @@ "owl", "rdfs" ], - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5534,7 +5534,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -5547,7 +5547,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -5560,7 +5560,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5573,7 +5573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5586,7 +5586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5599,7 +5599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5628,7 +5628,7 @@ "owl", "rdfs" ], - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5652,7 +5652,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -5665,7 +5665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5678,7 +5678,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5691,7 +5691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5704,7 +5704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5733,7 +5733,7 @@ "owl", "rdfs" ], - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5760,7 +5760,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -5773,7 +5773,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5786,7 +5786,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5799,7 +5799,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5812,7 +5812,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5825,7 +5825,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -5838,7 +5838,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -5867,7 +5867,7 @@ "owl", "rdfs" ], - "curie": "RDFS:member", + "curie": "RDFS_member", "definedBy": [ "rdfs" ], @@ -5891,7 +5891,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -5904,7 +5904,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -5917,7 +5917,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -5930,7 +5930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -5943,7 +5943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -5956,7 +5956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -5985,7 +5985,7 @@ "owl", "rdfs" ], - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6009,7 +6009,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -6022,7 +6022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6035,7 +6035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6048,7 +6048,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6061,7 +6061,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6090,7 +6090,7 @@ "owl", "rdfs" ], - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -6114,7 +6114,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -6127,7 +6127,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6140,7 +6140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6153,7 +6153,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6166,7 +6166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6179,7 +6179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6208,7 +6208,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -6232,7 +6232,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -6245,7 +6245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6258,7 +6258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6271,7 +6271,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6284,7 +6284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6297,7 +6297,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -6326,7 +6326,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -6350,7 +6350,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -6363,7 +6363,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -6376,7 +6376,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -6389,7 +6389,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -6402,7 +6402,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/partof/classes.json b/testcases_expected_output_api/v2/ontologies/partof/classes.json index 03a5db5bc..e0a0012b1 100644 --- a/testcases_expected_output_api/v2/ontologies/partof/classes.json +++ b/testcases_expected_output_api/v2/ontologies/partof/classes.json @@ -28,7 +28,7 @@ ] }, "http://purl.obolibrary.org/obo/ms#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, @@ -110,7 +110,7 @@ ] }, "http://purl.obolibrary.org/obo/ms#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, diff --git a/testcases_expected_output_api/v2/ontologies/partof/entities.json b/testcases_expected_output_api/v2/ontologies/partof/entities.json index 7300bee97..a6f83f319 100644 --- a/testcases_expected_output_api/v2/ontologies/partof/entities.json +++ b/testcases_expected_output_api/v2/ontologies/partof/entities.json @@ -62,7 +62,7 @@ ] }, "http://purl.obolibrary.org/obo/ms#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, @@ -144,7 +144,7 @@ ] }, "http://purl.obolibrary.org/obo/ms#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, @@ -327,7 +327,7 @@ "appearsIn": [ "partof" ], - "curie": "part:of", + "curie": "part_of", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, diff --git a/testcases_expected_output_api/v2/ontologies/partof/properties.json b/testcases_expected_output_api/v2/ontologies/partof/properties.json index 21d0f6289..46c7edd64 100644 --- a/testcases_expected_output_api/v2/ontologies/partof/properties.json +++ b/testcases_expected_output_api/v2/ontologies/partof/properties.json @@ -37,7 +37,7 @@ "appearsIn": [ "partof" ], - "curie": "part:of", + "curie": "part_of", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, diff --git a/testcases_expected_output_api/v2/ontologies/rdfs/classes.json b/testcases_expected_output_api/v2/ontologies/rdfs/classes.json index 294cbd1b2..28ba376f7 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": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -32,7 +32,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -45,7 +45,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -58,7 +58,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -71,7 +71,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -84,7 +84,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -113,7 +113,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Container", + "curie": "RDFS_Container", "definedBy": [ "rdfs" ], @@ -141,7 +141,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -154,7 +154,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -167,7 +167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -180,7 +180,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -193,7 +193,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -206,7 +206,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -235,7 +235,7 @@ "owl", "rdfs" ], - "curie": "RDFS:ContainerMembershipProperty", + "curie": "RDFS_ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -259,7 +259,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -272,7 +272,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -285,7 +285,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -298,7 +298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -311,7 +311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -340,7 +340,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -374,7 +374,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -387,7 +387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -400,7 +400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -413,7 +413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -426,7 +426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -439,7 +439,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -468,7 +468,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -496,7 +496,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -509,7 +509,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -522,7 +522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -535,7 +535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -548,7 +548,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -561,7 +561,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -590,7 +590,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -612,7 +612,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -625,7 +625,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -638,7 +638,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -651,7 +651,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/rdfs/entities.json b/testcases_expected_output_api/v2/ontologies/rdfs/entities.json index 64ae1ca22..cc3af80be 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": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -123,7 +123,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -151,7 +151,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -164,7 +164,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -177,7 +177,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -190,7 +190,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -203,7 +203,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -232,7 +232,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Container", + "curie": "RDFS_Container", "definedBy": [ "rdfs" ], @@ -260,7 +260,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -273,7 +273,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -286,7 +286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -299,7 +299,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -312,7 +312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -325,7 +325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -354,7 +354,7 @@ "owl", "rdfs" ], - "curie": "RDFS:ContainerMembershipProperty", + "curie": "RDFS_ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -378,7 +378,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -391,7 +391,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -404,7 +404,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -417,7 +417,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -430,7 +430,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -459,7 +459,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Datatype", + "curie": "RDFS_Datatype", "definedBy": [ "rdfs" ], @@ -493,7 +493,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -506,7 +506,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -519,7 +519,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -532,7 +532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -545,7 +545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -558,7 +558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -587,7 +587,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -615,7 +615,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -628,7 +628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -641,7 +641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -654,7 +654,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -667,7 +667,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -680,7 +680,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -709,7 +709,7 @@ "owl", "rdfs" ], - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -731,7 +731,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -744,7 +744,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -757,7 +757,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -770,7 +770,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -799,7 +799,7 @@ "owl", "rdfs" ], - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -823,7 +823,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -836,7 +836,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -849,7 +849,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -862,7 +862,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -875,7 +875,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -888,7 +888,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -917,7 +917,7 @@ "owl", "rdfs" ], - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -941,7 +941,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -954,7 +954,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -967,7 +967,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -980,7 +980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -993,7 +993,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1022,7 +1022,7 @@ "owl", "rdfs" ], - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1049,7 +1049,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1062,7 +1062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1075,7 +1075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1088,7 +1088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1101,7 +1101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1114,7 +1114,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -1127,7 +1127,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1156,7 +1156,7 @@ "owl", "rdfs" ], - "curie": "RDFS:member", + "curie": "RDFS_member", "definedBy": [ "rdfs" ], @@ -1180,7 +1180,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1193,7 +1193,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1206,7 +1206,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1219,7 +1219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1232,7 +1232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1245,7 +1245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1274,7 +1274,7 @@ "owl", "rdfs" ], - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1298,7 +1298,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1311,7 +1311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1324,7 +1324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1337,7 +1337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1350,7 +1350,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1379,7 +1379,7 @@ "owl", "rdfs" ], - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -1403,7 +1403,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -1416,7 +1416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1429,7 +1429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1442,7 +1442,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1455,7 +1455,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1468,7 +1468,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1497,7 +1497,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -1521,7 +1521,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -1534,7 +1534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1547,7 +1547,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1560,7 +1560,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1573,7 +1573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1586,7 +1586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1615,7 +1615,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1639,7 +1639,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1652,7 +1652,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1665,7 +1665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1678,7 +1678,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1691,7 +1691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/rdfs/properties.json b/testcases_expected_output_api/v2/ontologies/rdfs/properties.json index 699bc12b5..6712bcf59 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": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -123,7 +123,7 @@ "owl", "rdfs" ], - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -147,7 +147,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "RDFS:Literal", + "curie": "RDFS_Literal", "definedBy": [ "rdfs" ], @@ -160,7 +160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -173,7 +173,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -186,7 +186,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -199,7 +199,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -212,7 +212,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -241,7 +241,7 @@ "owl", "rdfs" ], - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -265,7 +265,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -278,7 +278,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -291,7 +291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -304,7 +304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -317,7 +317,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -346,7 +346,7 @@ "owl", "rdfs" ], - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -373,7 +373,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -386,7 +386,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -399,7 +399,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -412,7 +412,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -425,7 +425,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -438,7 +438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -451,7 +451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -480,7 +480,7 @@ "owl", "rdfs" ], - "curie": "RDFS:member", + "curie": "RDFS_member", "definedBy": [ "rdfs" ], @@ -504,7 +504,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -517,7 +517,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -530,7 +530,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -543,7 +543,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -556,7 +556,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -569,7 +569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -598,7 +598,7 @@ "owl", "rdfs" ], - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -622,7 +622,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -635,7 +635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -648,7 +648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -661,7 +661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -674,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -703,7 +703,7 @@ "owl", "rdfs" ], - "curie": "RDFS:seeAlso", + "curie": "RDFS_seeAlso", "definedBy": [ "rdfs" ], @@ -727,7 +727,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "RDFS:Resource", + "curie": "RDFS_Resource", "definedBy": [ "rdfs" ], @@ -740,7 +740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -753,7 +753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -766,7 +766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -779,7 +779,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -792,7 +792,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -821,7 +821,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -845,7 +845,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "RDFS:Class", + "curie": "RDFS_Class", "definedBy": [ "rdfs" ], @@ -858,7 +858,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -871,7 +871,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -884,7 +884,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -897,7 +897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -910,7 +910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -939,7 +939,7 @@ "owl", "rdfs" ], - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -963,7 +963,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -976,7 +976,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -989,7 +989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1002,7 +1002,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1015,7 +1015,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/reified-bnode/classes.json b/testcases_expected_output_api/v2/ontologies/reified-bnode/classes.json index b39680cf4..776065b52 100644 --- a/testcases_expected_output_api/v2/ontologies/reified-bnode/classes.json +++ b/testcases_expected_output_api/v2/ontologies/reified-bnode/classes.json @@ -17,7 +17,7 @@ "label": "cell", "linkedEntities": { "http://example.com/reified-bnode#cell_part": { - "curie": "cell:part", + "curie": "cell_part", "hasLocalDefinition": true, "label": "cell_part", "numAppearsIn": 1.0, @@ -27,7 +27,7 @@ ] }, "http://example.com/reified-bnode#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, @@ -65,7 +65,7 @@ "appearsIn": [ "reified-bnode" ], - "curie": "cell:part", + "curie": "cell_part", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -114,7 +114,7 @@ ] }, "http://example.com/reified-bnode#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, diff --git a/testcases_expected_output_api/v2/ontologies/reified-bnode/entities.json b/testcases_expected_output_api/v2/ontologies/reified-bnode/entities.json index f61f2d945..1f763aab8 100644 --- a/testcases_expected_output_api/v2/ontologies/reified-bnode/entities.json +++ b/testcases_expected_output_api/v2/ontologies/reified-bnode/entities.json @@ -17,7 +17,7 @@ "label": "cell", "linkedEntities": { "http://example.com/reified-bnode#cell_part": { - "curie": "cell:part", + "curie": "cell_part", "hasLocalDefinition": true, "label": "cell_part", "numAppearsIn": 1.0, @@ -27,7 +27,7 @@ ] }, "http://example.com/reified-bnode#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, @@ -65,7 +65,7 @@ "appearsIn": [ "reified-bnode" ], - "curie": "cell:part", + "curie": "cell_part", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, @@ -114,7 +114,7 @@ ] }, "http://example.com/reified-bnode#part_of": { - "curie": "part:of", + "curie": "part_of", "hasLocalDefinition": true, "label": "part_of", "numAppearsIn": 1.0, @@ -152,7 +152,7 @@ "appearsIn": [ "reified-bnode" ], - "curie": "part:of", + "curie": "part_of", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, diff --git a/testcases_expected_output_api/v2/ontologies/reified-bnode/properties.json b/testcases_expected_output_api/v2/ontologies/reified-bnode/properties.json index d20189ea8..d781ce107 100644 --- a/testcases_expected_output_api/v2/ontologies/reified-bnode/properties.json +++ b/testcases_expected_output_api/v2/ontologies/reified-bnode/properties.json @@ -3,7 +3,7 @@ "appearsIn": [ "reified-bnode" ], - "curie": "part:of", + "curie": "part_of", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, diff --git a/testcases_expected_output_api/v2/ontologies/skos/classes.json b/testcases_expected_output_api/v2/ontologies/skos/classes.json index 1e7b0c2ce..5690c51bf 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": "SKOS:Collection", + "curie": "SKOS_Collection", "definedBy": [ "skos" ], @@ -28,7 +28,7 @@ "label": "Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -41,7 +41,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -54,7 +54,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -67,7 +67,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -80,7 +80,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -127,7 +127,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -147,7 +147,7 @@ "label": "Concept", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -160,7 +160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -173,7 +173,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -205,7 +205,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -228,7 +228,7 @@ "label": "Concept Scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -241,7 +241,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -254,7 +254,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -267,7 +267,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -281,7 +281,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "SKOS:example", + "curie": "SKOS_example", "definedBy": [ "skos" ], @@ -295,7 +295,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -329,7 +329,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:OrderedCollection", + "curie": "SKOS_OrderedCollection", "definedBy": [ "skos" ], @@ -356,7 +356,7 @@ "label": "Ordered Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -369,7 +369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -382,7 +382,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -395,7 +395,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "SKOS:Collection", + "curie": "SKOS_Collection", "definedBy": [ "skos" ], @@ -408,7 +408,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -422,7 +422,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], diff --git a/testcases_expected_output_api/v2/ontologies/skos/entities.json b/testcases_expected_output_api/v2/ontologies/skos/entities.json index 8c40de19a..ee46eb05b 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": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -47,7 +47,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60,7 +60,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -73,7 +73,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -87,7 +87,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -101,7 +101,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -135,7 +135,7 @@ "gitissue502", "skos" ], - "curie": "SKOS: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": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -183,7 +183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -196,7 +196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -209,7 +209,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -222,7 +222,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "SKOS:closeMatch", + "curie": "SKOS_closeMatch", "definedBy": [ "skos" ], @@ -236,7 +236,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -250,7 +250,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -264,7 +264,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -297,7 +297,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:Collection", + "curie": "SKOS_Collection", "definedBy": [ "skos" ], @@ -322,7 +322,7 @@ "label": "Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -335,7 +335,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -348,7 +348,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -361,7 +361,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -374,7 +374,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -388,7 +388,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -421,7 +421,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -441,7 +441,7 @@ "label": "Concept", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -454,7 +454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -467,7 +467,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -499,7 +499,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -522,7 +522,7 @@ "label": "Concept Scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -535,7 +535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -548,7 +548,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -561,7 +561,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -575,7 +575,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "SKOS:example", + "curie": "SKOS_example", "definedBy": [ "skos" ], @@ -589,7 +589,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -623,7 +623,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:OrderedCollection", + "curie": "SKOS_OrderedCollection", "definedBy": [ "skos" ], @@ -650,7 +650,7 @@ "label": "Ordered Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -663,7 +663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -676,7 +676,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "RDFS:subClassOf", + "curie": "RDFS_subClassOf", "definedBy": [ "rdfs" ], @@ -689,7 +689,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "SKOS:Collection", + "curie": "SKOS_Collection", "definedBy": [ "skos" ], @@ -702,7 +702,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -716,7 +716,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -749,7 +749,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:altLabel", + "curie": "SKOS_altLabel", "definedBy": [ "skos" ], @@ -783,7 +783,7 @@ "label": "alternative label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -796,7 +796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -809,7 +809,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -822,7 +822,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -835,7 +835,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -849,7 +849,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "SKOS:example", + "curie": "SKOS_example", "definedBy": [ "skos" ], @@ -883,7 +883,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -934,7 +934,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -947,7 +947,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -960,7 +960,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "SKOS:broader", + "curie": "SKOS_broader", "definedBy": [ "skos" ], @@ -974,7 +974,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "SKOS:broaderTransitive", + "curie": "SKOS_broaderTransitive", "definedBy": [ "skos" ], @@ -988,7 +988,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1002,7 +1002,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -1016,7 +1016,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowMatch": { - "curie": "SKOS:narrowMatch", + "curie": "SKOS_narrowMatch", "definedBy": [ "skos" ], @@ -1030,7 +1030,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -1063,7 +1063,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:broader", + "curie": "SKOS_broader", "definedBy": [ "skos" ], @@ -1097,7 +1097,7 @@ "label": "has broader", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1110,7 +1110,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1123,7 +1123,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1136,7 +1136,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1149,7 +1149,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "SKOS:broaderTransitive", + "curie": "SKOS_broaderTransitive", "definedBy": [ "skos" ], @@ -1163,7 +1163,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1177,7 +1177,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "SKOS:narrower", + "curie": "SKOS_narrower", "definedBy": [ "skos" ], @@ -1191,7 +1191,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -1205,7 +1205,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -1239,7 +1239,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1281,7 +1281,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1294,7 +1294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1307,7 +1307,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1321,7 +1321,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "SKOS:narrowerTransitive", + "curie": "SKOS_narrowerTransitive", "definedBy": [ "skos" ], @@ -1335,7 +1335,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -1349,7 +1349,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -1382,7 +1382,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:changeNote", + "curie": "SKOS_changeNote", "definedBy": [ "skos" ], @@ -1408,7 +1408,7 @@ "label": "change note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1421,7 +1421,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1434,7 +1434,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1447,7 +1447,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1461,7 +1461,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1494,7 +1494,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1520,7 +1520,7 @@ "label": "definition", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1533,7 +1533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1546,7 +1546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1559,7 +1559,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1592,7 +1592,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:editorialNote", + "curie": "SKOS_editorialNote", "definedBy": [ "skos" ], @@ -1618,7 +1618,7 @@ "label": "editorial note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1631,7 +1631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1644,7 +1644,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1657,7 +1657,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1671,7 +1671,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1704,7 +1704,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:example", + "curie": "SKOS_example", "definedBy": [ "skos" ], @@ -1730,7 +1730,7 @@ "label": "example", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1743,7 +1743,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1756,7 +1756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1769,7 +1769,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1783,7 +1783,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1816,7 +1816,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1855,7 +1855,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1868,7 +1868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1881,7 +1881,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1894,7 +1894,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -1907,7 +1907,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -1920,7 +1920,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1934,7 +1934,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#topConceptOf": { - "curie": "SKOS:topConceptOf", + "curie": "SKOS_topConceptOf", "definedBy": [ "skos" ], @@ -1967,7 +1967,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:hiddenLabel", + "curie": "SKOS_hiddenLabel", "definedBy": [ "skos" ], @@ -2000,7 +2000,7 @@ "label": "hidden label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2013,7 +2013,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2026,7 +2026,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2039,7 +2039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2052,7 +2052,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2085,7 +2085,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:historyNote", + "curie": "SKOS_historyNote", "definedBy": [ "skos" ], @@ -2111,7 +2111,7 @@ "label": "history note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2124,7 +2124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2137,7 +2137,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2150,7 +2150,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2164,7 +2164,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -2197,7 +2197,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2235,7 +2235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2248,7 +2248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2261,7 +2261,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -2274,7 +2274,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2288,7 +2288,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -2322,7 +2322,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2364,7 +2364,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2377,7 +2377,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2390,7 +2390,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2403,7 +2403,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2417,7 +2417,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -2450,7 +2450,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:member", + "curie": "SKOS_member", "definedBy": [ "skos" ], @@ -2481,7 +2481,7 @@ "label": "has member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2494,7 +2494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2507,7 +2507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2520,7 +2520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2533,7 +2533,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "SKOS:Collection", + "curie": "SKOS_Collection", "definedBy": [ "skos" ], @@ -2546,7 +2546,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -2559,7 +2559,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2592,7 +2592,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2634,7 +2634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2647,7 +2647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2660,7 +2660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2673,7 +2673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2686,7 +2686,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#OrderedCollection": { - "curie": "SKOS:OrderedCollection", + "curie": "SKOS_OrderedCollection", "definedBy": [ "skos" ], @@ -2699,7 +2699,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2732,7 +2732,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2783,7 +2783,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2796,7 +2796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2809,7 +2809,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broadMatch": { - "curie": "SKOS:broadMatch", + "curie": "SKOS_broadMatch", "definedBy": [ "skos" ], @@ -2823,7 +2823,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2837,7 +2837,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -2851,7 +2851,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "SKOS:narrower", + "curie": "SKOS_narrower", "definedBy": [ "skos" ], @@ -2865,7 +2865,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "SKOS:narrowerTransitive", + "curie": "SKOS_narrowerTransitive", "definedBy": [ "skos" ], @@ -2879,7 +2879,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -2912,7 +2912,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:narrower", + "curie": "SKOS_narrower", "definedBy": [ "skos" ], @@ -2946,7 +2946,7 @@ "label": "has narrower", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2959,7 +2959,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2972,7 +2972,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2985,7 +2985,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2998,7 +2998,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "SKOS:broader", + "curie": "SKOS_broader", "definedBy": [ "skos" ], @@ -3012,7 +3012,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3026,7 +3026,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "SKOS:narrowerTransitive", + "curie": "SKOS_narrowerTransitive", "definedBy": [ "skos" ], @@ -3040,7 +3040,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -3054,7 +3054,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -3088,7 +3088,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3130,7 +3130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3143,7 +3143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3156,7 +3156,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "SKOS:broaderTransitive", + "curie": "SKOS_broaderTransitive", "definedBy": [ "skos" ], @@ -3170,7 +3170,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3184,7 +3184,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -3198,7 +3198,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -3231,7 +3231,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:notation", + "curie": "SKOS_notation", "definedBy": [ "skos" ], @@ -3255,7 +3255,7 @@ "label": "notation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3268,7 +3268,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3281,7 +3281,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3295,7 +3295,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -3329,7 +3329,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -3353,7 +3353,7 @@ "label": "note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3366,7 +3366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3379,7 +3379,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3393,7 +3393,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -3427,7 +3427,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:prefLabel", + "curie": "SKOS_prefLabel", "definedBy": [ "skos" ], @@ -3462,7 +3462,7 @@ "label": "preferred label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3475,7 +3475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3488,7 +3488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3501,7 +3501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3514,7 +3514,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3547,7 +3547,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:related", + "curie": "SKOS_related", "definedBy": [ "skos" ], @@ -3577,7 +3577,7 @@ "label": "has related", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3590,7 +3590,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3603,7 +3603,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3616,7 +3616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3629,7 +3629,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3643,7 +3643,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -3676,7 +3676,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3726,7 +3726,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3739,7 +3739,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3752,7 +3752,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3766,7 +3766,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -3780,7 +3780,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#related": { - "curie": "SKOS:related", + "curie": "SKOS_related", "definedBy": [ "skos" ], @@ -3794,7 +3794,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -3827,7 +3827,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -3853,7 +3853,7 @@ "label": "scope note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3866,7 +3866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3879,7 +3879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3892,7 +3892,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3906,7 +3906,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -3939,7 +3939,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3978,7 +3978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3991,7 +3991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4004,7 +4004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4017,7 +4017,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -4030,7 +4030,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -4044,7 +4044,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -4078,7 +4078,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -4120,7 +4120,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -4133,7 +4133,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -4146,7 +4146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -4159,7 +4159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -4172,7 +4172,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -4185,7 +4185,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -4198,7 +4198,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -4212,7 +4212,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#hasTopConcept": { - "curie": "SKOS:hasTopConcept", + "curie": "SKOS_hasTopConcept", "definedBy": [ "skos" ], @@ -4226,7 +4226,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#inScheme": { - "curie": "SKOS:inScheme", + "curie": "SKOS_inScheme", "definedBy": [ "skos" ], diff --git a/testcases_expected_output_api/v2/ontologies/skos/properties.json b/testcases_expected_output_api/v2/ontologies/skos/properties.json index cb7959d0b..242ca5546 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": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -47,7 +47,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -60,7 +60,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -73,7 +73,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -87,7 +87,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -101,7 +101,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -135,7 +135,7 @@ "gitissue502", "skos" ], - "curie": "SKOS: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": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -183,7 +183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -196,7 +196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -209,7 +209,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -222,7 +222,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "SKOS:closeMatch", + "curie": "SKOS_closeMatch", "definedBy": [ "skos" ], @@ -236,7 +236,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -250,7 +250,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -264,7 +264,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -297,7 +297,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:altLabel", + "curie": "SKOS_altLabel", "definedBy": [ "skos" ], @@ -331,7 +331,7 @@ "label": "alternative label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -344,7 +344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -357,7 +357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -370,7 +370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -383,7 +383,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -397,7 +397,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "SKOS:example", + "curie": "SKOS_example", "definedBy": [ "skos" ], @@ -431,7 +431,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -482,7 +482,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -495,7 +495,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -508,7 +508,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "SKOS:broader", + "curie": "SKOS_broader", "definedBy": [ "skos" ], @@ -522,7 +522,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "SKOS:broaderTransitive", + "curie": "SKOS_broaderTransitive", "definedBy": [ "skos" ], @@ -536,7 +536,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -550,7 +550,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -564,7 +564,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowMatch": { - "curie": "SKOS:narrowMatch", + "curie": "SKOS_narrowMatch", "definedBy": [ "skos" ], @@ -578,7 +578,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -611,7 +611,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:broader", + "curie": "SKOS_broader", "definedBy": [ "skos" ], @@ -645,7 +645,7 @@ "label": "has broader", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -658,7 +658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -671,7 +671,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -684,7 +684,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -697,7 +697,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "SKOS:broaderTransitive", + "curie": "SKOS_broaderTransitive", "definedBy": [ "skos" ], @@ -711,7 +711,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -725,7 +725,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "SKOS:narrower", + "curie": "SKOS_narrower", "definedBy": [ "skos" ], @@ -739,7 +739,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -753,7 +753,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -787,7 +787,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -829,7 +829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -842,7 +842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -855,7 +855,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -869,7 +869,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "SKOS:narrowerTransitive", + "curie": "SKOS_narrowerTransitive", "definedBy": [ "skos" ], @@ -883,7 +883,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -897,7 +897,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -930,7 +930,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:changeNote", + "curie": "SKOS_changeNote", "definedBy": [ "skos" ], @@ -956,7 +956,7 @@ "label": "change note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -969,7 +969,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -982,7 +982,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -995,7 +995,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1009,7 +1009,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1042,7 +1042,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1068,7 +1068,7 @@ "label": "definition", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1081,7 +1081,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1094,7 +1094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1107,7 +1107,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1140,7 +1140,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:editorialNote", + "curie": "SKOS_editorialNote", "definedBy": [ "skos" ], @@ -1166,7 +1166,7 @@ "label": "editorial note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1179,7 +1179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1192,7 +1192,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1205,7 +1205,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1219,7 +1219,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1252,7 +1252,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:example", + "curie": "SKOS_example", "definedBy": [ "skos" ], @@ -1278,7 +1278,7 @@ "label": "example", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1291,7 +1291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1304,7 +1304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1317,7 +1317,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1331,7 +1331,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1364,7 +1364,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -1403,7 +1403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1416,7 +1416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1429,7 +1429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1442,7 +1442,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -1455,7 +1455,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -1468,7 +1468,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1482,7 +1482,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#topConceptOf": { - "curie": "SKOS:topConceptOf", + "curie": "SKOS_topConceptOf", "definedBy": [ "skos" ], @@ -1515,7 +1515,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:hiddenLabel", + "curie": "SKOS_hiddenLabel", "definedBy": [ "skos" ], @@ -1548,7 +1548,7 @@ "label": "hidden label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1561,7 +1561,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1574,7 +1574,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1587,7 +1587,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1600,7 +1600,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1633,7 +1633,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:historyNote", + "curie": "SKOS_historyNote", "definedBy": [ "skos" ], @@ -1659,7 +1659,7 @@ "label": "history note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1672,7 +1672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1685,7 +1685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1698,7 +1698,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1712,7 +1712,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -1745,7 +1745,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1783,7 +1783,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1796,7 +1796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -1809,7 +1809,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -1822,7 +1822,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1836,7 +1836,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -1870,7 +1870,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -1912,7 +1912,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -1925,7 +1925,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -1938,7 +1938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -1951,7 +1951,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -1965,7 +1965,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -1998,7 +1998,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:member", + "curie": "SKOS_member", "definedBy": [ "skos" ], @@ -2029,7 +2029,7 @@ "label": "has member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2042,7 +2042,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2055,7 +2055,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2068,7 +2068,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2081,7 +2081,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "SKOS:Collection", + "curie": "SKOS_Collection", "definedBy": [ "skos" ], @@ -2094,7 +2094,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -2107,7 +2107,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2140,7 +2140,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2182,7 +2182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -2195,7 +2195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2208,7 +2208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2221,7 +2221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -2234,7 +2234,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#OrderedCollection": { - "curie": "SKOS:OrderedCollection", + "curie": "SKOS_OrderedCollection", "definedBy": [ "skos" ], @@ -2247,7 +2247,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2280,7 +2280,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2331,7 +2331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2344,7 +2344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2357,7 +2357,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broadMatch": { - "curie": "SKOS:broadMatch", + "curie": "SKOS_broadMatch", "definedBy": [ "skos" ], @@ -2371,7 +2371,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2385,7 +2385,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -2399,7 +2399,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "SKOS:narrower", + "curie": "SKOS_narrower", "definedBy": [ "skos" ], @@ -2413,7 +2413,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "SKOS:narrowerTransitive", + "curie": "SKOS_narrowerTransitive", "definedBy": [ "skos" ], @@ -2427,7 +2427,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -2460,7 +2460,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:narrower", + "curie": "SKOS_narrower", "definedBy": [ "skos" ], @@ -2494,7 +2494,7 @@ "label": "has narrower", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -2507,7 +2507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2520,7 +2520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2533,7 +2533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2546,7 +2546,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "SKOS:broader", + "curie": "SKOS_broader", "definedBy": [ "skos" ], @@ -2560,7 +2560,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2574,7 +2574,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "SKOS:narrowerTransitive", + "curie": "SKOS_narrowerTransitive", "definedBy": [ "skos" ], @@ -2588,7 +2588,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -2602,7 +2602,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -2636,7 +2636,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2678,7 +2678,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2691,7 +2691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -2704,7 +2704,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "SKOS:broaderTransitive", + "curie": "SKOS_broaderTransitive", "definedBy": [ "skos" ], @@ -2718,7 +2718,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2732,7 +2732,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -2746,7 +2746,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -2779,7 +2779,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:notation", + "curie": "SKOS_notation", "definedBy": [ "skos" ], @@ -2803,7 +2803,7 @@ "label": "notation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2816,7 +2816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2829,7 +2829,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2843,7 +2843,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -2877,7 +2877,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -2901,7 +2901,7 @@ "label": "note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -2914,7 +2914,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -2927,7 +2927,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -2941,7 +2941,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -2975,7 +2975,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:prefLabel", + "curie": "SKOS_prefLabel", "definedBy": [ "skos" ], @@ -3010,7 +3010,7 @@ "label": "preferred label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3023,7 +3023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3036,7 +3036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3049,7 +3049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3062,7 +3062,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3095,7 +3095,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:related", + "curie": "SKOS_related", "definedBy": [ "skos" ], @@ -3125,7 +3125,7 @@ "label": "has related", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "RDFS:comment", + "curie": "RDFS_comment", "definedBy": [ "rdfs" ], @@ -3138,7 +3138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3151,7 +3151,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3164,7 +3164,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3177,7 +3177,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3191,7 +3191,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -3224,7 +3224,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3274,7 +3274,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3287,7 +3287,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3300,7 +3300,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3314,7 +3314,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "SKOS:mappingRelation", + "curie": "SKOS_mappingRelation", "definedBy": [ "skos" ], @@ -3328,7 +3328,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#related": { - "curie": "SKOS:related", + "curie": "SKOS_related", "definedBy": [ "skos" ], @@ -3342,7 +3342,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "SKOS:semanticRelation", + "curie": "SKOS_semanticRelation", "definedBy": [ "skos" ], @@ -3375,7 +3375,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -3401,7 +3401,7 @@ "label": "scope note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3414,7 +3414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3427,7 +3427,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3440,7 +3440,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3454,7 +3454,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "SKOS:note", + "curie": "SKOS_note", "definedBy": [ "skos" ], @@ -3487,7 +3487,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3526,7 +3526,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3539,7 +3539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3552,7 +3552,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3565,7 +3565,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -3578,7 +3578,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3592,7 +3592,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "SKOS:scopeNote", + "curie": "SKOS_scopeNote", "definedBy": [ "skos" ], @@ -3626,7 +3626,7 @@ "appearsIn": [ "skos" ], - "curie": "SKOS: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": "RDFS:domain", + "curie": "RDFS_domain", "definedBy": [ "rdfs" ], @@ -3668,7 +3668,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "RDFS:isDefinedBy", + "curie": "RDFS_isDefinedBy", "definedBy": [ "rdfs" ], @@ -3681,7 +3681,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "RDFS:label", + "curie": "RDFS_label", "definedBy": [ "rdfs" ], @@ -3694,7 +3694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "RDFS:range", + "curie": "RDFS_range", "definedBy": [ "rdfs" ], @@ -3707,7 +3707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "RDFS:subPropertyOf", + "curie": "RDFS_subPropertyOf", "definedBy": [ "rdfs" ], @@ -3720,7 +3720,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "SKOS:Concept", + "curie": "SKOS_Concept", "definedBy": [ "skos" ], @@ -3733,7 +3733,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "SKOS:ConceptScheme", + "curie": "SKOS_ConceptScheme", "definedBy": [ "skos" ], @@ -3746,7 +3746,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "SKOS:definition", + "curie": "SKOS_definition", "definedBy": [ "skos" ], @@ -3760,7 +3760,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#hasTopConcept": { - "curie": "SKOS:hasTopConcept", + "curie": "SKOS_hasTopConcept", "definedBy": [ "skos" ], @@ -3774,7 +3774,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#inScheme": { - "curie": "SKOS:inScheme", + "curie": "SKOS_inScheme", "definedBy": [ "skos" ], diff --git a/testcases_expected_output_api/v2/ontologies/xmpl/classes.json b/testcases_expected_output_api/v2/ontologies/xmpl/classes.json index a6471eafb..cd1638b61 100644 --- a/testcases_expected_output_api/v2/ontologies/xmpl/classes.json +++ b/testcases_expected_output_api/v2/ontologies/xmpl/classes.json @@ -3,7 +3,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:XMPL000001", + "curie": "XMPL_XMPL000001", "definedBy": [ "xmpl" ], @@ -26,7 +26,7 @@ ], "linkedEntities": { "http://exmpl.org/xmpl/Preferred_name": { - "curie": "XMPL:Preferred_name", + "curie": "XMPL_Preferred_name", "definedBy": [ "xmpl" ], @@ -40,7 +40,7 @@ ] }, "http://exmpl.org/xmpl/Synonym": { - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -76,7 +76,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:XMPL000002", + "curie": "XMPL_XMPL000002", "definedBy": [ "xmpl" ], @@ -105,7 +105,7 @@ ], "linkedEntities": { "http://exmpl.org/xmpl/Preferred_name": { - "curie": "XMPL:Preferred_name", + "curie": "XMPL_Preferred_name", "definedBy": [ "xmpl" ], @@ -119,7 +119,7 @@ ] }, "http://exmpl.org/xmpl/Synonym": { - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -133,7 +133,7 @@ ] }, "http://exmpl.org/xmpl/XMPL000001": { - "curie": "XMPL:XMPL000001", + "curie": "XMPL_XMPL000001", "definedBy": [ "xmpl" ], @@ -171,7 +171,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:XMPL000003", + "curie": "XMPL_XMPL000003", "definedBy": [ "xmpl" ], @@ -200,7 +200,7 @@ ], "linkedEntities": { "http://exmpl.org/xmpl/Synonym": { - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -214,7 +214,7 @@ ] }, "http://exmpl.org/xmpl/XMPL000001": { - "curie": "XMPL:XMPL000001", + "curie": "XMPL_XMPL000001", "definedBy": [ "xmpl" ], diff --git a/testcases_expected_output_api/v2/ontologies/xmpl/entities.json b/testcases_expected_output_api/v2/ontologies/xmpl/entities.json index cf4432b98..233fe79f0 100644 --- a/testcases_expected_output_api/v2/ontologies/xmpl/entities.json +++ b/testcases_expected_output_api/v2/ontologies/xmpl/entities.json @@ -3,7 +3,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:Preferred_name", + "curie": "XMPL_Preferred_name", "definedBy": [ "xmpl" ], @@ -37,7 +37,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -71,7 +71,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:XMPL000001", + "curie": "XMPL_XMPL000001", "definedBy": [ "xmpl" ], @@ -94,7 +94,7 @@ ], "linkedEntities": { "http://exmpl.org/xmpl/Preferred_name": { - "curie": "XMPL:Preferred_name", + "curie": "XMPL_Preferred_name", "definedBy": [ "xmpl" ], @@ -108,7 +108,7 @@ ] }, "http://exmpl.org/xmpl/Synonym": { - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -144,7 +144,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:XMPL000002", + "curie": "XMPL_XMPL000002", "definedBy": [ "xmpl" ], @@ -173,7 +173,7 @@ ], "linkedEntities": { "http://exmpl.org/xmpl/Preferred_name": { - "curie": "XMPL:Preferred_name", + "curie": "XMPL_Preferred_name", "definedBy": [ "xmpl" ], @@ -187,7 +187,7 @@ ] }, "http://exmpl.org/xmpl/Synonym": { - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -201,7 +201,7 @@ ] }, "http://exmpl.org/xmpl/XMPL000001": { - "curie": "XMPL:XMPL000001", + "curie": "XMPL_XMPL000001", "definedBy": [ "xmpl" ], @@ -239,7 +239,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:XMPL000003", + "curie": "XMPL_XMPL000003", "definedBy": [ "xmpl" ], @@ -268,7 +268,7 @@ ], "linkedEntities": { "http://exmpl.org/xmpl/Synonym": { - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ], @@ -282,7 +282,7 @@ ] }, "http://exmpl.org/xmpl/XMPL000001": { - "curie": "XMPL:XMPL000001", + "curie": "XMPL_XMPL000001", "definedBy": [ "xmpl" ], diff --git a/testcases_expected_output_api/v2/ontologies/xmpl/properties.json b/testcases_expected_output_api/v2/ontologies/xmpl/properties.json index 0f92d9bcd..c0f6b5d49 100644 --- a/testcases_expected_output_api/v2/ontologies/xmpl/properties.json +++ b/testcases_expected_output_api/v2/ontologies/xmpl/properties.json @@ -3,7 +3,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:Preferred_name", + "curie": "XMPL_Preferred_name", "definedBy": [ "xmpl" ], @@ -37,7 +37,7 @@ "appearsIn": [ "xmpl" ], - "curie": "XMPL:Synonym", + "curie": "XMPL_Synonym", "definedBy": [ "xmpl" ],