aboutsummaryrefslogtreecommitdiffstats
path: root/blueprints-processor/plugin/assignment-provider/src/test/resources/mapping/db/db-array.json
blob: bab78354432ef481b9657f9cca0f24b90f75e0ef (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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
	"locations": {
		"name": "locations",
		"property": {
			"type": "list",
			"entry_schema": {
				"type": "dt-location"
			}
		},
		"sources": {
			"db": {
				"type": "source-sdnctl-db",
				"properties": {
					"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"
					},
					"key-dependencies": [
						"profile_name"
					]
				}
			}
		}
	},
	"profile_name": {
		"name": "profile_name",
		"property": {
			"type": "string"
		},
		"sources": {
			"input": {
				"type": "source-input"
			}
		}
	}
}