Reactome · Schema

SchemaNode

Biological PathwaysBioinformaticsLife SciencesPathway AnalysisGene EnrichmentMolecular InteractionsSystems BiologyOpen Science

Properties

Name Type Description
children array
className string
count integer
View JSON Schema on GitHub

JSON Schema

content-service-schemanode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://reactome.org/schemas/content-service/SchemaNode",
  "title": "SchemaNode",
  "type": "object",
  "properties": {
    "children": {
      "uniqueItems": true,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SchemaNode"
      }
    },
    "className": {
      "type": "string"
    },
    "count": {
      "type": "integer",
      "format": "int32"
    }
  }
}