diff --git a/bento_lib/schemas/bento.py b/bento_lib/schemas/bento.py index fb19155f..fe03a630 100644 --- a/bento_lib/schemas/bento.py +++ b/bento_lib/schemas/bento.py @@ -2,12 +2,8 @@ __all__ = [ - "BENTO_INGEST_SCHEMA", "BENTO_DATA_USE_SCHEMA", ] -# TODO: Refactor this schema and semi-combine with workflow schema -BENTO_INGEST_SCHEMA = load_json_schema("bento_ingest.schema.json") - BENTO_DATA_USE_SCHEMA = load_json_schema("bento_data_use.schema.json") diff --git a/bento_lib/schemas/bento_ingest.schema.json b/bento_lib/schemas/bento_ingest.schema.json deleted file mode 100644 index 4c98b226..00000000 --- a/bento_lib/schemas/bento_ingest.schema.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "$id": "https://raw.githubusercontent.com/bento-platform/bento_lib/master/bento_lib/schemas/bento_ingest.schema.json", - "$schema": "http://json-schema.org/draft-07/schema#", - "description": "Bento Ingestion Endpoint", - "type": "object", - "required": [ - "table_id", - "workflow_id", - "workflow_outputs", - "workflow_params" - ], - "properties": { - "table_id": {"type": "string"}, - "workflow_id": {"type": "string"}, - "workflow_outputs": {"type": "object"}, - "workflow_params": {"type": "object"} - } -}