From e59669bc664584e6c2d799f9e243e7729942b6c2 Mon Sep 17 00:00:00 2001 From: Richard Swinbank Date: Sat, 22 Oct 2022 17:14:28 +0100 Subject: [PATCH] Create TableCatalog.json --- Labs/TableCatalog.json | 55 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 Labs/TableCatalog.json diff --git a/Labs/TableCatalog.json b/Labs/TableCatalog.json new file mode 100644 index 0000000..d656df7 --- /dev/null +++ b/Labs/TableCatalog.json @@ -0,0 +1,55 @@ +[ + { + "entityName": "ProductCategory", + "translator": { + "type": "TabularTranslator", + "mappings": [ + { + "source": { + "type": "Int32", + "ordinal": 1 + }, + "sink": { + "name": "ProductCategoryID", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Int32", + "ordinal": 2 + }, + "sink": { + "name": "Name", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "Guid", + "ordinal": 3 + }, + "sink": { + "name": "rowguid", + "physicalType": "UTF8" + } + }, + { + "source": { + "type": "DateTime", + "ordinal": 4 + }, + "sink": { + "name": "ModifiedDate", + "physicalType": "UTF8" + } + } + ], + "typeConversion": true, + "typeConversionSettings": { + "allowDataTruncation": true, + "treatBooleanAsNumber": false + } + } + } +]