Skip to content

Commit

Permalink
Fixed root uuid for the Catalog tutorial.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaela Iorga committed Jan 22, 2025
1 parent 2e0c1bc commit b05e843
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/content/learn/tutorials/control/basic-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The examples below illustrate the top-level structure of the OSCAL control catal
{{< highlight xml "linenos=table" >}}
<?xml version="1.0" encoding="UTF-8"?>
<catalog xmlns="http://csrc.nist.gov/ns/oscal/1.0"
uuid="edaf664a-e984-4dbf-85ec-1104186fc12f">
uuid="956c32af-8a15-4732-a4d9-f976a1149c4b">
<metadata/>
<group/>
<control/>
Expand All @@ -67,7 +67,7 @@ A `<catalog>` contains:
{{< highlight json "linenos=table" >}}
{
"catalog": {
"uuid": "edaf664a-e984-4dbf-85ec-1104186fc12f",
"uuid": "956c32af-8a15-4732-a4d9-f976a1149c4b",
"metadata": {},
"groups": {},
"controls": {},
Expand All @@ -93,7 +93,7 @@ A `catalog` contains the following props:
{{< highlight yaml "linenos=table" >}}
---
catalog:
uuid: edaf664a-e984-4dbf-85ec-1104186fc12f
uuid: 956c32af-8a15-4732-a4d9-f976a1149c4b
metadata:
groups:
controls:
Expand Down Expand Up @@ -757,7 +757,7 @@ Assembling all of the control content described in this tutorial, we obtain the
<?xml version="1.0" encoding="UTF-8"?>
<catalog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://csrc.nist.gov/ns/oscal/1.0 ../../../../xml/schema/oscal_catalog_schema.xsd"
xmlns="http://csrc.nist.gov/ns/oscal/1.0" id="uuid-956c32af-8a15-4732-a4d9-f976a1149c4b">
xmlns="http://csrc.nist.gov/ns/oscal/1.0" uuid="956c32af-8a15-4732-a4d9-f976a1149c4b">
<metadata>
<title>Sample Security Catalog</title>
<published>2020-02-02T11:01:04.736-04:00</published>
Expand Down Expand Up @@ -1180,7 +1180,7 @@ Assembling all of the control content described in this tutorial, we obtain the
{{< highlight yaml "linenos=table" >}}
---
catalog:
id: uuid-956c32af-8a15-4732-a4d9-f976a1149c4b
uuid: 956c32af-8a15-4732-a4d9-f976a1149c4b
metadata:
title: Sample Security Catalog
published: 2020-02-02T11:01:04.736-04:00
Expand Down

0 comments on commit b05e843

Please sign in to comment.