GSA / fedramp-automation

FedRAMP Automation
https://www.fedramp.gov/using-the-fedramp-oscal-resources-and-templates/
Other
276 stars 85 forks source link

Rev 5 SSP Guide: Revise section 6.3 Implementation Status #524

Open dimitri-zhurkin-vitg opened 10 months ago

dimitri-zhurkin-vitg commented 10 months ago

NOTE: For feedback related to the OSCAL syntax itself, please create or add to an issue in the NIST OSCAL Repository.

In the rev 5 SSP Guide, in section 6.3 Implementation Status (page 52), under Implementation Status Representation

  1. Add required <remarks> child nodes to relevant <prop> elements.
  2. Add the alternative prop.
<!-- system-implementation -->
<control-implementation>
    <implemented-requirement uuid="uuid-value" control-id="ac-1">
        <prop name="planned-completion-date" ns="https://fedramp.gov/ns/oscal" value="2021-01-01Z"/>
        <prop name="implementation-status" ns="https://fedramp.gov/ns/oscal" value="implemented"/>
        <prop name="implementation-status" ns="https://fedramp.gov/ns/oscal" value="partial">
            <remarks>Describe the reason for this status.</remarks>
        </prop>
        <prop name="implementation-status" ns="https://fedramp.gov/ns/oscal" value="planned">
            <remarks>Describe the reason for this status.</remarks>
        </prop>
        <prop name="implementation-status" ns="https://fedramp.gov/ns/oscal" value="alternative">
            <remarks>Describe the reason for this status.</remarks>
        </prop>
        <prop name="implementation-status" ns="https://fedramp.gov/ns/oscal" value="not-applicable">
            <remarks>Describe the reason for this status.</remarks>
        </prop>
        <!-- responsible-role, statement, by-component -->
    </implemented-requirement>
</control-implementation>
<!-- back-matter -->