PostHog · Schema

TaskRunArtifactsUploadResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
artifacts array Updated list of artifacts on the run
View JSON Schema on GitHub

JSON Schema

posthog-taskrunartifactsuploadresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskRunArtifactsUploadResponse",
  "title": "TaskRunArtifactsUploadResponse",
  "type": "object",
  "properties": {
    "artifacts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TaskRunArtifactResponse"
      },
      "description": "Updated list of artifacts on the run"
    }
  },
  "required": [
    "artifacts"
  ]
}