-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
382 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include README.md | ||
include LICENSE | ||
include dagster_ext/py.typed | ||
include json_schema/*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
{ | ||
"$defs": { | ||
"ExtDataProvenance": { | ||
"properties": { | ||
"code_version": { | ||
"title": "Code Version", | ||
"type": "string" | ||
}, | ||
"input_data_versions": { | ||
"additionalProperties": { | ||
"type": "string" | ||
}, | ||
"title": "Input Data Versions", | ||
"type": "object" | ||
}, | ||
"is_user_provided": { | ||
"title": "Is User Provided", | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
"code_version", | ||
"input_data_versions", | ||
"is_user_provided" | ||
], | ||
"title": "ExtDataProvenance", | ||
"type": "object" | ||
}, | ||
"ExtPartitionKeyRange": { | ||
"properties": { | ||
"start": { | ||
"title": "Start", | ||
"type": "string" | ||
}, | ||
"end": { | ||
"title": "End", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"start", | ||
"end" | ||
], | ||
"title": "ExtPartitionKeyRange", | ||
"type": "object" | ||
}, | ||
"ExtTimeWindow": { | ||
"properties": { | ||
"start": { | ||
"title": "Start", | ||
"type": "string" | ||
}, | ||
"end": { | ||
"title": "End", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"start", | ||
"end" | ||
], | ||
"title": "ExtTimeWindow", | ||
"type": "object" | ||
} | ||
}, | ||
"properties": { | ||
"asset_keys": { | ||
"anyOf": [ | ||
{ | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"title": "Asset Keys" | ||
}, | ||
"code_version_by_asset_key": { | ||
"anyOf": [ | ||
{ | ||
"additionalProperties": { | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"type": "object" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"title": "Code Version By Asset Key" | ||
}, | ||
"provenance_by_asset_key": { | ||
"anyOf": [ | ||
{ | ||
"additionalProperties": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/$defs/ExtDataProvenance" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"type": "object" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"title": "Provenance By Asset Key" | ||
}, | ||
"partition_key": { | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"title": "Partition Key" | ||
}, | ||
"partition_key_range": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/$defs/ExtPartitionKeyRange" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"partition_time_window": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/$defs/ExtTimeWindow" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"run_id": { | ||
"title": "Run Id", | ||
"type": "string" | ||
}, | ||
"job_name": { | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"title": "Job Name" | ||
}, | ||
"retry_number": { | ||
"title": "Retry Number", | ||
"type": "integer" | ||
}, | ||
"extras": { | ||
"title": "Extras", | ||
"type": "object" | ||
} | ||
}, | ||
"required": [ | ||
"asset_keys", | ||
"code_version_by_asset_key", | ||
"provenance_by_asset_key", | ||
"partition_key", | ||
"partition_key_range", | ||
"partition_time_window", | ||
"run_id", | ||
"job_name", | ||
"retry_number", | ||
"extras" | ||
], | ||
"title": "ExtContextData", | ||
"type": "object" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"properties": { | ||
"method": { | ||
"title": "Method", | ||
"type": "string" | ||
}, | ||
"params": { | ||
"anyOf": [ | ||
{ | ||
"type": "object" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"title": "Params" | ||
} | ||
}, | ||
"required": [ | ||
"method", | ||
"params" | ||
], | ||
"title": "ExtMessage", | ||
"type": "object" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.