-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathProcedure.json
52 lines (52 loc) · 1.95 KB
/
Procedure.json
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "#Procedure",
"description": "A written procedure and control documentation. A Procedure typically `IMPLEMENTS` a parent Policy. An actual Control further `IMPLEMENTS` a Procedure.",
"type": "object",
"allOf": [
{
"$ref": "#RecordEntity"
},
{
"properties": {
"title": {
"description": "Title of the procedure",
"type": "string"
},
"summary": {
"description": "Summary or overview the describes the procedure. Summary text is intended as guidance to the author and not included in the published version.",
"type": "string"
},
"author": {
"description": "Author of the record",
"type": "string"
},
"content": {
"description": "Text content of the policy. For policies/procedures used by the Policy Builder app, this will contain the template text in markdown format. Stored in raw data.",
"type": "string"
},
"control": {
"description": "The type of control specified by this procedure.",
"type": "string",
"examples": [
"administrative",
"technical",
"physical",
"operational",
"other"
]
},
"applicable": {
"description": "Indicates if procedure is applicable based on the organization's current risk and compliance needs. A Policy that is not applicable may become applicable later as the organization's requirements and maturity change.",
"type": "boolean"
},
"adopted": {
"description": "Indicates if procedure has been adopted. Only adopted policies and procedures are included in the published view of the Policy Builder app.",
"type": "boolean"
}
},
"required": ["title", "summary", "content"],
"excludes": ["category", "reporter"]
}
]
}