Skip to content

Commit

Permalink
Merge pull request #68 from ArzamastsevVladyslav/fix/HCK-4119-json-mode
Browse files Browse the repository at this point in the history
Made Oracle json data type more consistent with other targets
  • Loading branch information
ArzamastsevVladyslav authored Oct 20, 2023
2 parents 39b28a8 + 0f69f8e commit 354d405
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 0 deletions.
49 changes: 49 additions & 0 deletions adapter/0.1.32.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/**
* Copyright © 2016-2018 by IntegrIT S.A. dba Hackolade. All rights reserved.
*
* The copyright to the computer software herein is the property of IntegrIT S.A.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.
*
* {
* "add": {
* "entity": [<names of new property>],
* "container": [<names of new property>],
* "model": [<names of new property>],
* "view": [<names of new property>],
* "field": {
* "<type>": [<names of new property>]
* }
* },
* "delete": {
* "entity": [<names of new property>],
* "container": [<names of new property>],
* "model": [<names of new property>],
* "view": [<names of new property>],
* "field": {
* "<type>": [<names of new property>]
* }
* },
* "modify": {
* "entity": [
* {
* "from": { <properties that identify record> },
* "to": { <properties that need to be changed> }
* }
* ],
* "container": [],
* "model": [],
* "view": [],
* "field": []
* },
* }
*/

{
"add": {
"field": {
"json": ["mode"]
}
}
}
31 changes: 31 additions & 0 deletions properties_pane/field_level/fieldLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6687,6 +6687,37 @@ making sure that you maintain a proper JSON format.
]
}
},
{
"propertyName": "Subtype",
"propertyKeyword": "mode",
"propertyType": "select",
"options": [
"json"
],
"data": "options",
"defaultValue": "json",
"dependency": {
"type": "not",
"values": [
{
"type": "and",
"values": [
{
"level": "root",
"key": "viewOn",
"exist": true
},
{
"level": "root",
"key": "duality",
"value": true
}
]
}
]
},
"valueType": "string"
},
{
"propertyName": "JSON Types",
"propertyKeyword": "subtype",
Expand Down
1 change: 1 addition & 0 deletions types/json.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"foreignCollection": "",
"foreignField": [],
"enabled": true,
"mode": "json",
"properties": [],
"dependencies": [],
"minProperties": "",
Expand Down

0 comments on commit 354d405

Please sign in to comment.