Reactome · Schema

PathwaySummary

Biological PathwaysBioinformaticsLife SciencesPathway AnalysisGene EnrichmentMolecular InteractionsSystems BiologyOpen Science

Properties

Name Type Description
dbId integer
entities object
inDisease boolean
llp boolean
name string
reactions object
species object
stId string
View JSON Schema on GitHub

JSON Schema

analysis-service-pathwaysummary.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://reactome.org/schemas/analysis-service/PathwaySummary",
  "title": "PathwaySummary",
  "type": "object",
  "properties": {
    "dbId": {
      "type": "integer",
      "format": "int64"
    },
    "entities": {
      "$ref": "#/components/schemas/EntityStatistics"
    },
    "inDisease": {
      "type": "boolean"
    },
    "llp": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "reactions": {
      "$ref": "#/components/schemas/ReactionStatistics"
    },
    "species": {
      "$ref": "#/components/schemas/SpeciesSummary"
    },
    "stId": {
      "type": "string"
    }
  }
}