PostHog · Schema

TaskRunArtifactPresignResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
url string Presigned URL for downloading the artifact
expires_in integer URL expiry in seconds
View JSON Schema on GitHub

JSON Schema

posthog-taskrunartifactpresignresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskRunArtifactPresignResponse",
  "title": "TaskRunArtifactPresignResponse",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Presigned URL for downloading the artifact"
    },
    "expires_in": {
      "type": "integer",
      "description": "URL expiry in seconds"
    }
  },
  "required": [
    "expires_in",
    "url"
  ]
}