usnistgov/oscal-content

Invalid party references in SP 800-53 rev4 catalog

david-waltermire opened this issue · 0 comments

Describe the bug

The SP 800-53 rev5 catalog has responsible-party references that do not match a valid party.

      <party type="organization" uuid="93122cb0-95bc-4fdb-8b48-85ff60f9509b">
         <name>Joint Task Force, Transformation Initiative</name>
         <email-address>sec-cert@nist.gov</email-address>
         <address>
            <addr-line>National Institute of Standards and Technology</addr-line>
            <addr-line>Attn: Computer Security Division</addr-line>
            <addr-line>Information Technology Laboratory</addr-line>
            <addr-line>100 Bureau Drive (Mail Stop 8930)</addr-line>
            <city>Gaithersburg</city>
            <state>MD</state>
            <postal-code>20899-8930</postal-code>
         </address>
      </party>
      <responsible-party role-id="creator">
         <party-uuid>c6d77a50-e52e-4399-8a57-896d4807952f</party-uuid>
      </responsible-party>
      <responsible-party role-id="contact">
         <party-uuid>c6d77a50-e52e-4399-8a57-896d4807952f</party-uuid>
      </responsible-party

Should be:

      <party type="organization" uuid="93122cb0-95bc-4fdb-8b48-85ff60f9509b">
         <name>Joint Task Force, Transformation Initiative</name>
         <email-address>sec-cert@nist.gov</email-address>
         <address>
            <addr-line>National Institute of Standards and Technology</addr-line>
            <addr-line>Attn: Computer Security Division</addr-line>
            <addr-line>Information Technology Laboratory</addr-line>
            <addr-line>100 Bureau Drive (Mail Stop 8930)</addr-line>
            <city>Gaithersburg</city>
            <state>MD</state>
            <postal-code>20899-8930</postal-code>
         </address>
      </party>
      <responsible-party role-id="creator">
         <party-uuid>93122cb0-95bc-4fdb-8b48-85ff60f9509b</party-uuid>
      </responsible-party>
      <responsible-party role-id="contact">
         <party-uuid>93122cb0-95bc-4fdb-8b48-85ff60f9509b</party-uuid>
      </responsible-party>

Who is the bug affecting?

Anyone parsing and using the document's metadata.

What is affected by this bug?

Tools will not be able to look the referenced party.

When does this occur?

N/A

Expected behavior (i.e. solution)

N/A