Skip to content

Commit 26457d0

Browse files
authored
feat(specs): add the owner attributes to ingestion resources (#4616)
1 parent 1251112 commit 26457d0

File tree

6 files changed

+16
-0
lines changed

6 files changed

+16
-0
lines changed

specs/ingestion/common/schemas/authentication.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Authentication:
1111
$ref: './common.yml#/name'
1212
platform:
1313
$ref: '#/Platform'
14+
owner:
15+
$ref: './common.yml#/owner'
1416
input:
1517
$ref: '#/AuthInputPartial'
1618
createdAt:

specs/ingestion/common/schemas/common.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ name:
8282
type: string
8383
description: Descriptive name for the resource.
8484

85+
owner:
86+
oneOf:
87+
- type: string
88+
description: Owner of the resource.
89+
- type: 'null'
90+
8591
Window:
8692
type: object
8793
additionalProperties: false

specs/ingestion/common/schemas/destination.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Destination:
99
$ref: '#/DestinationType'
1010
name:
1111
$ref: './common.yml#/name'
12+
owner:
13+
$ref: './common.yml#/owner'
1214
input:
1315
$ref: '#/DestinationInput'
1416
createdAt:

specs/ingestion/common/schemas/source.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Source:
88
$ref: '#/SourceType'
99
name:
1010
type: string
11+
owner:
12+
$ref: './common.yml#/owner'
1113
input:
1214
$ref: '#/SourceInput'
1315
authenticationID:

specs/ingestion/common/schemas/task.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Task:
1414
$ref: '#/LastRun'
1515
nextRun:
1616
$ref: '#/NextRun'
17+
owner:
18+
$ref: './common.yml#/owner'
1719
input:
1820
$ref: '#/TaskInput'
1921
enabled:

specs/ingestion/common/schemas/transformation.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Transformation:
1212
$ref: '#/Name'
1313
description:
1414
$ref: '#/Description'
15+
owner:
16+
$ref: './common.yml#/owner'
1517
createdAt:
1618
$ref: './common.yml#/createdAt'
1719
updatedAt:

0 commit comments

Comments
 (0)