Skip to content

ur_ingest_session_fs_path

Description

Immutable ingest session file system path represents a discovery or “walk” path. If the session included a file system scan, then root_path is the root file system path that was scanned. If the session was discovering resources in another target then root_path would be representative of the target path (could be a URI).

Table Definition
CREATE TABLE "ur_ingest_session_fs_path" (
"ur_ingest_session_fs_path_id" VARCHAR PRIMARY KEY NOT NULL,
"ingest_session_id" VARCHAR NOT NULL,
"root_path" TEXT NOT NULL,
"elaboration" TEXT CHECK(json_valid(elaboration) OR elaboration IS NULL),
"created_at" TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP,
"created_by" TEXT DEFAULT 'UNKNOWN',
"updated_at" TIMESTAMPTZ,
"updated_by" TEXT,
"deleted_at" TIMESTAMPTZ,
"deleted_by" TEXT,
"activity_log" TEXT,
FOREIGN KEY("ingest_session_id") REFERENCES "ur_ingest_session"("ur_ingest_session_id"),
UNIQUE("ingest_session_id", "root_path", "created_at")
)

Columns

NameTypeDefaultNullableChildrenParentsComment
ur_ingest_session_fs_path_idVARCHARfalseuniform_resource ur_ingest_session_fs_path_entry{“isSqlDomainZodDescrMeta”:true ,“isVarChar”:true }
ingest_session_idVARCHARfalseur_ingest_session{“isSqlDomainZodDescrMeta”:true ,“isVarChar”:true }
root_pathTEXTfalse
elaborationTEXTtrue{“isSqlDomainZodDescrMeta”:true ,“isJsonText”:true }
created_atTIMESTAMPTZCURRENT_TIMESTAMPtrue
created_byTEXT’UNKNOWN’true
updated_atTIMESTAMPTZtrue
updated_byTEXTtrue
deleted_atTIMESTAMPTZtrue
deleted_byTEXTtrue
activity_logTEXTtrue{“isSqlDomainZodDescrMeta”:true ,“isJsonSqlDomain”:true }

Constraints

NameTypeDefinition
ur_ingest_session_fs_path_idPRIMARY KEYPRIMARY KEY (ur_ingest_session_fs_path_id)
- (Foreign key ID: 0)FOREIGN KEYFOREIGN KEY (ingest_session_id) REFERENCES ur_ingest_session (ur_ingest_session_id) ON UPDATE NO ACTION ON DELETE NO ACTION MATCH NONE
sqlite_autoindex_ur_ingest_session_fs_path_2UNIQUEUNIQUE (ingest_session_id, root_path, created_at)
sqlite_autoindex_ur_ingest_session_fs_path_1PRIMARY KEYPRIMARY KEY (ur_ingest_session_fs_path_id)
-CHECKCHECK(json_valid(elaboration) OR elaboration IS NULL)

Indexes

NameDefinition
idx_ur_ingest_session_fs_path__ingest_session_id__root_pathCREATE INDEX “idx_ur_ingest_session_fs_path__ingest_session_id__root_path” ON “ur_ingest_session_fs_path”(“ingest_session_id”, “root_path”)
sqlite_autoindex_ur_ingest_session_fs_path_2UNIQUE (ingest_session_id, root_path, created_at)
sqlite_autoindex_ur_ingest_session_fs_path_1PRIMARY KEY (ur_ingest_session_fs_path_id)

Relations

er