PostHog · Schema

TaskStagedArtifactsFinalizeUploadResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
artifacts array Finalized staged artifacts available for attachment to a new run
View JSON Schema on GitHub

JSON Schema

posthog-taskstagedartifactsfinalizeuploadresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskStagedArtifactsFinalizeUploadResponse",
  "title": "TaskStagedArtifactsFinalizeUploadResponse",
  "type": "object",
  "properties": {
    "artifacts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TaskRunArtifactResponse"
      },
      "description": "Finalized staged artifacts available for attachment to a new run"
    }
  },
  "required": [
    "artifacts"
  ]
}