aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/mapping/primary-db/primary-db-complex.json
blob: 53e2a11c31de650ea36dd317585f36df77f7be5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
	"location": {
		"name": "location",
		"data-type": "dt-location",
		"source": {
			"primary-db": {
				"query": "SELECT db-country, db-state FROM DEVICE_PROFILE WHERE profile_name = :profile_name",
				"input-key-mapping": {
					"profile_name": "profile_name"
				},
				"output-key-mapping": {
					"db-country": "country",
					"db-state": "state"
				}
			}
		}
	},
	"profile_name": {
		"name": "profile_name",
		"data-type": "string",
		"source": {
			"input": {
				
			}
		}
	}
}