aboutsummaryrefslogtreecommitdiffstats
path: root/components/model-catalog/resource-dictionary/starter-dictionary/sample-db-source.json
blob: a7b93159d7209586984104e9c639349a2f10bae4 (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
{
  "name": "sample-db-source",
  "group":"default",
  "property" :{
    "description": "name of the ",
    "type": "string"
  },
  "updated-by": "brindasanth@onap.com",
  "tags": "processor-db, brindasanth@onap.com",
  "sources": {
    "processor-db": {
      "type": "source-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"
        }
      }
    }
  }
}