Skip to main content
Version: Next

TaskPublicConfig

Public-facing configuration of a published task, used by the task's public landing page. The task's publication state is determined by publishedAt - a task is published when publishedAt is set and unpublished when it is null.

Index

Properties

dataset_name

dataset_name: str | None

Name of the dataset from the Actor's dataset schema whose results are displayed. When null, the Actor's default dataset is used. That is, the only dataset the Actor declares, or the one named default when it declares several.

dataset_view

dataset_view: str | None

Key of the dataset view from the Actor's dataset schema used to display results. Must be one of the views declared on the resolved dataset. You can't publish a task without it.

input_schema_fields

input_schema_fields: list[str] | None

Names of the task input fields displayed on the public task page.

model_config

model_config: Undefined

published_at

published_at: AwareDatetime | None

Time when the task was published, or null if the task isn't published. This field is server-controlled. To publish or unpublish a task, use the Update task endpoint and set isPublic.

seo_description

seo_description: str | None

Description of the Actor task to display by search engines such as Google. Defaults to the task description. At most 160 characters.

seo_title

seo_title: str | None

Name of the Actor task to display by search engines such as Google. Defaults to the task title. At most 60 characters.