Reactome · Schema

FoundEntities

Biological PathwaysBioinformaticsLife SciencesPathway AnalysisGene EnrichmentMolecular InteractionsSystems BiologyOpen Science

Properties

Name Type Description
expNames array
found integer
identifiers array
resourceToMappedEntitiesCount object
resources array
totalEntitiesCount integer
View JSON Schema on GitHub

JSON Schema

analysis-service-foundentities.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://reactome.org/schemas/analysis-service/FoundEntities",
  "title": "FoundEntities",
  "type": "object",
  "properties": {
    "expNames": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "found": {
      "type": "integer",
      "format": "int32"
    },
    "identifiers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FoundEntity"
      }
    },
    "resourceToMappedEntitiesCount": {
      "type": "object",
      "additionalProperties": {
        "type": "integer",
        "format": "int32"
      }
    },
    "resources": {
      "uniqueItems": true,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "totalEntitiesCount": {
      "type": "integer",
      "format": "int32"
    }
  }
}