├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 1-feedback.yaml │ ├── 2-bug-report.yaml │ ├── 3-action-item.yaml │ ├── 4-constraint-work.yaml │ └── README.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── content-artifacts.yml │ ├── create-release.yml │ ├── run-tests.yml │ └── runSchematronValidation.yml ├── .gitignore ├── .gitmodules ├── .nvmrc ├── .spelling ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── assets ├── FedRAMP_LOGO.png └── GSA.png ├── dist └── content │ ├── rev4 │ ├── README.md │ ├── baselines │ │ ├── json │ │ │ ├── FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog-min.json │ │ │ ├── FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.json │ │ │ ├── FedRAMP_rev4_HIGH-baseline_profile-min.json │ │ │ ├── FedRAMP_rev4_HIGH-baseline_profile.json │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog-min.json │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.json │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline_profile-min.json │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline_profile.json │ │ │ ├── FedRAMP_rev4_LOW-baseline-resolved-profile_catalog-min.json │ │ │ ├── FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.json │ │ │ ├── FedRAMP_rev4_LOW-baseline_profile-min.json │ │ │ ├── FedRAMP_rev4_LOW-baseline_profile.json │ │ │ ├── FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog-min.json │ │ │ ├── FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.json │ │ │ ├── FedRAMP_rev4_MODERATE-baseline_profile-min.json │ │ │ └── FedRAMP_rev4_MODERATE-baseline_profile.json │ │ ├── xml │ │ │ ├── FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.xml │ │ │ ├── FedRAMP_rev4_HIGH-baseline_profile.xml │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.xml │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline_profile.xml │ │ │ ├── FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.xml │ │ │ ├── FedRAMP_rev4_LOW-baseline_profile.xml │ │ │ ├── FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.xml │ │ │ └── FedRAMP_rev4_MODERATE-baseline_profile.xml │ │ └── yaml │ │ │ ├── FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.yaml │ │ │ ├── FedRAMP_rev4_HIGH-baseline_profile.yaml │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.yaml │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline_profile.yaml │ │ │ ├── FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.yaml │ │ │ ├── FedRAMP_rev4_LOW-baseline_profile.yaml │ │ │ ├── FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.yaml │ │ │ └── FedRAMP_rev4_MODERATE-baseline_profile.yaml │ ├── resources │ │ ├── README.md │ │ ├── json │ │ │ ├── FedRAMP_extensions.json │ │ │ ├── fedramp_threats.json │ │ │ ├── fedramp_values.json │ │ │ └── information-types.json │ │ └── xml │ │ │ ├── FedRAMP_extensions.xml │ │ │ ├── fedramp_threats.xml │ │ │ ├── fedramp_values.xml │ │ │ └── information-types.xml │ └── templates │ │ ├── poam │ │ ├── json │ │ │ ├── FedRAMP-POAM-OSCAL-Template-min.json │ │ │ └── FedRAMP-POAM-OSCAL-Template.json │ │ ├── xml │ │ │ └── FedRAMP-POAM-OSCAL-Template.xml │ │ └── yaml │ │ │ └── FedRAMP-POAM-OSCAL-Template.yaml │ │ ├── sap │ │ ├── json │ │ │ ├── FedRAMP-SAP-OSCAL-Template-min.json │ │ │ └── FedRAMP-SAP-OSCAL-Template.json │ │ ├── xml │ │ │ └── FedRAMP-SAP-OSCAL-Template.xml │ │ └── yaml │ │ │ └── FedRAMP-SAP-OSCAL-Template.yaml │ │ ├── sar │ │ ├── json │ │ │ ├── FedRAMP-SAR-OSCAL-Template-min.json │ │ │ └── FedRAMP-SAR-OSCAL-Template.json │ │ ├── xml │ │ │ └── FedRAMP-SAR-OSCAL-Template.xml │ │ └── yaml │ │ │ └── FedRAMP-SAR-OSCAL-Template.yaml │ │ └── ssp │ │ ├── json │ │ ├── FedRAMP-SSP-OSCAL-Template-min.json │ │ └── FedRAMP-SSP-OSCAL-Template.json │ │ ├── xml │ │ └── FedRAMP-SSP-OSCAL-Template.xml │ │ └── yaml │ │ └── FedRAMP-SSP-OSCAL-Template.yaml │ └── rev5 │ ├── baselines │ ├── json │ │ ├── FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog-min.json │ │ ├── FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.json │ │ ├── FedRAMP_rev5_HIGH-baseline_profile-min.json │ │ ├── FedRAMP_rev5_HIGH-baseline_profile.json │ │ ├── FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog-min.json │ │ ├── FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.json │ │ ├── FedRAMP_rev5_LI-SaaS-baseline_profile-min.json │ │ ├── FedRAMP_rev5_LI-SaaS-baseline_profile.json │ │ ├── FedRAMP_rev5_LOW-baseline-resolved-profile_catalog-min.json │ │ ├── FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.json │ │ ├── FedRAMP_rev5_LOW-baseline_profile-min.json │ │ ├── FedRAMP_rev5_LOW-baseline_profile.json │ │ ├── FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog-min.json │ │ ├── FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.json │ │ ├── FedRAMP_rev5_MODERATE-baseline_profile-min.json │ │ └── FedRAMP_rev5_MODERATE-baseline_profile.json │ ├── xml │ │ ├── FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.xml │ │ ├── FedRAMP_rev5_HIGH-baseline_profile.xml │ │ ├── FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.xml │ │ ├── FedRAMP_rev5_LI-SaaS-baseline_profile.xml │ │ ├── FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.xml │ │ ├── FedRAMP_rev5_LOW-baseline_profile.xml │ │ ├── FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.xml │ │ └── FedRAMP_rev5_MODERATE-baseline_profile.xml │ └── yaml │ │ ├── FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.yaml │ │ ├── FedRAMP_rev5_HIGH-baseline_profile.yaml │ │ ├── FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.yaml │ │ ├── FedRAMP_rev5_LI-SaaS-baseline_profile.yaml │ │ ├── FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.yaml │ │ ├── FedRAMP_rev5_LOW-baseline_profile.yaml │ │ ├── FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.yaml │ │ └── FedRAMP_rev5_MODERATE-baseline_profile.yaml │ ├── resources │ ├── README.md │ ├── json │ │ ├── FedRAMP_extensions.json │ │ ├── fedramp_threats.json │ │ ├── fedramp_values.json │ │ └── information-types.json │ └── xml │ │ ├── FedRAMP_extensions.xml │ │ ├── fedramp_threats.xml │ │ ├── fedramp_values.xml │ │ └── information-types.xml │ └── templates │ ├── README.md │ ├── poam │ ├── json │ │ ├── FedRAMP-POAM-OSCAL-Template-min.json │ │ └── FedRAMP-POAM-OSCAL-Template.json │ ├── xml │ │ └── FedRAMP-POAM-OSCAL-Template.xml │ └── yaml │ │ └── FedRAMP-POAM-OSCAL-Template.yaml │ ├── sap │ ├── json │ │ ├── FedRAMP-SAP-OSCAL-Template-min.json │ │ └── FedRAMP-SAP-OSCAL-Template.json │ ├── xml │ │ └── FedRAMP-SAP-OSCAL-Template.xml │ └── yaml │ │ └── FedRAMP-SAP-OSCAL-Template.yaml │ ├── sar │ ├── json │ │ ├── FedRAMP-SAR-OSCAL-Template-min.json │ │ └── FedRAMP-SAR-OSCAL-Template.json │ ├── xml │ │ └── FedRAMP-SAR-OSCAL-Template.xml │ └── yaml │ │ └── FedRAMP-SAR-OSCAL-Template.yaml │ └── ssp │ ├── json │ ├── FedRAMP-SSP-OSCAL-Template-min.json │ └── FedRAMP-SSP-OSCAL-Template.json │ ├── xml │ └── FedRAMP-SSP-OSCAL-Template.xml │ └── yaml │ └── FedRAMP-SSP-OSCAL-Template.yaml ├── documents ├── README.md ├── adr │ ├── 0001-record-architecture-decisions.md │ ├── 0002-git-release-version-strategy.md │ ├── 0003-github-management-teams.md │ ├── 0004-use-github-wiki-operational-docs.md │ ├── 0005-beta-metrics-collections.md │ ├── 0006-testing-harness-approach.md │ ├── 007-signal-unsupportent-content-in-github.md │ └── adr_template.md ├── rev4 │ ├── FedRAMP_Extensions.pdf │ ├── FedRAMP_OSCAL_Vendor_Resources.pdf │ ├── FedRAMP_extensions.html │ ├── Guide_to_OSCAL-based_FedRAMP_Content.pdf │ ├── Guide_to_OSCAL-based_FedRAMP_Plan_of_Action_and_Milestones_(POAM)_rev4.pdf │ ├── Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Plans_(SAP)_rev4.pdf │ ├── Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Reports_(SAR)_rev4.pdf │ ├── Guide_to_OSCAL-based_FedRAMP_System_Security_Plans_(SSP)_rev4.pdf │ └── README.md └── rev5 │ ├── Guide_to_OSCAL-based_FedRAMP_Content_rev5.pdf │ ├── Guide_to_OSCAL-based_FedRAMP_Plan_of_Action_and_Milestones_(POAM)_rev5.pdf │ ├── Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Plans_(SAP)_rev5.pdf │ ├── Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Reports_(SAR)_rev5.pdf │ └── Guide_to_OSCAL-based_FedRAMP_System_Security_Plans_(SSP)_rev5.pdf ├── package.json ├── presentations ├── README.md └── data-bites │ ├── Developer Data Bites Presentation 1.11.2024.pdf │ ├── Developer Data Bites Presentation 1.19.2023.pdf │ ├── Developer Data Bites Presentation 10.13.2022.pdf │ ├── Developer Data Bites Presentation 10.26.2023.pdf │ ├── Developer Data Bites Presentation 10.27.2022 NIST Tools DEMO.pdf │ ├── Developer Data Bites Presentation 10.27.2022.pdf │ ├── Developer Data Bites Presentation 11.10.2022 (1).pdf │ ├── Developer Data Bites Presentation 11.30.2023.pdf │ ├── Developer Data Bites Presentation 2.08.2024.pdf │ ├── Developer Data Bites Presentation 3.07.2024.pdf │ ├── Developer Data Bites Presentation 3.16.2023.pdf │ ├── Developer Data Bites Presentation 4.04.24.pdf │ ├── Developer Data Bites Presentation 4.13.2023.pdf │ ├── Developer Data Bites Presentation 5.02.2024.pdf │ ├── Developer Data Bites Presentation 5.11.2023.pdf │ ├── Developer Data Bites Presentation 5.30.2024.pdf │ ├── Developer Data Bites Presentation 6.27.2024.pdf │ ├── Developer Data Bites Presentation 6.8.2023.pdf │ ├── Developer Data Bites Presentation 7.6.2023.pdf │ ├── Developer Data Bites Presentation 8.01.2024.pdf │ ├── Developer Data Bites Presentation 8.31.2023.pdf │ ├── Developer Data Bites Presentation 9.1.2022.pdf │ ├── Developer Data Bites Presentation 9.15.2022.pdf │ ├── Developer Data Bites Presentation 9.28.2023.pdf │ ├── Developer Data Bites Presentation_and_Demo_Instructions 2.16.2023.pdf │ └── Developer Data Bytes Presentation 8.22.2024.pdf ├── src ├── config ├── content │ ├── docker-compose.yml │ ├── module.mk │ ├── rev4 │ │ ├── baselines │ │ │ └── xml │ │ │ │ ├── FedRAMP_rev4_HIGH-baseline_profile.xml │ │ │ │ ├── FedRAMP_rev4_LI-SaaS-baseline_profile.xml │ │ │ │ ├── FedRAMP_rev4_LOW-baseline_profile.xml │ │ │ │ └── FedRAMP_rev4_MODERATE-baseline_profile.xml │ │ ├── resources │ │ │ └── xml │ │ │ │ ├── FedRAMP_extensions.xml │ │ │ │ ├── fedramp_threats.xml │ │ │ │ ├── fedramp_values.xml │ │ │ │ └── information-types.xml │ │ └── templates │ │ │ ├── poam │ │ │ └── xml │ │ │ │ └── FedRAMP-POAM-OSCAL-Template.xml │ │ │ ├── sap │ │ │ └── xml │ │ │ │ └── FedRAMP-SAP-OSCAL-Template.xml │ │ │ ├── sar │ │ │ └── xml │ │ │ │ └── FedRAMP-SAR-OSCAL-Template.xml │ │ │ └── ssp │ │ │ └── xml │ │ │ └── FedRAMP-SSP-OSCAL-Template.xml │ └── rev5 │ │ ├── baselines │ │ └── xml │ │ │ ├── FedRAMP_rev5_HIGH-baseline_profile.xml │ │ │ ├── FedRAMP_rev5_LI-SaaS-baseline_profile.xml │ │ │ ├── FedRAMP_rev5_LOW-baseline_profile.xml │ │ │ ├── FedRAMP_rev5_MODERATE-baseline_profile.xml │ │ │ └── NIST_SP-800-53_rev5_catalog.xml │ │ ├── resources │ │ └── xml │ │ │ ├── FedRAMP_extensions.xml │ │ │ ├── fedramp_threats.xml │ │ │ ├── fedramp_values.xml │ │ │ └── information-types.xml │ │ └── templates │ │ ├── poam │ │ └── xml │ │ │ └── FedRAMP-POAM-OSCAL-Template.xml │ │ ├── sap │ │ └── xml │ │ │ └── FedRAMP-SAP-OSCAL-Template.xml │ │ ├── sar │ │ └── xml │ │ │ └── FedRAMP-SAR-OSCAL-Template.xml │ │ └── ssp │ │ └── xml │ │ └── FedRAMP-SSP-OSCAL-Template.xml ├── examples │ ├── README.md │ ├── java │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── gov │ │ │ │ └── fedramp │ │ │ │ └── automationExample │ │ │ │ ├── FedrampAutomationValidator.java │ │ │ │ └── OscalJsonToXmlConverter.java │ │ │ └── test │ │ │ └── java │ │ │ └── gov │ │ │ └── fedramp │ │ │ └── automationExample │ │ │ ├── FedrampAutomationValidatorTest.java │ │ │ └── OscalJsonToXmlConverterTest.java │ ├── javascript │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── validator.js │ │ │ └── validator.test.js │ │ └── test.sh │ ├── module.mk │ └── python │ │ ├── .gitignore │ │ ├── .python-version │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── docker-compose.yml │ │ ├── requirements.in │ │ ├── requirements.txt │ │ ├── test_json_to_xml.py │ │ ├── test_validate_oscal.py │ │ └── validate_oscal.py ├── utils │ ├── README.md │ └── extensions-preview.xsl ├── validations │ ├── CONTRIBUTING.md │ ├── README.md │ ├── bin │ │ ├── assert-svrl.py │ │ ├── compile-sch.sh │ │ ├── evaluate-compiled-schematron.sh │ │ └── validate_with_schematron.sh │ ├── docker-compose.yml │ ├── docs │ │ └── adr │ │ │ ├── 0001-record-architecture-decisions.md │ │ │ ├── 0002-xml-schematron-usage.md │ │ │ ├── 0003-saxon-he-xslt-engine-usage.md │ │ │ ├── 0004-xslt-function-library.md │ │ │ ├── 0005-pipeline-execution-design.md │ │ │ ├── 0006-evaluate-xproc-pipeline.md │ │ │ ├── 0007-web-frontend.md │ │ │ ├── 0008-attachment-validation.md │ │ │ ├── 0009-multi-document-rules.md │ │ │ ├── 0010-remote-resource-usage.md │ │ │ ├── 0011-dns-validation.md │ │ │ ├── 0012-multiple-ruleset-support.md │ │ │ └── template.md │ ├── module.mk │ ├── report │ │ ├── schematron │ │ │ └── .gitempty │ │ └── test │ │ │ └── .gitempty │ ├── rules │ │ ├── Writing_FedRAMP_Validations.md │ │ ├── assertion-grouping.xsl │ │ ├── rev4 │ │ │ ├── poam.sch │ │ │ ├── rules.css │ │ │ ├── rules.md │ │ │ ├── rules.xml │ │ │ ├── rules.xsd │ │ │ ├── rules.xsl │ │ │ ├── sap.sch │ │ │ ├── sar.sch │ │ │ └── ssp.sch │ │ ├── rev5 │ │ │ ├── poam.sch │ │ │ ├── rules.css │ │ │ ├── rules.md │ │ │ ├── rules.xml │ │ │ ├── rules.xsd │ │ │ ├── rules.xsl │ │ │ ├── sap.sch │ │ │ ├── sar.sch │ │ │ └── ssp.sch │ │ ├── sample-ssp.xsl │ │ ├── set-param.xsl │ │ └── swap-messages.xsl │ ├── styleguides │ │ ├── module.mk │ │ ├── sch.sch │ │ └── xspec.sch │ └── test │ │ ├── demo │ │ └── FedRAMP-SSP-OSCAL-Template.xml │ │ ├── rules │ │ ├── module.mk │ │ ├── rev4 │ │ │ ├── poam.xml │ │ │ ├── poam.xspec │ │ │ ├── sap.xspec │ │ │ ├── sar.xspec │ │ │ ├── ssp.xml │ │ │ └── ssp.xspec │ │ └── rev5 │ │ │ ├── poam.xml │ │ │ ├── poam.xspec │ │ │ ├── sap.xspec │ │ │ ├── sar.xspec │ │ │ ├── ssp.xml │ │ │ └── ssp.xspec │ │ └── styleguides │ │ ├── module.mk │ │ └── sch.xspec └── web │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── index.html │ ├── module.mk │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ ├── SaxonJS2.rt.js │ ├── content │ ├── favicon.ico │ └── robots.txt │ ├── screenshot.png │ ├── src │ ├── browser │ │ ├── index.ts │ │ ├── presenter │ │ │ ├── actions │ │ │ │ ├── assertion-documentation.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schematron.ts │ │ │ │ └── validator.ts │ │ │ ├── index.ts │ │ │ └── state │ │ │ │ ├── assertion-documetation.ts │ │ │ │ ├── helpers.test.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── router-machine.ts │ │ │ │ ├── router.test.ts │ │ │ │ ├── router.ts │ │ │ │ ├── ruleset │ │ │ │ ├── index.ts │ │ │ │ ├── schematron-machine.ts │ │ │ │ └── validation-results-machine.ts │ │ │ │ ├── selectors.test.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── validator-machine.ts │ │ ├── util │ │ │ ├── file-input.test.ts │ │ │ └── file-input.ts │ │ └── views │ │ │ ├── components │ │ │ ├── App.tsx │ │ │ ├── AssertionDocumentationOverlay.tsx │ │ │ ├── AssertionXSpecScenarios.tsx │ │ │ ├── CodeViewer.tsx │ │ │ ├── Collapsable.tsx │ │ │ ├── DevelopersPage.tsx │ │ │ ├── DocumentViewerOverlay.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Header.tsx │ │ │ ├── HeadingOne.tsx │ │ │ ├── HomePage.tsx │ │ │ ├── Identifier.tsx │ │ │ ├── RulesetPicker.tsx │ │ │ ├── UsaBanner.tsx │ │ │ ├── UsageTrackingPage.tsx │ │ │ ├── ValidatorFileSelectForm.tsx │ │ │ ├── ValidatorPage.tsx │ │ │ ├── ValidatorReport.tsx │ │ │ └── ValidatorResultsFilterForm.tsx │ │ │ ├── context.tsx │ │ │ ├── hooks.ts │ │ │ ├── images │ │ │ ├── 2022-05-19-first-oscal-system-security-plan.png │ │ │ ├── FedRAMP-youtube.svg │ │ │ ├── FedRAMP_twitter.svg │ │ │ ├── asap-540-2.mp4 │ │ │ ├── bldg.svg │ │ │ ├── footer-mail-icon.svg │ │ │ ├── gsa-reversed-logo.svg │ │ │ ├── homepage-banner-desktop.jpeg │ │ │ ├── homepage-banner-tablet.jpg │ │ │ ├── laptop.svg │ │ │ ├── logo.svg │ │ │ ├── partners-assessors.svg │ │ │ ├── partners-cloud.svg │ │ │ └── partners_fed-agencies.png │ │ │ ├── index.tsx │ │ │ └── styles │ │ │ ├── HomePage.scss │ │ │ ├── RulesetPicker.scss │ │ │ ├── ValidatorPage.scss │ │ │ ├── ValidatorReport.scss │ │ │ ├── ValidatorResultsFilterForm.scss │ │ │ ├── _uswds-theme-overrides.scss │ │ │ └── index.scss │ ├── cli │ │ ├── cli-controller.test.ts │ │ ├── cli-controller.ts │ │ └── index.ts │ ├── fitness.test.ts │ ├── index.ts │ └── shared │ │ ├── adapters │ │ ├── highlight-js-commonjs.ts │ │ ├── highlight-js.ts │ │ ├── saxon-js-gateway.test.ts │ │ └── saxon-js-gateway.ts │ │ ├── domain │ │ ├── github.test.ts │ │ ├── github.ts │ │ ├── metrics.ts │ │ ├── oscal.ts │ │ ├── schematron.test.ts │ │ ├── schematron.ts │ │ ├── source-code-links.test.ts │ │ ├── source-code-links.ts │ │ ├── text.test.ts │ │ ├── text.ts │ │ ├── xml.ts │ │ ├── xspec.test.ts │ │ └── xspec.ts │ │ ├── project-config.ts │ │ ├── use-cases │ │ ├── annotate-xml.test.ts │ │ ├── annotate-xml.ts │ │ ├── assertion-views.test.ts │ │ ├── assertion-views.ts │ │ ├── oscal.test.ts │ │ ├── oscal.ts │ │ ├── schematron-compiler.ts │ │ ├── schematron-summary.test.ts │ │ ├── schematron-summary.ts │ │ └── xspec-summary.ts │ │ ├── util.test.ts │ │ └── util.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── types │ ├── saxon-js.d.ts │ └── static.d.ts │ └── vite.config.ts └── vendor ├── .gitignore └── svrl2html.xsl /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-feedback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/ISSUE_TEMPLATE/1-feedback.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/ISSUE_TEMPLATE/2-bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-action-item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/ISSUE_TEMPLATE/3-action-item.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-constraint-work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/ISSUE_TEMPLATE/4-constraint-work.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/ISSUE_TEMPLATE/README.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/content-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/workflows/content-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/runSchematronValidation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.github/workflows/runSchematronValidation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.15.0 2 | -------------------------------------------------------------------------------- /.spelling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/.spelling -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/README.md -------------------------------------------------------------------------------- /assets/FedRAMP_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/assets/FedRAMP_LOGO.png -------------------------------------------------------------------------------- /assets/GSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/assets/GSA.png -------------------------------------------------------------------------------- /dist/content/rev4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/README.md -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_HIGH-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LI-SaaS-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_LOW-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/json/FedRAMP_rev4_MODERATE-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_HIGH-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_HIGH-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_LI-SaaS-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_LI-SaaS-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_LOW-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_LOW-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/xml/FedRAMP_rev4_MODERATE-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/xml/FedRAMP_rev4_MODERATE-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_HIGH-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_HIGH-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_HIGH-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_LI-SaaS-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_LI-SaaS-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_LI-SaaS-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_LOW-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_LOW-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_LOW-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_MODERATE-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev4/baselines/yaml/FedRAMP_rev4_MODERATE-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/baselines/yaml/FedRAMP_rev4_MODERATE-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev4/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/README.md -------------------------------------------------------------------------------- /dist/content/rev4/resources/json/FedRAMP_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/json/FedRAMP_extensions.json -------------------------------------------------------------------------------- /dist/content/rev4/resources/json/fedramp_threats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/json/fedramp_threats.json -------------------------------------------------------------------------------- /dist/content/rev4/resources/json/fedramp_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/json/fedramp_values.json -------------------------------------------------------------------------------- /dist/content/rev4/resources/json/information-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/json/information-types.json -------------------------------------------------------------------------------- /dist/content/rev4/resources/xml/FedRAMP_extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/xml/FedRAMP_extensions.xml -------------------------------------------------------------------------------- /dist/content/rev4/resources/xml/fedramp_threats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/xml/fedramp_threats.xml -------------------------------------------------------------------------------- /dist/content/rev4/resources/xml/fedramp_values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/xml/fedramp_values.xml -------------------------------------------------------------------------------- /dist/content/rev4/resources/xml/information-types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/resources/xml/information-types.xml -------------------------------------------------------------------------------- /dist/content/rev4/templates/poam/json/FedRAMP-POAM-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/poam/json/FedRAMP-POAM-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/poam/json/FedRAMP-POAM-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/poam/json/FedRAMP-POAM-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev4/templates/poam/yaml/FedRAMP-POAM-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/poam/yaml/FedRAMP-POAM-OSCAL-Template.yaml -------------------------------------------------------------------------------- /dist/content/rev4/templates/sap/json/FedRAMP-SAP-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sap/json/FedRAMP-SAP-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/sap/json/FedRAMP-SAP-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sap/json/FedRAMP-SAP-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev4/templates/sap/yaml/FedRAMP-SAP-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sap/yaml/FedRAMP-SAP-OSCAL-Template.yaml -------------------------------------------------------------------------------- /dist/content/rev4/templates/sar/json/FedRAMP-SAR-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sar/json/FedRAMP-SAR-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/sar/json/FedRAMP-SAR-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sar/json/FedRAMP-SAR-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev4/templates/sar/yaml/FedRAMP-SAR-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/sar/yaml/FedRAMP-SAR-OSCAL-Template.yaml -------------------------------------------------------------------------------- /dist/content/rev4/templates/ssp/json/FedRAMP-SSP-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/ssp/json/FedRAMP-SSP-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/ssp/json/FedRAMP-SSP-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/ssp/json/FedRAMP-SSP-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev4/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev4/templates/ssp/yaml/FedRAMP-SSP-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev4/templates/ssp/yaml/FedRAMP-SSP-OSCAL-Template.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_HIGH-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LI-SaaS-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_LOW-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline_profile-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline_profile-min.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/json/FedRAMP_rev5_MODERATE-baseline_profile.json -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_HIGH-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_HIGH-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_LI-SaaS-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_LI-SaaS-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_LOW-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_LOW-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/xml/FedRAMP_rev5_MODERATE-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/xml/FedRAMP_rev5_MODERATE-baseline_profile.xml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_HIGH-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_HIGH-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_HIGH-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_LI-SaaS-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_LI-SaaS-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_LI-SaaS-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_LOW-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_LOW-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_LOW-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_MODERATE-baseline-resolved-profile_catalog.yaml -------------------------------------------------------------------------------- /dist/content/rev5/baselines/yaml/FedRAMP_rev5_MODERATE-baseline_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/baselines/yaml/FedRAMP_rev5_MODERATE-baseline_profile.yaml -------------------------------------------------------------------------------- /dist/content/rev5/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/README.md -------------------------------------------------------------------------------- /dist/content/rev5/resources/json/FedRAMP_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/json/FedRAMP_extensions.json -------------------------------------------------------------------------------- /dist/content/rev5/resources/json/fedramp_threats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/json/fedramp_threats.json -------------------------------------------------------------------------------- /dist/content/rev5/resources/json/fedramp_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/json/fedramp_values.json -------------------------------------------------------------------------------- /dist/content/rev5/resources/json/information-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/json/information-types.json -------------------------------------------------------------------------------- /dist/content/rev5/resources/xml/FedRAMP_extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/xml/FedRAMP_extensions.xml -------------------------------------------------------------------------------- /dist/content/rev5/resources/xml/fedramp_threats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/xml/fedramp_threats.xml -------------------------------------------------------------------------------- /dist/content/rev5/resources/xml/fedramp_values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/xml/fedramp_values.xml -------------------------------------------------------------------------------- /dist/content/rev5/resources/xml/information-types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/resources/xml/information-types.xml -------------------------------------------------------------------------------- /dist/content/rev5/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/README.md -------------------------------------------------------------------------------- /dist/content/rev5/templates/poam/json/FedRAMP-POAM-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/poam/json/FedRAMP-POAM-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/poam/json/FedRAMP-POAM-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/poam/json/FedRAMP-POAM-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev5/templates/poam/yaml/FedRAMP-POAM-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/poam/yaml/FedRAMP-POAM-OSCAL-Template.yaml -------------------------------------------------------------------------------- /dist/content/rev5/templates/sap/json/FedRAMP-SAP-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sap/json/FedRAMP-SAP-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/sap/json/FedRAMP-SAP-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sap/json/FedRAMP-SAP-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev5/templates/sap/yaml/FedRAMP-SAP-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sap/yaml/FedRAMP-SAP-OSCAL-Template.yaml -------------------------------------------------------------------------------- /dist/content/rev5/templates/sar/json/FedRAMP-SAR-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sar/json/FedRAMP-SAR-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/sar/json/FedRAMP-SAR-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sar/json/FedRAMP-SAR-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev5/templates/sar/yaml/FedRAMP-SAR-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/sar/yaml/FedRAMP-SAR-OSCAL-Template.yaml -------------------------------------------------------------------------------- /dist/content/rev5/templates/ssp/json/FedRAMP-SSP-OSCAL-Template-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/ssp/json/FedRAMP-SSP-OSCAL-Template-min.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/ssp/json/FedRAMP-SSP-OSCAL-Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/ssp/json/FedRAMP-SSP-OSCAL-Template.json -------------------------------------------------------------------------------- /dist/content/rev5/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml -------------------------------------------------------------------------------- /dist/content/rev5/templates/ssp/yaml/FedRAMP-SSP-OSCAL-Template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/dist/content/rev5/templates/ssp/yaml/FedRAMP-SSP-OSCAL-Template.yaml -------------------------------------------------------------------------------- /documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/README.md -------------------------------------------------------------------------------- /documents/adr/0001-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/0001-record-architecture-decisions.md -------------------------------------------------------------------------------- /documents/adr/0002-git-release-version-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/0002-git-release-version-strategy.md -------------------------------------------------------------------------------- /documents/adr/0003-github-management-teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/0003-github-management-teams.md -------------------------------------------------------------------------------- /documents/adr/0004-use-github-wiki-operational-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/0004-use-github-wiki-operational-docs.md -------------------------------------------------------------------------------- /documents/adr/0005-beta-metrics-collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/0005-beta-metrics-collections.md -------------------------------------------------------------------------------- /documents/adr/0006-testing-harness-approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/0006-testing-harness-approach.md -------------------------------------------------------------------------------- /documents/adr/007-signal-unsupportent-content-in-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/007-signal-unsupportent-content-in-github.md -------------------------------------------------------------------------------- /documents/adr/adr_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/adr/adr_template.md -------------------------------------------------------------------------------- /documents/rev4/FedRAMP_Extensions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/FedRAMP_Extensions.pdf -------------------------------------------------------------------------------- /documents/rev4/FedRAMP_OSCAL_Vendor_Resources.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/FedRAMP_OSCAL_Vendor_Resources.pdf -------------------------------------------------------------------------------- /documents/rev4/FedRAMP_extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/FedRAMP_extensions.html -------------------------------------------------------------------------------- /documents/rev4/Guide_to_OSCAL-based_FedRAMP_Content.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/Guide_to_OSCAL-based_FedRAMP_Content.pdf -------------------------------------------------------------------------------- /documents/rev4/Guide_to_OSCAL-based_FedRAMP_Plan_of_Action_and_Milestones_(POAM)_rev4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/Guide_to_OSCAL-based_FedRAMP_Plan_of_Action_and_Milestones_(POAM)_rev4.pdf -------------------------------------------------------------------------------- /documents/rev4/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Plans_(SAP)_rev4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Plans_(SAP)_rev4.pdf -------------------------------------------------------------------------------- /documents/rev4/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Reports_(SAR)_rev4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Reports_(SAR)_rev4.pdf -------------------------------------------------------------------------------- /documents/rev4/Guide_to_OSCAL-based_FedRAMP_System_Security_Plans_(SSP)_rev4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/Guide_to_OSCAL-based_FedRAMP_System_Security_Plans_(SSP)_rev4.pdf -------------------------------------------------------------------------------- /documents/rev4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev4/README.md -------------------------------------------------------------------------------- /documents/rev5/Guide_to_OSCAL-based_FedRAMP_Content_rev5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev5/Guide_to_OSCAL-based_FedRAMP_Content_rev5.pdf -------------------------------------------------------------------------------- /documents/rev5/Guide_to_OSCAL-based_FedRAMP_Plan_of_Action_and_Milestones_(POAM)_rev5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev5/Guide_to_OSCAL-based_FedRAMP_Plan_of_Action_and_Milestones_(POAM)_rev5.pdf -------------------------------------------------------------------------------- /documents/rev5/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Plans_(SAP)_rev5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev5/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Plans_(SAP)_rev5.pdf -------------------------------------------------------------------------------- /documents/rev5/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Reports_(SAR)_rev5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev5/Guide_to_OSCAL-based_FedRAMP_Security_Assessment_Reports_(SAR)_rev5.pdf -------------------------------------------------------------------------------- /documents/rev5/Guide_to_OSCAL-based_FedRAMP_System_Security_Plans_(SSP)_rev5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/documents/rev5/Guide_to_OSCAL-based_FedRAMP_System_Security_Plans_(SSP)_rev5.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/package.json -------------------------------------------------------------------------------- /presentations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/README.md -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 1.11.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 1.11.2024.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 1.19.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 1.19.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 10.13.2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 10.13.2022.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 10.26.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 10.26.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 10.27.2022 NIST Tools DEMO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 10.27.2022 NIST Tools DEMO.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 10.27.2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 10.27.2022.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 11.10.2022 (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 11.10.2022 (1).pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 11.30.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 11.30.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 2.08.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 2.08.2024.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 3.07.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 3.07.2024.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 3.16.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 3.16.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 4.04.24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 4.04.24.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 4.13.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 4.13.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 5.02.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 5.02.2024.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 5.11.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 5.11.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 5.30.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 5.30.2024.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 6.27.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 6.27.2024.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 6.8.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 6.8.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 7.6.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 7.6.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 8.01.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 8.01.2024.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 8.31.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 8.31.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 9.1.2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 9.1.2022.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 9.15.2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 9.15.2022.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation 9.28.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation 9.28.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bites Presentation_and_Demo_Instructions 2.16.2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bites Presentation_and_Demo_Instructions 2.16.2023.pdf -------------------------------------------------------------------------------- /presentations/data-bites/Developer Data Bytes Presentation 8.22.2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/presentations/data-bites/Developer Data Bytes Presentation 8.22.2024.pdf -------------------------------------------------------------------------------- /src/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/config -------------------------------------------------------------------------------- /src/content/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/docker-compose.yml -------------------------------------------------------------------------------- /src/content/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/module.mk -------------------------------------------------------------------------------- /src/content/rev4/baselines/xml/FedRAMP_rev4_HIGH-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/baselines/xml/FedRAMP_rev4_HIGH-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev4/baselines/xml/FedRAMP_rev4_LI-SaaS-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/baselines/xml/FedRAMP_rev4_LI-SaaS-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev4/baselines/xml/FedRAMP_rev4_LOW-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/baselines/xml/FedRAMP_rev4_LOW-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev4/baselines/xml/FedRAMP_rev4_MODERATE-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/baselines/xml/FedRAMP_rev4_MODERATE-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev4/resources/xml/FedRAMP_extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/resources/xml/FedRAMP_extensions.xml -------------------------------------------------------------------------------- /src/content/rev4/resources/xml/fedramp_threats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/resources/xml/fedramp_threats.xml -------------------------------------------------------------------------------- /src/content/rev4/resources/xml/fedramp_values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/resources/xml/fedramp_values.xml -------------------------------------------------------------------------------- /src/content/rev4/resources/xml/information-types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/resources/xml/information-types.xml -------------------------------------------------------------------------------- /src/content/rev4/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/content/rev4/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/content/rev4/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/content/rev4/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev4/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/content/rev5/baselines/xml/FedRAMP_rev5_HIGH-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/baselines/xml/FedRAMP_rev5_HIGH-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev5/baselines/xml/FedRAMP_rev5_LI-SaaS-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/baselines/xml/FedRAMP_rev5_LI-SaaS-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev5/baselines/xml/FedRAMP_rev5_LOW-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/baselines/xml/FedRAMP_rev5_LOW-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev5/baselines/xml/FedRAMP_rev5_MODERATE-baseline_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/baselines/xml/FedRAMP_rev5_MODERATE-baseline_profile.xml -------------------------------------------------------------------------------- /src/content/rev5/baselines/xml/NIST_SP-800-53_rev5_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/baselines/xml/NIST_SP-800-53_rev5_catalog.xml -------------------------------------------------------------------------------- /src/content/rev5/resources/xml/FedRAMP_extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/resources/xml/FedRAMP_extensions.xml -------------------------------------------------------------------------------- /src/content/rev5/resources/xml/fedramp_threats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/resources/xml/fedramp_threats.xml -------------------------------------------------------------------------------- /src/content/rev5/resources/xml/fedramp_values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/resources/xml/fedramp_values.xml -------------------------------------------------------------------------------- /src/content/rev5/resources/xml/information-types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/resources/xml/information-types.xml -------------------------------------------------------------------------------- /src/content/rev5/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/templates/poam/xml/FedRAMP-POAM-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/content/rev5/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/templates/sap/xml/FedRAMP-SAP-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/content/rev5/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/templates/sar/xml/FedRAMP-SAR-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/content/rev5/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/content/rev5/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/README.md -------------------------------------------------------------------------------- /src/examples/java/.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .project 3 | .settings 4 | target 5 | -------------------------------------------------------------------------------- /src/examples/java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/Dockerfile -------------------------------------------------------------------------------- /src/examples/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/README.md -------------------------------------------------------------------------------- /src/examples/java/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/docker-compose.yml -------------------------------------------------------------------------------- /src/examples/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/pom.xml -------------------------------------------------------------------------------- /src/examples/java/src/main/java/gov/fedramp/automationExample/FedrampAutomationValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/src/main/java/gov/fedramp/automationExample/FedrampAutomationValidator.java -------------------------------------------------------------------------------- /src/examples/java/src/main/java/gov/fedramp/automationExample/OscalJsonToXmlConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/src/main/java/gov/fedramp/automationExample/OscalJsonToXmlConverter.java -------------------------------------------------------------------------------- /src/examples/java/src/test/java/gov/fedramp/automationExample/FedrampAutomationValidatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/src/test/java/gov/fedramp/automationExample/FedrampAutomationValidatorTest.java -------------------------------------------------------------------------------- /src/examples/java/src/test/java/gov/fedramp/automationExample/OscalJsonToXmlConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/java/src/test/java/gov/fedramp/automationExample/OscalJsonToXmlConverterTest.java -------------------------------------------------------------------------------- /src/examples/javascript/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | -------------------------------------------------------------------------------- /src/examples/javascript/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/.prettierrc -------------------------------------------------------------------------------- /src/examples/javascript/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/Dockerfile -------------------------------------------------------------------------------- /src/examples/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/README.md -------------------------------------------------------------------------------- /src/examples/javascript/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/docker-compose.yml -------------------------------------------------------------------------------- /src/examples/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/package-lock.json -------------------------------------------------------------------------------- /src/examples/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/package.json -------------------------------------------------------------------------------- /src/examples/javascript/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/src/validator.js -------------------------------------------------------------------------------- /src/examples/javascript/src/validator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/src/validator.test.js -------------------------------------------------------------------------------- /src/examples/javascript/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/javascript/test.sh -------------------------------------------------------------------------------- /src/examples/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/module.mk -------------------------------------------------------------------------------- /src/examples/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/.gitignore -------------------------------------------------------------------------------- /src/examples/python/.python-version: -------------------------------------------------------------------------------- 1 | 3.9.6 2 | -------------------------------------------------------------------------------- /src/examples/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/Dockerfile -------------------------------------------------------------------------------- /src/examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/README.md -------------------------------------------------------------------------------- /src/examples/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/examples/python/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/docker-compose.yml -------------------------------------------------------------------------------- /src/examples/python/requirements.in: -------------------------------------------------------------------------------- 1 | black 2 | mypy 3 | pip-tools 4 | pytest 5 | -------------------------------------------------------------------------------- /src/examples/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/requirements.txt -------------------------------------------------------------------------------- /src/examples/python/test_json_to_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/test_json_to_xml.py -------------------------------------------------------------------------------- /src/examples/python/test_validate_oscal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/test_validate_oscal.py -------------------------------------------------------------------------------- /src/examples/python/validate_oscal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/examples/python/validate_oscal.py -------------------------------------------------------------------------------- /src/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/utils/README.md -------------------------------------------------------------------------------- /src/utils/extensions-preview.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/utils/extensions-preview.xsl -------------------------------------------------------------------------------- /src/validations/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/validations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/README.md -------------------------------------------------------------------------------- /src/validations/bin/assert-svrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/bin/assert-svrl.py -------------------------------------------------------------------------------- /src/validations/bin/compile-sch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/bin/compile-sch.sh -------------------------------------------------------------------------------- /src/validations/bin/evaluate-compiled-schematron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/bin/evaluate-compiled-schematron.sh -------------------------------------------------------------------------------- /src/validations/bin/validate_with_schematron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/bin/validate_with_schematron.sh -------------------------------------------------------------------------------- /src/validations/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docker-compose.yml -------------------------------------------------------------------------------- /src/validations/docs/adr/0001-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0001-record-architecture-decisions.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0002-xml-schematron-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0002-xml-schematron-usage.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0003-saxon-he-xslt-engine-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0003-saxon-he-xslt-engine-usage.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0004-xslt-function-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0004-xslt-function-library.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0005-pipeline-execution-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0005-pipeline-execution-design.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0006-evaluate-xproc-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0006-evaluate-xproc-pipeline.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0007-web-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0007-web-frontend.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0008-attachment-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0008-attachment-validation.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0009-multi-document-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0009-multi-document-rules.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0010-remote-resource-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0010-remote-resource-usage.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0011-dns-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0011-dns-validation.md -------------------------------------------------------------------------------- /src/validations/docs/adr/0012-multiple-ruleset-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/0012-multiple-ruleset-support.md -------------------------------------------------------------------------------- /src/validations/docs/adr/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/docs/adr/template.md -------------------------------------------------------------------------------- /src/validations/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/module.mk -------------------------------------------------------------------------------- /src/validations/report/schematron/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/validations/report/test/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/validations/rules/Writing_FedRAMP_Validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/Writing_FedRAMP_Validations.md -------------------------------------------------------------------------------- /src/validations/rules/assertion-grouping.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/assertion-grouping.xsl -------------------------------------------------------------------------------- /src/validations/rules/rev4/poam.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/poam.sch -------------------------------------------------------------------------------- /src/validations/rules/rev4/rules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/rules.css -------------------------------------------------------------------------------- /src/validations/rules/rev4/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/rules.md -------------------------------------------------------------------------------- /src/validations/rules/rev4/rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/rules.xml -------------------------------------------------------------------------------- /src/validations/rules/rev4/rules.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/rules.xsd -------------------------------------------------------------------------------- /src/validations/rules/rev4/rules.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/rules.xsl -------------------------------------------------------------------------------- /src/validations/rules/rev4/sap.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/sap.sch -------------------------------------------------------------------------------- /src/validations/rules/rev4/sar.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/sar.sch -------------------------------------------------------------------------------- /src/validations/rules/rev4/ssp.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev4/ssp.sch -------------------------------------------------------------------------------- /src/validations/rules/rev5/poam.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/poam.sch -------------------------------------------------------------------------------- /src/validations/rules/rev5/rules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/rules.css -------------------------------------------------------------------------------- /src/validations/rules/rev5/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/rules.md -------------------------------------------------------------------------------- /src/validations/rules/rev5/rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/rules.xml -------------------------------------------------------------------------------- /src/validations/rules/rev5/rules.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/rules.xsd -------------------------------------------------------------------------------- /src/validations/rules/rev5/rules.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/rules.xsl -------------------------------------------------------------------------------- /src/validations/rules/rev5/sap.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/sap.sch -------------------------------------------------------------------------------- /src/validations/rules/rev5/sar.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/sar.sch -------------------------------------------------------------------------------- /src/validations/rules/rev5/ssp.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/rev5/ssp.sch -------------------------------------------------------------------------------- /src/validations/rules/sample-ssp.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/sample-ssp.xsl -------------------------------------------------------------------------------- /src/validations/rules/set-param.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/set-param.xsl -------------------------------------------------------------------------------- /src/validations/rules/swap-messages.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/rules/swap-messages.xsl -------------------------------------------------------------------------------- /src/validations/styleguides/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/styleguides/module.mk -------------------------------------------------------------------------------- /src/validations/styleguides/sch.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/styleguides/sch.sch -------------------------------------------------------------------------------- /src/validations/styleguides/xspec.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/styleguides/xspec.sch -------------------------------------------------------------------------------- /src/validations/test/demo/FedRAMP-SSP-OSCAL-Template.xml: -------------------------------------------------------------------------------- 1 | ../../../content/templates/ssp/xml/FedRAMP-SSP-OSCAL-Template.xml -------------------------------------------------------------------------------- /src/validations/test/rules/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/module.mk -------------------------------------------------------------------------------- /src/validations/test/rules/rev4/poam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev4/poam.xml -------------------------------------------------------------------------------- /src/validations/test/rules/rev4/poam.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev4/poam.xspec -------------------------------------------------------------------------------- /src/validations/test/rules/rev4/sap.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev4/sap.xspec -------------------------------------------------------------------------------- /src/validations/test/rules/rev4/sar.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev4/sar.xspec -------------------------------------------------------------------------------- /src/validations/test/rules/rev4/ssp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev4/ssp.xml -------------------------------------------------------------------------------- /src/validations/test/rules/rev4/ssp.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev4/ssp.xspec -------------------------------------------------------------------------------- /src/validations/test/rules/rev5/poam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev5/poam.xml -------------------------------------------------------------------------------- /src/validations/test/rules/rev5/poam.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev5/poam.xspec -------------------------------------------------------------------------------- /src/validations/test/rules/rev5/sap.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev5/sap.xspec -------------------------------------------------------------------------------- /src/validations/test/rules/rev5/sar.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev5/sar.xspec -------------------------------------------------------------------------------- /src/validations/test/rules/rev5/ssp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev5/ssp.xml -------------------------------------------------------------------------------- /src/validations/test/rules/rev5/ssp.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/rules/rev5/ssp.xspec -------------------------------------------------------------------------------- /src/validations/test/styleguides/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/styleguides/module.mk -------------------------------------------------------------------------------- /src/validations/test/styleguides/sch.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/validations/test/styleguides/sch.xspec -------------------------------------------------------------------------------- /src/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/.gitignore -------------------------------------------------------------------------------- /src/web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/.prettierrc -------------------------------------------------------------------------------- /src/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/README.md -------------------------------------------------------------------------------- /src/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/index.html -------------------------------------------------------------------------------- /src/web/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/module.mk -------------------------------------------------------------------------------- /src/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/package-lock.json -------------------------------------------------------------------------------- /src/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/package.json -------------------------------------------------------------------------------- /src/web/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/postcss.config.cjs -------------------------------------------------------------------------------- /src/web/public/SaxonJS2.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/public/SaxonJS2.rt.js -------------------------------------------------------------------------------- /src/web/public/content: -------------------------------------------------------------------------------- 1 | ../../../dist/content -------------------------------------------------------------------------------- /src/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/public/favicon.ico -------------------------------------------------------------------------------- /src/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/public/robots.txt -------------------------------------------------------------------------------- /src/web/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/screenshot.png -------------------------------------------------------------------------------- /src/web/src/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/index.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/actions/assertion-documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/actions/assertion-documentation.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/actions/index.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/actions/schematron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/actions/schematron.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/actions/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/actions/validator.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/index.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/assertion-documetation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/assertion-documetation.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/helpers.test.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/helpers.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/index.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/router-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/router-machine.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/router.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/router.test.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/router.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/ruleset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/ruleset/index.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/ruleset/schematron-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/ruleset/schematron-machine.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/ruleset/validation-results-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/ruleset/validation-results-machine.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/selectors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/selectors.test.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/selectors.ts -------------------------------------------------------------------------------- /src/web/src/browser/presenter/state/validator-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/presenter/state/validator-machine.ts -------------------------------------------------------------------------------- /src/web/src/browser/util/file-input.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/util/file-input.test.ts -------------------------------------------------------------------------------- /src/web/src/browser/util/file-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/util/file-input.ts -------------------------------------------------------------------------------- /src/web/src/browser/views/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/App.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/AssertionDocumentationOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/AssertionDocumentationOverlay.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/AssertionXSpecScenarios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/AssertionXSpecScenarios.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/CodeViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/CodeViewer.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/Collapsable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/Collapsable.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/DevelopersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/DevelopersPage.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/DocumentViewerOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/DocumentViewerOverlay.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/Footer.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/Header.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/HeadingOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/HeadingOne.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/HomePage.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/Identifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/Identifier.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/RulesetPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/RulesetPicker.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/UsaBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/UsaBanner.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/UsageTrackingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/UsageTrackingPage.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/ValidatorFileSelectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/ValidatorFileSelectForm.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/ValidatorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/ValidatorPage.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/ValidatorReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/ValidatorReport.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/components/ValidatorResultsFilterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/components/ValidatorResultsFilterForm.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/context.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/hooks.ts -------------------------------------------------------------------------------- /src/web/src/browser/views/images/2022-05-19-first-oscal-system-security-plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/2022-05-19-first-oscal-system-security-plan.png -------------------------------------------------------------------------------- /src/web/src/browser/views/images/FedRAMP-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/FedRAMP-youtube.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/FedRAMP_twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/FedRAMP_twitter.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/asap-540-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/asap-540-2.mp4 -------------------------------------------------------------------------------- /src/web/src/browser/views/images/bldg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/bldg.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/footer-mail-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/footer-mail-icon.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/gsa-reversed-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/gsa-reversed-logo.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/homepage-banner-desktop.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/homepage-banner-desktop.jpeg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/homepage-banner-tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/homepage-banner-tablet.jpg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/laptop.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/logo.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/partners-assessors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/partners-assessors.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/partners-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/partners-cloud.svg -------------------------------------------------------------------------------- /src/web/src/browser/views/images/partners_fed-agencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/images/partners_fed-agencies.png -------------------------------------------------------------------------------- /src/web/src/browser/views/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/index.tsx -------------------------------------------------------------------------------- /src/web/src/browser/views/styles/HomePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/styles/HomePage.scss -------------------------------------------------------------------------------- /src/web/src/browser/views/styles/RulesetPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/styles/RulesetPicker.scss -------------------------------------------------------------------------------- /src/web/src/browser/views/styles/ValidatorPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/styles/ValidatorPage.scss -------------------------------------------------------------------------------- /src/web/src/browser/views/styles/ValidatorReport.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/styles/ValidatorReport.scss -------------------------------------------------------------------------------- /src/web/src/browser/views/styles/ValidatorResultsFilterForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/styles/ValidatorResultsFilterForm.scss -------------------------------------------------------------------------------- /src/web/src/browser/views/styles/_uswds-theme-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/styles/_uswds-theme-overrides.scss -------------------------------------------------------------------------------- /src/web/src/browser/views/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/browser/views/styles/index.scss -------------------------------------------------------------------------------- /src/web/src/cli/cli-controller.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/cli/cli-controller.test.ts -------------------------------------------------------------------------------- /src/web/src/cli/cli-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/cli/cli-controller.ts -------------------------------------------------------------------------------- /src/web/src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/cli/index.ts -------------------------------------------------------------------------------- /src/web/src/fitness.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/fitness.test.ts -------------------------------------------------------------------------------- /src/web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/index.ts -------------------------------------------------------------------------------- /src/web/src/shared/adapters/highlight-js-commonjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/adapters/highlight-js-commonjs.ts -------------------------------------------------------------------------------- /src/web/src/shared/adapters/highlight-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/adapters/highlight-js.ts -------------------------------------------------------------------------------- /src/web/src/shared/adapters/saxon-js-gateway.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/adapters/saxon-js-gateway.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/adapters/saxon-js-gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/adapters/saxon-js-gateway.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/github.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/github.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/github.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/metrics.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/oscal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/oscal.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/schematron.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/schematron.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/schematron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/schematron.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/source-code-links.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/source-code-links.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/source-code-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/source-code-links.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/text.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/text.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/text.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/xml.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/xspec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/xspec.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/domain/xspec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/domain/xspec.ts -------------------------------------------------------------------------------- /src/web/src/shared/project-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/project-config.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/annotate-xml.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/annotate-xml.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/annotate-xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/annotate-xml.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/assertion-views.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/assertion-views.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/assertion-views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/assertion-views.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/oscal.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/oscal.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/oscal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/oscal.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/schematron-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/schematron-compiler.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/schematron-summary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/schematron-summary.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/schematron-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/schematron-summary.ts -------------------------------------------------------------------------------- /src/web/src/shared/use-cases/xspec-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/use-cases/xspec-summary.ts -------------------------------------------------------------------------------- /src/web/src/shared/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/util.test.ts -------------------------------------------------------------------------------- /src/web/src/shared/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/src/shared/util.ts -------------------------------------------------------------------------------- /src/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/tsconfig.json -------------------------------------------------------------------------------- /src/web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/tsconfig.node.json -------------------------------------------------------------------------------- /src/web/types/saxon-js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/types/saxon-js.d.ts -------------------------------------------------------------------------------- /src/web/types/static.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/types/static.d.ts -------------------------------------------------------------------------------- /src/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/src/web/vite.config.ts -------------------------------------------------------------------------------- /vendor/.gitignore: -------------------------------------------------------------------------------- 1 | Saxon-HE-*.jar 2 | -------------------------------------------------------------------------------- /vendor/svrl2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/fedramp-automation/HEAD/vendor/svrl2html.xsl --------------------------------------------------------------------------------