Reactome · Schema

PathwayBrowserNode

Biological PathwaysBioinformaticsLife SciencesPathway AnalysisGene EnrichmentMolecular InteractionsSystems BiologyOpen Science

Properties

Name Type Description
children array
diagram boolean
name string
species string
stId string
type string
url string
View JSON Schema on GitHub

JSON Schema

content-service-pathwaybrowsernode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://reactome.org/schemas/content-service/PathwayBrowserNode",
  "title": "PathwayBrowserNode",
  "type": "object",
  "properties": {
    "children": {
      "uniqueItems": true,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PathwayBrowserNode"
      }
    },
    "diagram": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "species": {
      "type": "string"
    },
    "stId": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  }
}