Skip to content

Commit d1f36ee

Browse files
extracting overall sub clause structure
1 parent 2da623c commit d1f36ee

File tree

2 files changed

+149
-37
lines changed

2 files changed

+149
-37
lines changed
Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
export const ISO42001ClauseList = [
2+
{
3+
id: 1,
4+
title: "Management System",
5+
clauses: [
6+
{
7+
number: 4,
8+
title: "Context of the Organization",
9+
subClauses: [
10+
{
11+
number: 1,
12+
title: "Understanding the organization and its context",
13+
},
14+
{
15+
number: 2,
16+
title:
17+
"Understanding the needs and expectations of interested parties",
18+
},
19+
{
20+
number: 3,
21+
title: "Determining the scope of the AI Management System",
22+
},
23+
{
24+
number: 4,
25+
title: "AI Management System",
26+
},
27+
],
28+
},
29+
{
30+
number: 5,
31+
title: "Leadership",
32+
subClauses: [
33+
{
34+
number: 1,
35+
title: "Leadership and commitment",
36+
},
37+
{
38+
number: 2,
39+
title: "Policy",
40+
},
41+
{
42+
number: 3,
43+
title: "Organizational roles, responsibilities, and authorities",
44+
},
45+
],
46+
},
47+
{
48+
number: 6,
49+
title: "Planning",
50+
subClauses: [
51+
{
52+
number: 1,
53+
title:
54+
"Actions to address risks and opportunities (Includes Risk Assessment, Treatment, Impact Assessment)",
55+
},
56+
{
57+
number: 2,
58+
title: "AI objectives and planning to achieve them",
59+
},
60+
],
61+
},
62+
{
63+
number: 7,
64+
title: "Support",
65+
subClauses: [
66+
{
67+
number: 1,
68+
title: "Resources",
69+
},
70+
{
71+
number: 2,
72+
title: "Competence",
73+
},
74+
{
75+
number: 3,
76+
title: "Awareness",
77+
},
78+
{
79+
number: 4,
80+
title: "Communication",
81+
},
82+
{
83+
number: 5,
84+
title: "Documented information",
85+
},
86+
],
87+
},
88+
{
89+
number: 8,
90+
title: "Operation",
91+
subClauses: [
92+
{
93+
number: 1,
94+
title: "Operational planning and control",
95+
},
96+
{
97+
number: 2,
98+
title: "AI risk assessment (Operational)",
99+
},
100+
{
101+
number: 3,
102+
title: "AI risk treatment (Operational)",
103+
},
104+
{
105+
number: 4,
106+
title: "AI System Lifecycle",
107+
},
108+
{
109+
number: 5,
110+
title: "Third-party relationships",
111+
},
112+
],
113+
},
114+
{
115+
number: 9,
116+
title: "Performance Evaluation",
117+
subClauses: [
118+
{
119+
number: 1,
120+
title: "Monitoring, measurement, analysis, and evaluation",
121+
},
122+
{
123+
number: 2,
124+
title: "Internal audit",
125+
},
126+
{
127+
number: 3,
128+
title: "Management review",
129+
},
130+
],
131+
},
132+
{
133+
number: 10,
134+
title: "Improvement",
135+
subClauses: [
136+
{
137+
number: 1,
138+
title: "Nonconformity and corrective action",
139+
},
140+
{
141+
number: 2,
142+
title: "Continual improvement",
143+
},
144+
],
145+
},
146+
],
147+
},
148+
];

Clients/src/presentation/pages/ISO/Clause/index.tsx

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,7 @@ import {
88
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
99
import { accordionStyle } from "../style";
1010
import { useState } from "react";
11-
12-
const ISO42001ClauseList = [
13-
{
14-
id: 1,
15-
title: "Management System",
16-
clauses: [
17-
{
18-
number: 4,
19-
title: "Context of the Organization",
20-
},
21-
{
22-
number: 5,
23-
title: "Leadership",
24-
},
25-
{
26-
number: 6,
27-
title: "Planning",
28-
},
29-
{
30-
number: 7,
31-
title: "Support",
32-
},
33-
{
34-
number: 8,
35-
title: "Operation",
36-
},
37-
{
38-
number: 9,
39-
title: "Performance Evaluation",
40-
},
41-
{
42-
number: 10,
43-
title: "Improvement",
44-
},
45-
],
46-
},
47-
];
11+
import { ISO42001ClauseList } from "./clause.structure";
4812

4913
const ISO42001Clauses = () => {
5014
const [expanded, setExpanded] = useState<number | false>(false);

0 commit comments

Comments
 (0)