We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b4efce commit 037b70bCopy full SHA for 037b70b
data/config-schema/src/main/resources/net/corda/schema/configuration/security/1.0/corda.security.json
@@ -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