summaryrefslogtreecommitdiffstats
path: root/aai-core/src/test/resources/dbedgerules/DbEdgeRules_test_broken.json
blob: d4b7f7f31f29cf0cbd80242f505e06b5693582de (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
{
	"rules": [
		{
			"from": "foo",
			"to": "bar",
			"label": "eats",
			"direction": "OUT",
			"multiplicity": "One2Many",
			"contains-other-v": "NONE",
			"SVC-INFRA": "NONE",
			"prevent-delete": "NONE"
		},
		{
			"from": "foo",
			"to": "baz",
			"label": "isVeryHappyAbout",
			"direction": "OUT",
			"multiplicity": "One2Many",
			"contains-other-v": "${direction}",
			"delete-other-v": "${direction}",
			"SVC-INFRA": "NONE",
			"prevent-delete": "NONE"
		},
		{
			"from": "quux",
			"to": "foo",
			"label": "dancesWith",
			"direction": "IN",
			"multiplicity": "One2Many",
			"contains-other-v": "!${direction}",
			"delete-other-v": "${direction}",
			"prevent-delete": "NONE"
		}
	]
}