Skip to content

Commit 037b70b

Browse files
authored
CORE-4819 Created security configuration schema (#369)
1 parent 0b4efce commit 037b70b

File tree

1 file changed

+17
-0
lines changed
  • data/config-schema/src/main/resources/net/corda/schema/configuration/security/1.0

1 file changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$id": "https://corda.r3.com/net/corda/schema/configuration/security/1.0/corda.security.json",
4+
"title": "Corda Security Configuration Schema",
5+
"description": "Configuration schema for the security subsection.",
6+
"type": "object",
7+
"properties": {
8+
"policy": {
9+
"description": "Security policy",
10+
"type": "string"
11+
}
12+
},
13+
"required": [
14+
"policy"
15+
],
16+
"additionalProperties": false
17+
}

0 commit comments

Comments
 (0)