Common metadata for a resource where project_id or space_id must be present.

interface TextExtractionMetadata {
    created_at: string;
    id: string;
    project_id?: string;
    space_id?: string;
}

Properties

created_at: string

The time when the resource was created.

id: string

The id of the resource.

project_id?: string

The project that contains the resource. Either space_id or project_id has to be given.

space_id?: string

The space that contains the resource. Either space_id or project_id has to be given.