get_or_create_tag
Retrieve the specified dbnl Test Tag or create a new one if it does not exist
dbnl.experimental.get_or_create_tag(
*,
project_id: str,
name: str,
description: Optional[str] = None,
) -> Dict[str, Any]:Parameters
Arguments
Description
Returns
Type
Description
Test Tag JSON Schema
{
// Tag metadata
"id": string,
"org_id": string,
"created_at": timestamp,
"updated_at": timestamp,
// Tag data
"name": string,
"author_id": string,
"description": string?,
"project_id": string,
}
Was this helpful?

