ART Framework API Docs
    Preparing search index...

    Interface A2ATaskMetadata

    Represents metadata about A2A task execution.

    A2ATaskMetadata

    interface A2ATaskMetadata {
        completedAt?: number;
        correlationId?: string;
        createdAt: number;
        delegatedAt?: number;
        estimatedCompletionMs?: number;
        initiatedBy?: string;
        lastUpdated?: number;
        maxRetries?: number;
        retryCount?: number;
        startedAt?: number;
        tags?: string[];
        timeoutMs?: number;
        updatedAt: number;
    }
    Index

    Properties

    completedAt?: number

    Timestamp when the task was completed/failed (if applicable).

    correlationId?: string

    Correlation ID for tracking related tasks across the system.

    createdAt: number

    Timestamp when the task was created (Unix timestamp in milliseconds).

    delegatedAt?: number

    Timestamp when the task was delegated to a remote agent (if applicable).

    estimatedCompletionMs?: number

    Estimated completion time in milliseconds (if provided by remote agent).

    initiatedBy?: string

    The user or system that initiated this task.

    lastUpdated?: number

    Timestamp when the task was last updated (for compatibility).

    maxRetries?: number

    Maximum number of retry attempts allowed.

    retryCount?: number

    Number of retry attempts made for this task.

    startedAt?: number

    Timestamp when the task was started (if applicable).

    tags?: string[]

    Tags or labels for categorizing tasks.

    timeoutMs?: number

    Timeout duration in milliseconds.

    updatedAt: number

    Timestamp when the task was last updated (Unix timestamp in milliseconds).