Amplitude · Schema

CohortStatusResponse

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
request_id string The ID of the export request.
status string The status of the export job.
View JSON Schema on GitHub

JSON Schema

amplitude-cohortstatusresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CohortStatusResponse",
  "title": "CohortStatusResponse",
  "type": "object",
  "properties": {
    "request_id": {
      "type": "string",
      "description": "The ID of the export request."
    },
    "status": {
      "type": "string",
      "description": "The status of the export job.",
      "enum": [
        "queued",
        "computing",
        "complete",
        "failed"
      ]
    }
  }
}