Reactome · Schema

GroupedResult

Biological PathwaysBioinformaticsLife SciencesPathway AnalysisGene EnrichmentMolecular InteractionsSystems BiologyOpen Science

Properties

Name Type Description
numberOfGroups integer
numberOfMatches integer
results array
rowCount integer
targetResults array
View JSON Schema on GitHub

JSON Schema

content-service-groupedresult.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://reactome.org/schemas/content-service/GroupedResult",
  "title": "GroupedResult",
  "type": "object",
  "properties": {
    "numberOfGroups": {
      "type": "integer",
      "format": "int32"
    },
    "numberOfMatches": {
      "type": "integer",
      "format": "int32"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Result"
      }
    },
    "rowCount": {
      "type": "integer",
      "format": "int32"
    },
    "targetResults": {
      "uniqueItems": true,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TargetResult"
      }
    }
  }
}