Skip to content

Commit 86e207d

Browse files
kyhu65867Gabeblis
andauthored
add documentation for issue 980 regarding last-accessed (#142)
* add documentation for issue 980 regarding last-accessed * Update content/documentation/ssp/5-attachments.md Co-authored-by: Gabeblis <[email protected]> * Update content/documentation/ssp/5-attachments.md Co-authored-by: Gabeblis <[email protected]> --------- Co-authored-by: Gabeblis <[email protected]>
1 parent 1733a58 commit 86e207d

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

content/documentation/ssp/5-attachments.md

+15-5
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,32 @@ is handled:
3838

3939
---
4040
### Attachments
41-
The following OSCAL representation of a FedRAMP SSP attachment demonstrates the `back-matter` and `resource` approach that must be implemented for classic SSP attachments that are not machine-readable, such as policies, procedures, plans, guidance, and rules of behavior documents.
41+
The following OSCAL representation of a FedRAMP SSP attachment demonstrates the `back-matter` and `resource` approach that must be implemented for classic SSP attachments that are not machine-readable, such as policies, procedures, plans, guidance, and rules of behavior documents. For each attachment, an SSP should provide a publication date where possible. However, in some cases, a back matter attachment may not have a specific publication date. In that case, an SSP may define a last accessed property with a value of a datetime with a timezone that represents when that resource was last viewed or referenced, with a value that conforms with RFC3339's "full-date" format.
4242

4343
##### Attachment Representation
4444
{{< highlight xml "linenos=table" >}}
4545
<!-- cut -->
4646
<back-matter>
47-
<resource uuid="uuid-value">
47+
<resource uuid="uuid-value-1">
4848
<title>Document Title</title>
49-
<desc>Policy document</desc>
49+
<description>Policy document</description>
5050
<prop name="type" ns="http://fedramp.gov/ns/oscal" value="policy"/>
51-
<prop name="publication" ns="http://fedramp.gov/ns/oscal" value="2021-01-01Z"/>
51+
<!--For this resource, a property of published is used to define the published date-->
52+
<prop name="published" ns="http://fedramp.gov/ns/oscal" value="2021-01-01Z"/>
53+
<prop name="version" ns="http://fedramp.gov/ns/oscal" value="1.2"/>
54+
<!-- Add rlink with relative path or embed with base64 encoding -->
55+
<base64>00000000</base64>
56+
</resource>
57+
<resource uuid="uuid-value-2">
58+
<title>Document Title</title>
59+
<description>Policy document</description>
60+
<prop name="type" ns="http://fedramp.gov/ns/oscal" value="policy"/>
61+
<!--For this resource, a property of "last-accessed" is defined, with a value of a datetime with a timezone in RFC3339's "full-date" format-->
62+
<prop name="last-accessed" ns="http://fedramp.gov/ns/oscal" value="2024-12-23T14:30:00-05:00"/>
5263
<prop name="version" ns="http://fedramp.gov/ns/oscal" value="1.2"/>
5364
<!-- Add rlink with relative path or embed with base64 encoding -->
5465
<base64>00000000</base64>
5566
</resource>
56-
<resource uuid="uuid-value" />
5767
<!-- cut: policies 3 - 13 -->
5868
<resource uuid="uuid-value" />
5969
<resource uuid="uuid-value" />

0 commit comments

Comments
 (0)