(resource: JsonRecord)
| 372 | } |
| 373 | |
| 374 | function normalizeVantaFrameworkRequirement(resource: JsonRecord): VantaFrameworkRequirement { |
| 375 | return { |
| 376 | id: getString(resource.id), |
| 377 | name: getString(resource.name), |
| 378 | shorthand: getString(resource.shorthand), |
| 379 | description: getString(resource.description), |
| 380 | controls: getRecordArray(resource.controls).map(normalizeVantaFrameworkRequirementControl), |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | function normalizeVantaFrameworkRequirementCategory( |
| 385 | resource: JsonRecord |
nothing calls this directly
no test coverage detected