diff --git a/spec/api/v2/openapi.rb b/spec/api/v2/openapi.rb index 1770b9d52..1f21e724a 100644 --- a/spec/api/v2/openapi.rb +++ b/spec/api/v2/openapi.rb @@ -46,12 +46,10 @@ def info end def description - 'UNDER DEVELOPMENT: This version of the API is not fully done ' \ - 'and some parts of it might change! ' \ - 'This is the API for Cloud Services for RHEL Compliance. ' \ - 'You can find out more about Red Hat Cloud Services for RHEL at ' \ - '[https://console.redhat.com/]' \ - '(https://console.redhat.com/)' + 'This is the API for Cloud Services for RHEL Compliance. ' \ + 'You can find out more about Red Hat Cloud Services for RHEL at ' \ + '[https://console.redhat.com/]' \ + '(https://console.redhat.com/)' end end end diff --git a/spec/integration/v2/policies_spec.rb b/spec/integration/v2/policies_spec.rb index 08c6c78ac..85916d333 100644 --- a/spec/integration/v2/policies_spec.rb +++ b/spec/integration/v2/policies_spec.rb @@ -14,7 +14,8 @@ get 'Request Policies' do v2_auth_header tags 'Policies' - description 'Lists Policies' + description 'Retrieve the list of policies that have been created ' \ + 'to test the compliance of your registered systems.' operationId 'Policies' content_types pagination_params_v2 @@ -70,7 +71,7 @@ post 'Create a Policy' do v2_auth_header tags 'Policies' - description 'Create a Policy with the provided attributes' + description 'Create a new security policy.' operationId 'CreatePolicy' content_types @@ -102,7 +103,7 @@ get 'Request a Policy' do v2_auth_header tags 'Policies' - description 'Returns a Policy' + description 'Retrieve a specific policy.' operationId 'Policy' content_types @@ -130,7 +131,7 @@ patch 'Update a Policy' do v2_auth_header tags 'Policies' - description 'Updates a Policy with the provided attributes' + description 'Edit or update an existing policy.' operationId 'UpdatePolicy' content_types @@ -152,7 +153,7 @@ delete 'Delete a Policy' do v2_auth_header tags 'Policies' - description 'Deletes a Policy' + description 'Delete a specific policy.' operationId 'DeletePolicy' content_types @@ -186,7 +187,7 @@ get 'Request Policies assigned to a System' do v2_auth_header tags 'Systems' - description 'Lists Policies under a System' + description 'List all policies assigned to a single system.' operationId 'SystemsPolicies' content_types pagination_params_v2 diff --git a/spec/integration/v2/profiles_spec.rb b/spec/integration/v2/profiles_spec.rb index 2ae1f8546..d330b76b6 100644 --- a/spec/integration/v2/profiles_spec.rb +++ b/spec/integration/v2/profiles_spec.rb @@ -15,7 +15,7 @@ get 'Request Profiles' do v2_auth_header tags 'Content' - description 'Lists Profiles' + description 'List all security guide profiles.' operationId 'Profiles' content_types pagination_params_v2 @@ -77,7 +77,7 @@ get 'Request a Profile' do v2_auth_header tags 'Content' - description 'Returns a Profile' + description 'Retrieve a specific profile.' operationId 'Profile' content_types diff --git a/spec/integration/v2/reports_spec.rb b/spec/integration/v2/reports_spec.rb index 67d339ee6..37418ff60 100644 --- a/spec/integration/v2/reports_spec.rb +++ b/spec/integration/v2/reports_spec.rb @@ -21,7 +21,7 @@ get 'Request Reports' do v2_auth_header tags 'Reports' - description 'Lists Reports' + description 'Retrieve a list of all available reports.' operationId 'Reports' content_types pagination_params_v2 @@ -101,7 +101,7 @@ get 'Request a Report' do v2_auth_header tags 'Reports' - description 'Returns a Report' + description 'Retrieve a specific report.' operationId 'Report' content_types @@ -129,7 +129,7 @@ delete 'Delete a Report results' do v2_auth_header tags 'Reports' - description "Deletes Report's test results" + description 'Delete test results for a specific report.' operationId 'DeleteReport' content_types @@ -205,7 +205,7 @@ get 'Request Reports' do v2_auth_header tags 'Reports' - description 'Lists Reports' + description 'Retrieve a list of reports for a specific system.' operationId 'SystemReports' content_types pagination_params_v2 diff --git a/spec/integration/v2/rule_groups_spec.rb b/spec/integration/v2/rule_groups_spec.rb index 8cd7c8ec1..619331003 100644 --- a/spec/integration/v2/rule_groups_spec.rb +++ b/spec/integration/v2/rule_groups_spec.rb @@ -15,7 +15,7 @@ get 'Request Rule Groups' do v2_auth_header tags 'Content' - description 'Lists Rule Groups' + description 'List all rules groups.' operationId 'Rule Groups' content_types pagination_params_v2 @@ -68,7 +68,7 @@ get 'Request a Rule Group' do v2_auth_header tags 'Content' - description 'Returns a Rule Group' + description 'Retrieve a specific rule group.' operationId 'RuleGroup' content_types diff --git a/spec/integration/v2/rule_results_spec.rb b/spec/integration/v2/rule_results_spec.rb index efd234e40..2ef5aaf1e 100644 --- a/spec/integration/v2/rule_results_spec.rb +++ b/spec/integration/v2/rule_results_spec.rb @@ -33,7 +33,7 @@ get 'Request Rule Results under a Report' do v2_auth_header tags 'Reports' - description 'Lists Rule Results under a Report' + description 'Retrieve all of the rule results for a specific report.' operationId 'ReportRuleResults' content_types pagination_params_v2 diff --git a/spec/integration/v2/rules_spec.rb b/spec/integration/v2/rules_spec.rb index be3ae270e..bb9764f58 100644 --- a/spec/integration/v2/rules_spec.rb +++ b/spec/integration/v2/rules_spec.rb @@ -16,7 +16,7 @@ get 'Request Rules' do v2_auth_header tags 'Content' - description 'Lists Rules assigned' + description 'Retrieve a list of rules for a specific security guide.' operationId 'Rules' content_types pagination_params_v2 @@ -69,7 +69,7 @@ get 'Request a Rule' do v2_auth_header tags 'Content' - description 'Returns a Rule' + description 'Retrieve a specific rule from a specific security guide.' operationId 'Rule' content_types @@ -110,7 +110,7 @@ get 'Request Rules assigned to a Profile' do v2_auth_header tags 'Content' - description 'Lists Rules assigned to a Profile' + description 'Retrieve a list of all security guide rules for a specific profile.' operationId 'ProfileRules' content_types pagination_params_v2 @@ -164,7 +164,7 @@ get 'Request a Rule assigned to a Profile' do v2_auth_header tags 'Content' - description 'Returns a Rule assigned to a Profile' + description 'Retrieve a specific security guide rule for a specific profile.' operationId 'ProfileRule' content_types @@ -223,7 +223,7 @@ get 'Request Rules assigned to a Tailoring' do v2_auth_header tags 'Policies' - description 'Lists Rules assigned to a Tailoring' + description 'Retrieve a list of rules relating to specific tailorings.' operationId 'TailoringRules' content_types pagination_params_v2 @@ -318,7 +318,7 @@ v2_auth_header tags 'Policies' - description 'Assigns a Rule to a Tailoring' + description 'Add a rule to a specific tailoring.' operationId 'AssignRule' content_types @@ -355,7 +355,7 @@ v2_auth_header tags 'Policies' - description 'Unassigns a Rule from a Tailoring' + description 'Use this to remove a rule from your tailoring.' operationId 'UnassignRule' content_types diff --git a/spec/integration/v2/security_guides_spec.rb b/spec/integration/v2/security_guides_spec.rb index 7272cbf57..788a4794d 100644 --- a/spec/integration/v2/security_guides_spec.rb +++ b/spec/integration/v2/security_guides_spec.rb @@ -13,7 +13,7 @@ get 'Request Security Guides' do v2_auth_header tags 'Content' - description 'Lists Security Guides' + description 'Retrieve a list of all SCAP security guides.' operationId 'SecurityGuides' content_types pagination_params_v2 @@ -95,7 +95,7 @@ get 'Request a Security Guide' do v2_auth_header tags 'Content' - description 'Returns a Security Guide' + description 'Retrieve a specific security guide.' operationId 'SecurityGuide' content_types @@ -127,9 +127,10 @@ get 'Request the Rule Tree of a Security Guide' do v2_auth_header tags 'Content' - description 'Returns the Rule Tree of a Security Guide' + description 'Returns rule tree of a security guide.' operationId 'SecurityGuideRuleTree' content_types + deprecated true parameter name: :security_guide_id, in: :path, type: :string, required: true diff --git a/spec/integration/v2/supported_profiles_spec.rb b/spec/integration/v2/supported_profiles_spec.rb index 8f63bf9e7..9d5b16059 100644 --- a/spec/integration/v2/supported_profiles_spec.rb +++ b/spec/integration/v2/supported_profiles_spec.rb @@ -13,7 +13,7 @@ get 'Request Supported Profiles' do v2_auth_header tags 'Content' - description 'Lists Supported Profiles' + description 'Retrieve the list of profiles supported by particular RHEL versions.' operationId 'SupportedProfiles' content_types pagination_params_v2 diff --git a/spec/integration/v2/systems_spec.rb b/spec/integration/v2/systems_spec.rb index a637690df..27748f46e 100644 --- a/spec/integration/v2/systems_spec.rb +++ b/spec/integration/v2/systems_spec.rb @@ -14,7 +14,7 @@ get 'Request Systems' do v2_auth_header tags 'Systems' - description 'Lists Systems' + description 'List all systems that are accessible when you are logged into your account.' operationId 'Systems' content_types tags_params @@ -77,7 +77,7 @@ get 'Request the list of available OS versions' do v2_auth_header tags 'Systems' - description 'This feature is exclusively used by the frontend' + description 'This feature is exclusively used by the frontend.' operationId 'SystemsOS' content_types deprecated true @@ -99,7 +99,7 @@ get 'Request a System' do v2_auth_header tags 'Systems' - description 'Returns a System' + description 'Get information about one specific system.' operationId 'System' content_types @@ -149,7 +149,7 @@ get 'Request Systems assigned to a Policy' do v2_auth_header tags 'Policies' - description 'Lists Systems assigned to a Policy' + description 'Retrieve all of the systems assigned to a specific policy.' operationId 'PolicySystems' content_types tags_params @@ -301,7 +301,7 @@ v2_auth_header tags 'Policies' - description 'Assigns a System to a Policy' + description 'Assign a specific system to a specific policy.' operationId 'AssignSystem' content_types @@ -340,7 +340,7 @@ v2_auth_header tags 'Policies' - description 'Unassigns a System from a Policy' + description 'Remove a specific system from a specific policy.' operationId 'UnassignSystem' content_types @@ -392,7 +392,7 @@ get 'Request Systems assigned to a Report' do v2_auth_header tags 'Reports' - description 'Lists Systems assigned to a Report' + description 'Retrieve all of the systems for a specific report.' operationId 'ReportSystems' content_types tags_params @@ -508,7 +508,7 @@ get 'Request a System' do v2_auth_header tags 'Reports' - description 'Returns a System under a Report' + description 'Retrieve a specific system from a specific report.' operationId 'ReportSystem' content_types diff --git a/spec/integration/v2/tailorings_spec.rb b/spec/integration/v2/tailorings_spec.rb index 435a9989c..ecc3ef876 100644 --- a/spec/integration/v2/tailorings_spec.rb +++ b/spec/integration/v2/tailorings_spec.rb @@ -26,7 +26,7 @@ get 'Request Tailorings' do v2_auth_header tags 'Policies' - description 'Lists Tailorings' + description 'Retrieve a list of all tailorings.' operationId 'Tailorings' content_types pagination_params_v2 @@ -139,7 +139,7 @@ get 'Request a Tailoring' do v2_auth_header tags 'Policies' - description 'Returns a Tailoring' + description 'Retrieve a specific tailoring.' operationId 'Tailoring' content_types @@ -170,7 +170,7 @@ patch 'Update a Tailoring' do v2_auth_header tags 'Policies' - description 'Updates a Tailoring with the provided value_overrides' + description 'Edit or update an existing tailoring.' operationId 'UpdateTailoring' content_types @@ -212,7 +212,7 @@ get 'Request the Rule Tree of a Tailoring' do v2_auth_header tags 'Policies' - description 'Returns the Rule Tree of a Tailoring' + description 'Returns rule tree of a tailoring.' operationId 'TailoringRuleTree' content_types deprecated true @@ -260,7 +260,7 @@ get 'Request a Tailoring file' do v2_auth_header tags 'Policies' - description 'Returns a Tailoring File' + description 'Retrieve a tailoring file of a specific tailoring.' operationId 'TailoringFile' content_types diff --git a/spec/integration/v2/test_results_spec.rb b/spec/integration/v2/test_results_spec.rb index 37eb13735..1744e0158 100644 --- a/spec/integration/v2/test_results_spec.rb +++ b/spec/integration/v2/test_results_spec.rb @@ -34,7 +34,7 @@ get 'Request Test Results under a Report' do v2_auth_header tags 'Reports' - description 'Lists Test Results under a Report' + description 'Retrieve all of the test results for a specific report.' operationId 'ReportTestResults' content_types tags_params @@ -194,7 +194,7 @@ get 'Request a Test Result' do v2_auth_header tags 'Reports' - description 'Returns a Test Result under a Report' + description 'Retrieve a specific test result for a specific report.' operationId 'ReportTestResult' content_types diff --git a/spec/integration/v2/value_definitions_spec.rb b/spec/integration/v2/value_definitions_spec.rb index e604a5a50..5ada6533b 100644 --- a/spec/integration/v2/value_definitions_spec.rb +++ b/spec/integration/v2/value_definitions_spec.rb @@ -15,7 +15,7 @@ get 'Request Value Definitions' do v2_auth_header tags 'Content' - description 'Lists Value Definitions' + description 'Retrieve a list of the fields which can be edited within a profile.' operationId 'ValueDefinitions' content_types pagination_params_v2 @@ -79,7 +79,7 @@ get 'Request a Value Definition' do v2_auth_header tags 'Content' - description 'Returns a Value Definition' + description 'Retrieve a specific value definition.' operationId 'ValueDefinition' content_types diff --git a/swagger/v2/openapi.json b/swagger/v2/openapi.json index 543129eed..f81dd08ba 100644 --- a/swagger/v2/openapi.json +++ b/swagger/v2/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Cloud Services for RHEL Compliance API v2", "version": "v2", - "description": "UNDER DEVELOPMENT: This version of the API is not fully done and some parts of it might change! This is the API for Cloud Services for RHEL Compliance. You can find out more about Red Hat Cloud Services for RHEL at [https://console.redhat.com/](https://console.redhat.com/)" + "description": "This is the API for Cloud Services for RHEL Compliance. You can find out more about Red Hat Cloud Services for RHEL at [https://console.redhat.com/](https://console.redhat.com/)" }, "servers": [ { @@ -101,7 +101,7 @@ "tags": [ "Policies" ], - "description": "Lists Policies", + "description": "Retrieve the list of policies that have been created to test the compliance of your registered systems.", "operationId": "Policies", "responses": { "200": { @@ -113,124 +113,124 @@ "value": { "data": [ { - "id": "2084643d-c456-4274-a985-e2cd3e10325d", - "title": "Esse voluptatem magnam enim.", - "description": "Vero sequi est. Adipisci eius accusantium. Assumenda voluptatem repellat.", + "id": "0926253f-f9f5-453e-8b80-ae0a38515cc7", + "title": "Vero assumenda error quo.", + "description": "Et eos blanditiis. Repellat ullam error. Provident qui quos.", "business_objective": null, - "compliance_threshold": 48.0, + "compliance_threshold": 47.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Commodi enim aut ea.", - "ref_id": "xccdf_org.ssgproject.content_profile_49090fa3ced93d91ad09c2b543af3821" + "profile_title": "Repellat rerum magnam qui.", + "ref_id": "xccdf_org.ssgproject.content_profile_d7cf760b9eecd58c74751603393fc2f4" }, { - "id": "2895b784-1d7e-4252-beba-d00de5bfa92b", - "title": "Tenetur voluptatem nihil blanditiis.", - "description": "Aliquam perferendis enim. Ipsum quae alias. Voluptas error alias.", + "id": "0e6963b8-8af0-4fdc-a2fc-bff28bd2ef09", + "title": "Alias omnis dignissimos vel.", + "description": "Dicta nesciunt aut. Cumque magni excepturi. Necessitatibus ad omnis.", "business_objective": null, - "compliance_threshold": 34.0, + "compliance_threshold": 21.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Iusto magni velit et.", - "ref_id": "xccdf_org.ssgproject.content_profile_8d1ef038a2b37b4e1079b3a708d19edb" + "profile_title": "Cumque sed iure vitae.", + "ref_id": "xccdf_org.ssgproject.content_profile_05cb43b11b8826002a297a7ab5531633" }, { - "id": "331c9db6-260a-463a-b4e7-4b8f0fc59be7", - "title": "Voluptas id aspernatur quia.", - "description": "Vel ea repellat. Dolorem ut consequuntur. Labore magni aut.", + "id": "15ca7ac6-f2bb-4d35-af77-1ceedb16af3b", + "title": "A doloribus dolor modi.", + "description": "Consequuntur velit et. Consectetur fugit in. Est non at.", "business_objective": null, - "compliance_threshold": 67.0, + "compliance_threshold": 76.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Incidunt temporibus sunt est.", - "ref_id": "xccdf_org.ssgproject.content_profile_86b7d514d38a186228fba7992ef9ca1a" + "profile_title": "Quibusdam eveniet sit ut.", + "ref_id": "xccdf_org.ssgproject.content_profile_78790567c2aa85950858b6c8bad3079c" }, { - "id": "39ad5051-89e6-4561-a349-c058f19449c4", - "title": "Ipsam quas quo a.", - "description": "Ducimus recusandae aut. Cupiditate eum vel. Totam eum earum.", + "id": "1f9bd602-b0de-47f2-83f7-db5a6ccc3ff1", + "title": "Accusamus adipisci debitis sint.", + "description": "Eveniet aut culpa. Architecto facilis quidem. Voluptatem et sunt.", "business_objective": null, - "compliance_threshold": 19.0, + "compliance_threshold": 34.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptas magni facilis soluta.", - "ref_id": "xccdf_org.ssgproject.content_profile_204e985df08262bbfff1685d63adf8a6" + "profile_title": "Velit qui velit id.", + "ref_id": "xccdf_org.ssgproject.content_profile_974e689ef1b4e08aaa958cb8f1009254" }, { - "id": "4922dec9-6143-4592-9fef-97f5db65aa7e", - "title": "Ut molestiae possimus qui.", - "description": "Totam saepe facilis. Aut vel non. Eius est aut.", + "id": "249ab3d7-d2d8-4cca-9a94-277cb3fdb612", + "title": "Quia ut occaecati accusantium.", + "description": "Laboriosam natus magnam. Non sit maxime. Rerum voluptatem iure.", "business_objective": null, - "compliance_threshold": 83.0, + "compliance_threshold": 79.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Est alias eum labore.", - "ref_id": "xccdf_org.ssgproject.content_profile_495ee50c1296a24245d22b85e92c7254" + "profile_title": "Nostrum praesentium et nobis.", + "ref_id": "xccdf_org.ssgproject.content_profile_72d708b1a4c7902bfd67641dbbf76776" }, { - "id": "52dd1d8c-587f-4a1c-8eeb-12ec199e72f4", - "title": "Iste labore ut sunt.", - "description": "Magnam perferendis sapiente. Nihil nihil sed. Rerum eum dicta.", + "id": "2744c447-111b-42ad-96e5-85e0590a5a32", + "title": "Enim ducimus est voluptas.", + "description": "Ullam nam facere. Itaque aut et. Voluptatem eius repellat.", "business_objective": null, - "compliance_threshold": 81.0, + "compliance_threshold": 79.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Maiores consectetur molestias rerum.", - "ref_id": "xccdf_org.ssgproject.content_profile_a709362c8073ed23367054fb8984e6a1" + "profile_title": "Alias suscipit pariatur distinctio.", + "ref_id": "xccdf_org.ssgproject.content_profile_064b40ccf9aeac311a2738e3a7fc4155" }, { - "id": "59c96dcb-39d1-4ca1-93d7-4f6f65d88c77", - "title": "Officiis explicabo ab tempora.", - "description": "Fugit necessitatibus est. Odit ut aperiam. Enim et rerum.", + "id": "2e0933d6-969c-457a-9726-0f58367ad6b2", + "title": "Deserunt dolores quos ipsum.", + "description": "Aperiam molestiae aut. Libero et consectetur. Vitae commodi blanditiis.", "business_objective": null, - "compliance_threshold": 48.0, + "compliance_threshold": 98.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Labore sunt repellat maxime.", - "ref_id": "xccdf_org.ssgproject.content_profile_5dfc0cf99a9285a80501e6030c892aee" + "profile_title": "Ut voluptatem aut eligendi.", + "ref_id": "xccdf_org.ssgproject.content_profile_009193b5c204ef63d30c1fbe54ffa672" }, { - "id": "66e9584d-3e45-4775-9a4e-33079cf7a679", - "title": "Nesciunt sequi debitis est.", - "description": "Facilis voluptatem quos. Corporis rerum qui. Dolorem vitae molestias.", + "id": "3c02beca-de17-4e41-ac1e-ca4438869507", + "title": "Possimus nulla necessitatibus facilis.", + "description": "Porro voluptates laudantium. Aut molestiae vel. Expedita sit esse.", "business_objective": null, - "compliance_threshold": 90.0, + "compliance_threshold": 69.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Est repellendus rerum dolor.", - "ref_id": "xccdf_org.ssgproject.content_profile_1a39acfbbdde94cf9a6e351da86360b4" + "profile_title": "Aliquam rem quae tempora.", + "ref_id": "xccdf_org.ssgproject.content_profile_d5ae0d259bb58156ff07332e8bfd6910" }, { - "id": "705bb0f5-2d19-4a8e-a9d3-698f54bc9b3e", - "title": "Eos distinctio adipisci accusantium.", - "description": "Quos natus nisi. Illo et sunt. Esse id ducimus.", + "id": "405d017d-ef8a-4ae5-beeb-952cc17840fd", + "title": "Non est aliquid consectetur.", + "description": "Minus enim consectetur. Libero adipisci illum. Velit ipsa eos.", "business_objective": null, - "compliance_threshold": 29.0, + "compliance_threshold": 85.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptate accusamus explicabo quidem.", - "ref_id": "xccdf_org.ssgproject.content_profile_aee7d3e093821b29ecf61d5ff2b5d50f" + "profile_title": "Nostrum sed ut non.", + "ref_id": "xccdf_org.ssgproject.content_profile_be30c6268a013b7f97644451678f19c0" }, { - "id": "716c0bc9-3f08-4f90-883f-095070f5b6a8", - "title": "Quae molestiae voluptas et.", - "description": "Qui magni quam. Qui natus dolorum. Ipsam quam architecto.", + "id": "42303347-a068-4f71-aa08-d9f56ad606aa", + "title": "Fugit sit reprehenderit dolor.", + "description": "Est excepturi fuga. Adipisci iure officia. Ratione quisquam in.", "business_objective": null, - "compliance_threshold": 38.0, + "compliance_threshold": 42.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Enim molestias dolorem possimus.", - "ref_id": "xccdf_org.ssgproject.content_profile_a87e5ec1e070f20d841a2ff475b9fa28" + "profile_title": "Non in doloribus perspiciatis.", + "ref_id": "xccdf_org.ssgproject.content_profile_1b3527aaf143412deaa2b5d23f61f4cc" } ], "meta": { @@ -251,124 +251,124 @@ "value": { "data": [ { - "id": "0216cf98-7a70-4d69-884d-9e957ac8dd23", - "title": "Ab qui facere et.", - "description": "Consequatur dolor aspernatur. Minima animi qui. Veniam vitae est.", + "id": "07a7672c-7781-4f75-80f9-fbe943beb1e3", + "title": "Nihil voluptate sint vel.", + "description": "Perferendis sit sint. Magnam libero et. Aut cumque et.", "business_objective": null, - "compliance_threshold": 87.0, + "compliance_threshold": 31.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Alias nihil possimus facilis.", - "ref_id": "xccdf_org.ssgproject.content_profile_3ac3d50a49f0de7f03cd34668026a7f1" + "profile_title": "Ea quos ipsa molestias.", + "ref_id": "xccdf_org.ssgproject.content_profile_859f90f1aee25718d7c7d21b7ac7b072" }, { - "id": "08730d58-c0e3-4512-8851-91db229cbe07", - "title": "Soluta nihil harum praesentium.", - "description": "Vel veritatis quo. Quia necessitatibus aut. Modi error ratione.", + "id": "10ce2785-9da4-41f9-af03-e12417ad53ed", + "title": "Nesciunt impedit recusandae sapiente.", + "description": "Harum dolor quia. Praesentium fugit non. Nihil pariatur molestiae.", "business_objective": null, - "compliance_threshold": 49.0, + "compliance_threshold": 93.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Quam aperiam dignissimos eos.", - "ref_id": "xccdf_org.ssgproject.content_profile_4146d1d830dbba9d448048423505bed9" + "profile_title": "Fuga ut atque sit.", + "ref_id": "xccdf_org.ssgproject.content_profile_a9ab1b5105ae2d62c66363d6d9f42c42" }, { - "id": "2173ca8f-5873-495f-a961-f28eb9ce312b", - "title": "Quasi ex sed et.", - "description": "Eius nobis consequuntur. Qui voluptatum perspiciatis. Et quam quia.", + "id": "12cfe39d-de71-446f-b480-ad4de580ba22", + "title": "Et omnis magni necessitatibus.", + "description": "Vero eos dolores. Dolore eos aut. Est aut et.", "business_objective": null, - "compliance_threshold": 96.0, + "compliance_threshold": 15.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Labore delectus praesentium a.", - "ref_id": "xccdf_org.ssgproject.content_profile_b860b2e389fd5ba62aecadfeed567b40" + "profile_title": "A reprehenderit consequatur omnis.", + "ref_id": "xccdf_org.ssgproject.content_profile_c1c6ce49152b8fc0990bb1ff9bba4755" }, { - "id": "26f8f367-6c5c-4ecf-b405-9290612bc090", - "title": "Quia sed beatae provident.", - "description": "Officia quis repellat. Sunt eum hic. Voluptas assumenda et.", + "id": "28e1f990-a103-4200-91ca-18b901fb2bdb", + "title": "Dignissimos consectetur amet est.", + "description": "Iusto illo doloremque. Quibusdam libero et. Qui aut et.", "business_objective": null, - "compliance_threshold": 32.0, + "compliance_threshold": 17.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Tempore nisi et voluptatem.", - "ref_id": "xccdf_org.ssgproject.content_profile_9276333c880b8a8b4b47b9fdfa3e8162" + "profile_title": "Sit eius repellat architecto.", + "ref_id": "xccdf_org.ssgproject.content_profile_8e051b0dccbaae93a56e82d3c3c475fb" }, { - "id": "2a3e4b4d-e3df-4398-bfea-6175f9729949", - "title": "Et ut consectetur ut.", - "description": "Dignissimos et expedita. Blanditiis laudantium voluptas. Accusantium iusto esse.", + "id": "2a6db940-67b9-42d7-a5cf-f7502cd2d322", + "title": "Alias eos quod vel.", + "description": "Suscipit inventore vel. Illo maiores iure. Ipsum natus omnis.", "business_objective": null, - "compliance_threshold": 13.0, + "compliance_threshold": 14.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Repellat veniam sunt tempora.", - "ref_id": "xccdf_org.ssgproject.content_profile_25b2135ec4881bb048d37d7a69658981" + "profile_title": "Ipsa dolore et nemo.", + "ref_id": "xccdf_org.ssgproject.content_profile_3bb4b3c9f5ece311a9dde17f828be6d3" }, { - "id": "2c0ab18b-e453-4f8c-bc0c-05df0f1f165a", - "title": "Aut quod ea quibusdam.", - "description": "Tempore qui perferendis. Voluptates maiores ab. Totam sint dolorem.", + "id": "2a7cf41c-4c63-49f2-97f6-88cb25b71579", + "title": "Quo vero qui deleniti.", + "description": "Ipsa distinctio doloremque. Eaque labore iste. Modi necessitatibus aliquam.", "business_objective": null, - "compliance_threshold": 7.0, + "compliance_threshold": 29.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Doloribus voluptatibus labore alias.", - "ref_id": "xccdf_org.ssgproject.content_profile_2c0a5f348341ae158ba2e087d12aa24a" + "profile_title": "Consequuntur est distinctio rerum.", + "ref_id": "xccdf_org.ssgproject.content_profile_6f320a46ea8322231752a6eecc1a3c0d" }, { - "id": "35db7ec9-0d4f-45da-9a06-57e1571a64f4", - "title": "Minus nesciunt et pariatur.", - "description": "Nisi voluptatem minus. Commodi est impedit. Voluptatem accusamus sed.", + "id": "30b513de-fe85-48b5-b536-ae370fa9a87b", + "title": "Tempora omnis reiciendis qui.", + "description": "Numquam necessitatibus excepturi. Quos voluptatem suscipit. Minima eius quia.", "business_objective": null, - "compliance_threshold": 68.0, + "compliance_threshold": 3.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptatem magnam aut saepe.", - "ref_id": "xccdf_org.ssgproject.content_profile_3fc5ea6bc620094db74a10da71e73136" + "profile_title": "Qui perferendis fugit autem.", + "ref_id": "xccdf_org.ssgproject.content_profile_ec563cd0af91d2d868831468f5984e6c" }, { - "id": "3ef1e4ea-a755-46f7-8419-30e6281df112", - "title": "Reiciendis quam necessitatibus eos.", - "description": "Illum totam provident. Atque minima officia. Nobis ut occaecati.", + "id": "3722b949-669e-42a6-bbb3-3d6ba592c838", + "title": "Quaerat occaecati fuga inventore.", + "description": "Quas modi qui. Velit sed aut. Fugit cupiditate earum.", "business_objective": null, - "compliance_threshold": 93.0, + "compliance_threshold": 26.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Aut voluptatem et dicta.", - "ref_id": "xccdf_org.ssgproject.content_profile_f28ef0cb968f1074609b410d21dd8126" + "profile_title": "Ad sed est incidunt.", + "ref_id": "xccdf_org.ssgproject.content_profile_0aaf85bb7b03868a3e2e76205370e412" }, { - "id": "426a4bea-e527-4de8-b885-a8196bef663a", - "title": "Impedit et nemo veritatis.", - "description": "Non hic molestiae. Quis non et. Quis laborum dignissimos.", + "id": "3cbd8a94-b914-4d39-92fb-ecaa5428d3bb", + "title": "Quia minima veritatis et.", + "description": "Tenetur et quo. Cum quo vitae. Et labore fugit.", "business_objective": null, - "compliance_threshold": 31.0, + "compliance_threshold": 81.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Delectus quam fugit et.", - "ref_id": "xccdf_org.ssgproject.content_profile_effc90e67f81b3ec8c20a991716b4f49" + "profile_title": "Et voluptate ea eligendi.", + "ref_id": "xccdf_org.ssgproject.content_profile_bddb249fcdc5ed74d02ef1c14e4534f2" }, { - "id": "5346fc85-ac53-4deb-a5a5-8bc52bb942e1", - "title": "Occaecati molestiae dolorem accusamus.", - "description": "Accusantium temporibus quisquam. Molestiae asperiores veniam. Enim nemo deleniti.", + "id": "4492f30a-3c90-43cf-a0b5-a0cdbb3b6e46", + "title": "Eveniet aut sit est.", + "description": "Provident ad et. Aspernatur distinctio consequatur. Est natus facere.", "business_objective": null, - "compliance_threshold": 33.0, + "compliance_threshold": 36.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Et omnis qui dolorem.", - "ref_id": "xccdf_org.ssgproject.content_profile_e13babc69b0b70199467116f3c5383fc" + "profile_title": "Sed assumenda sint cumque.", + "ref_id": "xccdf_org.ssgproject.content_profile_7ff3f5388b64988a9b77864593c22e15" } ], "meta": { @@ -475,7 +475,7 @@ "tags": [ "Policies" ], - "description": "Create a Policy with the provided attributes", + "description": "Create a new security policy.", "operationId": "CreatePolicy", "responses": { "201": { @@ -486,7 +486,7 @@ "Response example": { "value": { "data": { - "id": "ab647248-648e-4fed-b74a-9cb084557feb", + "id": "eeb793ec-c1c9-4263-9b5b-aecf0c12f471", "title": "Foo", "description": "Hello World", "business_objective": "Serious Business Objective", @@ -494,8 +494,8 @@ "total_system_count": null, "type": "policy", "os_major_version": 7, - "profile_title": "Deleniti dolorum quas natus.", - "ref_id": "xccdf_org.ssgproject.content_profile_91a90c95617377921b7fcf76b6398ad6" + "profile_title": "Voluptate nisi et aperiam.", + "ref_id": "xccdf_org.ssgproject.content_profile_a3d538d8ef6c3fb133975a8dc9aac72d" } }, "summary": "", @@ -554,7 +554,7 @@ "tags": [ "Policies" ], - "description": "Returns a Policy", + "description": "Retrieve a specific policy.", "operationId": "Policy", "responses": { "200": { @@ -565,16 +565,16 @@ "Returns a Policy": { "value": { "data": { - "id": "6862a580-a0e3-4cb9-abd2-130e41aa9c48", - "title": "Unde ipsum et dignissimos.", - "description": "Impedit consequuntur rerum. Perferendis dolorem molestiae. Esse perferendis illum.", + "id": "0b3954b1-2002-49f8-b061-c4a6c405f694", + "title": "Aut molestias officia veritatis.", + "description": "Eveniet quo officiis. Non tempora praesentium. Quod recusandae qui.", "business_objective": null, - "compliance_threshold": 90.0, + "compliance_threshold": 72.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Veniam officiis eum enim.", - "ref_id": "xccdf_org.ssgproject.content_profile_0ac4131a9402b1ee1856be1974cacdf1" + "profile_title": "Reiciendis nam suscipit magni.", + "ref_id": "xccdf_org.ssgproject.content_profile_25a2e6da9e549aa668ad9d541ff9e1b0" } }, "summary": "", @@ -605,7 +605,7 @@ "Description of an error when requesting a non-existing Policy": { "value": { "errors": [ - "V2::Policy not found with ID 42dc33f3-79d7-4e98-8699-cbc6bc136532" + "V2::Policy not found with ID e712e3b7-52cb-401e-a7ad-0192806652ab" ] }, "summary": "", @@ -643,7 +643,7 @@ "tags": [ "Policies" ], - "description": "Updates a Policy with the provided attributes", + "description": "Edit or update an existing policy.", "operationId": "UpdatePolicy", "responses": { "202": { @@ -654,16 +654,16 @@ "Returns the updated Policy": { "value": { "data": { - "id": "fd842bf0-0d9b-4b94-907b-d5b3c8244a47", - "title": "Recusandae omnis debitis qui.", - "description": "Dolorum molestias corporis. Iure est repellendus. Quae harum veritatis.", + "id": "d93e8af4-177b-47fd-bda3-86c0da40609a", + "title": "Odio ea consequatur aliquam.", + "description": "Et aut facere. Et ut temporibus. Provident harum odit.", "business_objective": null, "compliance_threshold": 100.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Dolores tempore et voluptatem.", - "ref_id": "xccdf_org.ssgproject.content_profile_d996cd96246120643c6d53d92669cc61" + "profile_title": "Praesentium esse facere accusamus.", + "ref_id": "xccdf_org.ssgproject.content_profile_6330eb3959ac56a5ed0075e583834632" } }, "summary": "", @@ -720,7 +720,7 @@ "tags": [ "Policies" ], - "description": "Deletes a Policy", + "description": "Delete a specific policy.", "operationId": "DeletePolicy", "responses": { "202": { @@ -731,16 +731,16 @@ "Deletes a Policy": { "value": { "data": { - "id": "0ce2eba4-0d3b-477d-9333-683160e0c0b3", - "title": "Veniam illum aut porro.", - "description": "Corporis ipsum molestiae. Adipisci sit rerum. Sunt molestiae officiis.", + "id": "d7c2649d-4808-40d7-bf37-4e6c57256e56", + "title": "Ab et corporis minus.", + "description": "Eos asperiores illo. Qui consectetur quibusdam. Earum iste dolor.", "business_objective": null, - "compliance_threshold": 3.0, + "compliance_threshold": 57.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Necessitatibus assumenda illo ut.", - "ref_id": "xccdf_org.ssgproject.content_profile_99306f8c8fe2fa129be25b1f4d6c0032" + "profile_title": "Quidem iste facere incidunt.", + "ref_id": "xccdf_org.ssgproject.content_profile_2b94b9424c04119718f6f9adfac98b8d" } }, "summary": "", @@ -853,7 +853,7 @@ "tags": [ "Systems" ], - "description": "Lists Policies under a System", + "description": "List all policies assigned to a single system.", "operationId": "SystemsPolicies", "responses": { "200": { @@ -865,124 +865,124 @@ "value": { "data": [ { - "id": "0c004a78-1513-4745-83ce-5092a624268e", - "title": "Aperiam sed quia ducimus.", - "description": "Et voluptates quam. Rem veniam ipsum. Sed veniam harum.", + "id": "0639612b-1f8c-4396-889f-18197406450c", + "title": "Aliquam qui ut amet.", + "description": "Pariatur laudantium eligendi. Molestiae voluptas quia. Deserunt facere perferendis.", "business_objective": null, - "compliance_threshold": 31.0, + "compliance_threshold": 78.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Laboriosam deserunt magni qui.", - "ref_id": "xccdf_org.ssgproject.content_profile_e9a16c79d2f182c0ba8cc4c09042df4a" + "profile_title": "Alias at optio est.", + "ref_id": "xccdf_org.ssgproject.content_profile_48de53c4305ab431e108f51e505d33c8" }, { - "id": "0e8263c8-80f3-40c1-941c-34c62650b385", - "title": "Eius nostrum eum nihil.", - "description": "Iusto sed quidem. Et sapiente commodi. Sunt qui accusantium.", + "id": "17d9914b-c3dd-458c-9d4c-3971a6e1fe4e", + "title": "Ipsam tempora repudiandae dolorem.", + "description": "Nemo ut hic. Et asperiores sequi. Et sit eos.", "business_objective": null, - "compliance_threshold": 98.0, + "compliance_threshold": 23.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Sit ipsa iure suscipit.", - "ref_id": "xccdf_org.ssgproject.content_profile_3a189b0fb5e5f69eabe0e1263e9c324f" + "profile_title": "Est voluptas iusto eos.", + "ref_id": "xccdf_org.ssgproject.content_profile_8c5df7b2c3d9442d6b06883ff2d29644" }, { - "id": "105a6bcf-d299-4159-ae68-6e5e3d0582ce", - "title": "Consequuntur qui suscipit id.", - "description": "Impedit nesciunt cumque. Eum sunt quia. Ut inventore laboriosam.", + "id": "1ddc4560-c490-4fd0-b955-c28031c8910b", + "title": "Et ut eaque soluta.", + "description": "Hic tenetur eos. Iste similique eligendi. Non dolorem rerum.", "business_objective": null, - "compliance_threshold": 95.0, + "compliance_threshold": 16.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Nulla ratione optio voluptatem.", - "ref_id": "xccdf_org.ssgproject.content_profile_9b2cfbf53965fde8624ffea3b2d30ac9" + "profile_title": "Quisquam natus omnis soluta.", + "ref_id": "xccdf_org.ssgproject.content_profile_ef684141e79f75e419b64193a5aec922" }, { - "id": "16633d69-3659-48c9-a66a-74b42b4fec00", - "title": "Illo qui consequatur non.", - "description": "Dolorum ut et. Sunt alias vitae. Rerum qui eum.", + "id": "3b9f97a2-fe58-4de2-beeb-000a92462a90", + "title": "Dolores et ullam enim.", + "description": "Tempora sit a. Aut omnis quis. Quos eius odio.", "business_objective": null, - "compliance_threshold": 53.0, + "compliance_threshold": 56.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Consequatur eaque et nihil.", - "ref_id": "xccdf_org.ssgproject.content_profile_0beafa9764338749ce50d794858170f8" + "profile_title": "Fugiat ipsum distinctio aut.", + "ref_id": "xccdf_org.ssgproject.content_profile_eea1751a1fb9674dff6442656a41fc3d" }, { - "id": "313cf3f1-e97c-4682-8f52-b7e7b3ebe41b", - "title": "Ea doloribus non vel.", - "description": "Ab maxime iure. Labore sed odio. Error non libero.", + "id": "41f5b005-ccab-4765-b7dd-2695cb11132e", + "title": "Voluptatem deleniti qui et.", + "description": "Voluptatem amet vel. Aut sit sequi. Dicta nobis aut.", "business_objective": null, - "compliance_threshold": 18.0, + "compliance_threshold": 53.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Recusandae voluptate minima minus.", - "ref_id": "xccdf_org.ssgproject.content_profile_24794210566822f04751abe1afc7d0e6" + "profile_title": "Qui explicabo quia alias.", + "ref_id": "xccdf_org.ssgproject.content_profile_f47058db30bd511d6aac9c67848869fa" }, { - "id": "5de28bf8-f8b6-44ea-8d52-d48f3e494009", - "title": "Sequi nemo quae aliquam.", - "description": "Quasi molestiae non. Suscipit ut iste. Occaecati velit ipsam.", + "id": "5c60ddc6-93ca-4ec2-9e3d-4787cd2e021e", + "title": "Magni dolores quo inventore.", + "description": "Repudiandae tempore molestias. Enim voluptas ipsam. Repellat unde quia.", "business_objective": null, - "compliance_threshold": 26.0, + "compliance_threshold": 13.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Enim quo sed odio.", - "ref_id": "xccdf_org.ssgproject.content_profile_ed3eff4cefdf48836adece96b6699e44" + "profile_title": "Enim itaque ut suscipit.", + "ref_id": "xccdf_org.ssgproject.content_profile_3764e8cd58e4e503c9d1b32030a1aacf" }, { - "id": "62c2302a-0ecd-441b-bc4c-78edd5559c13", - "title": "Dignissimos aperiam natus veniam.", - "description": "Vero sit ut. Commodi rem est. Voluptatem optio provident.", + "id": "764f5ce5-7b4b-4052-b520-dd475e26ab54", + "title": "Ea omnis id illo.", + "description": "Dolore omnis fuga. Esse fugiat accusantium. Aperiam ducimus saepe.", "business_objective": null, - "compliance_threshold": 7.0, + "compliance_threshold": 56.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Ut ut et eveniet.", - "ref_id": "xccdf_org.ssgproject.content_profile_1d624c5e0c3f66929a691c5c1ed66a62" + "profile_title": "Non non et dolores.", + "ref_id": "xccdf_org.ssgproject.content_profile_d9f3ac7b815fa6bb156902ba9ec00cb0" }, { - "id": "63573b8b-84c5-4789-b763-5270c345e52f", - "title": "Illo quidem voluptatum est.", - "description": "In tempore repellat. Temporibus accusantium eos. Doloremque itaque placeat.", + "id": "7d404832-fa14-4df8-86f3-961b987f3680", + "title": "Voluptates facere nemo debitis.", + "description": "Velit aliquam ullam. Sunt aliquam quaerat. Est ex quia.", "business_objective": null, - "compliance_threshold": 14.0, + "compliance_threshold": 81.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Et illum aut qui.", - "ref_id": "xccdf_org.ssgproject.content_profile_dcfd82851a24cc1a846c73d01b2cf82e" + "profile_title": "Consequatur sit tempora facilis.", + "ref_id": "xccdf_org.ssgproject.content_profile_2471640c6bef4ffeaf50dad5b9f68f8d" }, { - "id": "6ba09c66-7ec4-496b-b816-bc2930e371c9", - "title": "Ducimus dolorem deleniti cupiditate.", - "description": "Alias exercitationem non. Nobis deserunt tempora. Et est consequatur.", + "id": "82c07876-0f80-4c09-9320-a067548574ac", + "title": "Quidem eius provident aliquam.", + "description": "Nemo quisquam et. Omnis dignissimos corporis. Laudantium in cum.", "business_objective": null, - "compliance_threshold": 78.0, + "compliance_threshold": 51.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Delectus placeat quibusdam molestiae.", - "ref_id": "xccdf_org.ssgproject.content_profile_53201fa6b42984976e14dcd7b474167c" + "profile_title": "A eos nihil blanditiis.", + "ref_id": "xccdf_org.ssgproject.content_profile_24920d73ce51d1ed1c39abc5e3d5ba88" }, { - "id": "7af3bca2-d469-4933-800f-977c5281f40f", - "title": "Similique ab quis id.", - "description": "Iure provident maiores. Suscipit perferendis et. Dignissimos doloribus modi.", + "id": "8fe764d7-0d8a-4d34-9bdb-4e52b20b473d", + "title": "Voluptas ut perferendis dolorem.", + "description": "Ullam aperiam nihil. Voluptate autem minus. Dolore illo ab.", "business_objective": null, - "compliance_threshold": 96.0, + "compliance_threshold": 25.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Ad ut provident facilis.", - "ref_id": "xccdf_org.ssgproject.content_profile_6c286484e620a1dd6d2476751bc19a1c" + "profile_title": "Eum harum ut natus.", + "ref_id": "xccdf_org.ssgproject.content_profile_d4d1ede695a82b7af1d5217314d66986" } ], "meta": { @@ -991,9 +991,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/systems/d6c47793-5404-4361-96c9-c6216142bb28/policies?limit=10&offset=0", - "last": "/api/compliance/v2/systems/d6c47793-5404-4361-96c9-c6216142bb28/policies?limit=10&offset=20", - "next": "/api/compliance/v2/systems/d6c47793-5404-4361-96c9-c6216142bb28/policies?limit=10&offset=10" + "first": "/api/compliance/v2/systems/88aab99e-b835-4eae-b7ec-a6071846802d/policies?limit=10&offset=0", + "last": "/api/compliance/v2/systems/88aab99e-b835-4eae-b7ec-a6071846802d/policies?limit=10&offset=20", + "next": "/api/compliance/v2/systems/88aab99e-b835-4eae-b7ec-a6071846802d/policies?limit=10&offset=10" } }, "summary": "", @@ -1108,7 +1108,7 @@ "tags": [ "Content" ], - "description": "Lists Profiles", + "description": "List all security guide profiles.", "operationId": "Profiles", "responses": { "200": { @@ -1120,82 +1120,82 @@ "value": { "data": [ { - "id": "1689e86a-5d78-4c3b-8a3b-5558b63d8305", - "ref_id": "xccdf_org.ssgproject.content_profile_7c3c0fda748a44d6049ff4cd3a0fafea", - "title": "Accusamus error architecto voluptate.", - "description": "Quasi occaecati et. Sint sed dignissimos. Quia porro nam.", + "id": "019c7981-81b8-403e-9e0e-859965fadea2", + "ref_id": "xccdf_org.ssgproject.content_profile_e035a8d9c715f3251f10986e95164b2f", + "title": "Et aut omnis aperiam.", + "description": "Harum et qui. Magnam minima ipsa. Impedit vero repellendus.", "value_overrides": {}, "type": "profile" }, { - "id": "1cfc74b9-36c2-41cb-a9ce-c4320dae3942", - "ref_id": "xccdf_org.ssgproject.content_profile_740687e589c32f0bf2eec497f9024b06", - "title": "Esse natus impedit vel.", - "description": "Dolores odit tempore. Sint laborum suscipit. Nihil est omnis.", + "id": "0ff6ca92-068a-4125-8044-73a34c064d2a", + "ref_id": "xccdf_org.ssgproject.content_profile_d01ea498b9e61b3fcafb7b188807c402", + "title": "Dolorem ratione pariatur molestias.", + "description": "Omnis sit quo. Ea delectus beatae. Ut quod accusantium.", "value_overrides": {}, "type": "profile" }, { - "id": "21a86e17-41d3-46ec-a8e0-f6de050723a8", - "ref_id": "xccdf_org.ssgproject.content_profile_e9e2ea0023845496e888df4895fcdc3d", - "title": "Asperiores nostrum ad pariatur.", - "description": "Quidem qui quae. Possimus suscipit dolorem. Quidem et omnis.", + "id": "12f1cbb2-715a-4d24-8be4-046a6d2fb41b", + "ref_id": "xccdf_org.ssgproject.content_profile_235303c3bdba8741f9d7a9349cb032a8", + "title": "Laboriosam libero ut consequatur.", + "description": "Aliquid eum expedita. Quae tempore laudantium. Facere eum laborum.", "value_overrides": {}, "type": "profile" }, { - "id": "264dabc6-e395-4b78-ae58-8bdba9bfc2b7", - "ref_id": "xccdf_org.ssgproject.content_profile_30190d4939ee59aade698a9d7c6a736d", - "title": "Et optio et ipsa.", - "description": "Asperiores numquam consectetur. Minus accusamus et. Porro corporis beatae.", + "id": "17d796db-a724-4720-aef7-a1e5ec79341d", + "ref_id": "xccdf_org.ssgproject.content_profile_fc2cb8ea63a44e56c0722e5f80711f23", + "title": "Quo at ipsam voluptas.", + "description": "Eos eius rerum. Qui nihil fugiat. Dolor qui et.", "value_overrides": {}, "type": "profile" }, { - "id": "2e845d7c-dc5d-4ddf-80ec-c415929cbaca", - "ref_id": "xccdf_org.ssgproject.content_profile_3af52be8f9ef762321277a2709813828", - "title": "Aperiam suscipit tempora animi.", - "description": "Voluptates occaecati nulla. Eveniet ab sunt. Id enim labore.", + "id": "1dde70bb-1503-4df5-a639-189ccb105c18", + "ref_id": "xccdf_org.ssgproject.content_profile_b059689225b805ac539c810f015ce031", + "title": "Odio atque vero doloribus.", + "description": "Doloribus dolorem rem. Est nemo in. Rerum aut laudantium.", "value_overrides": {}, "type": "profile" }, { - "id": "327c1f3c-fb29-4b9b-b821-884227619b72", - "ref_id": "xccdf_org.ssgproject.content_profile_98cb1c7d334097ae9c931ae4fd4c7020", - "title": "Neque placeat laboriosam et.", - "description": "Enim possimus perspiciatis. Ipsa id fuga. Architecto sed cum.", + "id": "20b773cd-57e1-4747-9e92-f92c0c3e57b8", + "ref_id": "xccdf_org.ssgproject.content_profile_7617f6bd00da2cd441cbb31c8de1d922", + "title": "Est voluptas quos iusto.", + "description": "Illum harum quos. Tenetur fuga eum. Officia sit aut.", "value_overrides": {}, "type": "profile" }, { - "id": "3ae84d27-5fe1-481a-ac33-952800582aab", - "ref_id": "xccdf_org.ssgproject.content_profile_96acab6f1208e3143633e37f3787d50b", - "title": "Omnis aut aliquid perferendis.", - "description": "Repudiandae omnis rem. Impedit quo quia. Voluptates fugiat asperiores.", + "id": "234f1a8c-6a4f-47cf-a262-4979ba9736c8", + "ref_id": "xccdf_org.ssgproject.content_profile_298c4698d780bdb60e1ff142d2527fd4", + "title": "Accusamus odio reprehenderit ut.", + "description": "Iste et odio. Aut rerum corrupti. Harum consequatur sequi.", "value_overrides": {}, "type": "profile" }, { - "id": "3d83b982-a2bc-4893-be78-822146d313a6", - "ref_id": "xccdf_org.ssgproject.content_profile_4058f524d821b29a205d7cb09b4a807c", - "title": "Consequatur voluptates veritatis est.", - "description": "Odio quae iure. Unde numquam molestiae. Perferendis doloribus non.", + "id": "2ce1a3c3-d1b1-4439-a23f-0da1d4f65cff", + "ref_id": "xccdf_org.ssgproject.content_profile_c0a557d05702fc59fd8b136b744bb752", + "title": "Totam ipsam sint eos.", + "description": "Aut id rerum. Quia ut aut. Nihil debitis voluptatem.", "value_overrides": {}, "type": "profile" }, { - "id": "4ad2296d-015d-4ff7-94a5-64815b4b1793", - "ref_id": "xccdf_org.ssgproject.content_profile_da348adfed174780131526b00d70aa72", - "title": "Aliquid est velit minima.", - "description": "Voluptatum qui est. Velit non commodi. Quia maiores voluptatibus.", + "id": "35b32c42-bd44-4309-aa7d-1ddfb9d585af", + "ref_id": "xccdf_org.ssgproject.content_profile_4460a27fcf038367238c1f32fdbb9f49", + "title": "Distinctio ratione assumenda laborum.", + "description": "Ipsum praesentium earum. Delectus tempore animi. Qui adipisci sit.", "value_overrides": {}, "type": "profile" }, { - "id": "4b2da52e-4cec-4f84-93ec-3433c78db9ce", - "ref_id": "xccdf_org.ssgproject.content_profile_10aa2f7ade58a85a57000d22a78c0328", - "title": "Autem similique delectus omnis.", - "description": "Neque sed nihil. Enim quasi vero. Sunt doloremque quibusdam.", + "id": "470630d3-1f08-471e-9be2-27747eb3248a", + "ref_id": "xccdf_org.ssgproject.content_profile_d27a1fbf7ac08ff79b15d0cfe3b2a13e", + "title": "Provident totam autem voluptas.", + "description": "Eum maiores ullam. Quas consequuntur vel. Omnis qui architecto.", "value_overrides": {}, "type": "profile" } @@ -1206,9 +1206,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/00704812-d469-4ad7-bd5c-9d86ba096abb/profiles?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/00704812-d469-4ad7-bd5c-9d86ba096abb/profiles?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/00704812-d469-4ad7-bd5c-9d86ba096abb/profiles?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/17569f64-b16c-4888-969c-e4bd7e1ed385/profiles?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/17569f64-b16c-4888-969c-e4bd7e1ed385/profiles?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/17569f64-b16c-4888-969c-e4bd7e1ed385/profiles?limit=10&offset=10" } }, "summary": "", @@ -1218,82 +1218,82 @@ "value": { "data": [ { - "id": "13518a6a-808f-47f1-b9fe-6163ac2005e4", - "ref_id": "xccdf_org.ssgproject.content_profile_75552cccff80ffe7c1a684b3ca9a04fc", - "title": "Ab explicabo delectus velit.", - "description": "Et quia eius. Possimus illo nemo. Odio in aut.", + "id": "f8e66f90-0320-4eea-a4b5-94259bbca4a0", + "ref_id": "xccdf_org.ssgproject.content_profile_be2fbb64f1df8064885a9e60ab768d00", + "title": "Animi explicabo et ipsam.", + "description": "Sunt est blanditiis. Quidem omnis atque. Iure porro explicabo.", "value_overrides": {}, "type": "profile" }, { - "id": "b6a2373a-93ec-4a53-a2c3-2a466e05a8a2", - "ref_id": "xccdf_org.ssgproject.content_profile_278fa50e32dfe7c9a1adc70019ca46a9", - "title": "Ad magni omnis cumque.", - "description": "Commodi nulla soluta. Nulla repellat hic. Eos asperiores minima.", + "id": "e450d4f5-2876-48ae-b992-100a8d39bfc8", + "ref_id": "xccdf_org.ssgproject.content_profile_9f4ed88a76aafb580db2fc748a730b2d", + "title": "Atque iste quia beatae.", + "description": "Laudantium iste totam. Fugiat repellat dolores. Officiis consequatur et.", "value_overrides": {}, "type": "profile" }, { - "id": "1d2b4fd6-11aa-440d-ad83-d564ca26fcca", - "ref_id": "xccdf_org.ssgproject.content_profile_8143df760bede858e5d3070714d5a09a", - "title": "Assumenda itaque eum ipsum.", - "description": "Sit excepturi qui. Officiis modi voluptas. Accusantium hic odio.", + "id": "acd2feb0-bdaa-42a3-a48b-d0773fa519a1", + "ref_id": "xccdf_org.ssgproject.content_profile_71e38eca713d1f2bee6822e3837e69b7", + "title": "Autem voluptatem sapiente odit.", + "description": "Ea iusto et. Qui quasi laudantium. Earum deleniti sint.", "value_overrides": {}, "type": "profile" }, { - "id": "5f5d878c-bb67-4a03-8ad6-14a152bf3595", - "ref_id": "xccdf_org.ssgproject.content_profile_62418773c9bc0b066d51292b2b35b2e7", - "title": "At nihil facere accusantium.", - "description": "Tenetur excepturi corrupti. Enim consequatur sint. Commodi perspiciatis tenetur.", + "id": "09cb7439-eeb4-4886-88c8-c0acc1114345", + "ref_id": "xccdf_org.ssgproject.content_profile_60c58852e1246e92bf3ab8d07d5b2c38", + "title": "Cumque inventore adipisci qui.", + "description": "Totam veniam vel. Sit possimus iusto. Cupiditate ut saepe.", "value_overrides": {}, "type": "profile" }, { - "id": "f1c67f29-b0d9-4035-ae24-1fbe113739e4", - "ref_id": "xccdf_org.ssgproject.content_profile_3c284180fb3936b99b4312bb7e1c591e", - "title": "Aut in suscipit accusantium.", - "description": "Et cumque dolorem. Deserunt nam eum. Id nostrum reprehenderit.", + "id": "6d8f872b-5d5a-49db-80ca-2638adf35f92", + "ref_id": "xccdf_org.ssgproject.content_profile_b1d093fb6c1eb7f08ae690d3e0505e49", + "title": "Debitis voluptates et quia.", + "description": "Maxime perspiciatis veritatis. Non sit sequi. Velit ea aut.", "value_overrides": {}, "type": "profile" }, { - "id": "d73cc478-e665-4742-be1b-240c3e41e5c9", - "ref_id": "xccdf_org.ssgproject.content_profile_5bb6ec82a82a9b3d5679b463191a8f79", - "title": "Aut officiis velit inventore.", - "description": "Deserunt consectetur quisquam. Iure dolore consequuntur. Ad repellendus eius.", + "id": "16e68bc2-f256-4b09-9b6a-63a033899b09", + "ref_id": "xccdf_org.ssgproject.content_profile_33d5a763e680ff65f2dd009096f1cdaa", + "title": "Dicta facilis et blanditiis.", + "description": "Explicabo quia voluptas. Fugit laboriosam modi. Magnam aliquid tempore.", "value_overrides": {}, "type": "profile" }, { - "id": "f9b4918d-218c-4b4b-b277-0388b34a9f31", - "ref_id": "xccdf_org.ssgproject.content_profile_9dd426fb806283874fc8d298ed9e21a1", - "title": "Autem est animi reprehenderit.", - "description": "Qui quae explicabo. At consequatur fuga. Beatae itaque voluptatem.", + "id": "d6beb172-48cc-44ea-bb96-089b0fd55d6b", + "ref_id": "xccdf_org.ssgproject.content_profile_d8f068ce2aa7c56f902d0bb6a99adffc", + "title": "Et ut similique est.", + "description": "Non enim facilis. Molestias eos sequi. Rerum eos ut.", "value_overrides": {}, "type": "profile" }, { - "id": "5e4c27ea-8f5a-4e7e-9ec2-781d55c0ecd1", - "ref_id": "xccdf_org.ssgproject.content_profile_a33cfec65e41ee8c84e3c1ee8cf82048", - "title": "Consequatur et excepturi quam.", - "description": "Placeat omnis omnis. Distinctio delectus qui. Debitis placeat aperiam.", + "id": "9d203dcc-b116-4121-b3ee-5ba09b193c40", + "ref_id": "xccdf_org.ssgproject.content_profile_0fec2e36ea7e02c8dd9af6a7f9dcc20e", + "title": "Eveniet asperiores minus consequatur.", + "description": "Id provident exercitationem. Voluptates aliquam atque. Eius ut velit.", "value_overrides": {}, "type": "profile" }, { - "id": "ef655721-ea47-4fc4-aee6-5b847b7a8967", - "ref_id": "xccdf_org.ssgproject.content_profile_446645d18ffdccda379824cb0e0ae000", - "title": "Cupiditate praesentium exercitationem error.", - "description": "Repudiandae omnis cum. Debitis quos ducimus. Ex ut est.", + "id": "9c5ccbd5-1761-4554-b049-f732af9f222b", + "ref_id": "xccdf_org.ssgproject.content_profile_ae2807717a68a1d205c5705dc3842a77", + "title": "Fugit est sint fugiat.", + "description": "Quibusdam et beatae. Voluptas perferendis et. Ipsa ut iure.", "value_overrides": {}, "type": "profile" }, { - "id": "a5990ace-93e6-4c17-bf44-a97591c5c2b4", - "ref_id": "xccdf_org.ssgproject.content_profile_b6c7ed5d9e8ced903b745914b8a63f33", - "title": "Deserunt aliquam praesentium sit.", - "description": "Accusantium placeat ut. Nam non voluptate. Quod corrupti rem.", + "id": "d4e7711c-1226-48a2-8d08-672ae2244223", + "ref_id": "xccdf_org.ssgproject.content_profile_5357cd54796aa1744c75caf22bfccb43", + "title": "Magni ut rerum et.", + "description": "Blanditiis ut consequatur. Quibusdam ullam et. Eos cupiditate excepturi.", "value_overrides": {}, "type": "profile" } @@ -1305,35 +1305,35 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/b7d2c412-6dcc-4ea3-bc77-eb0aff566e96/profiles?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/b7d2c412-6dcc-4ea3-bc77-eb0aff566e96/profiles?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/b7d2c412-6dcc-4ea3-bc77-eb0aff566e96/profiles?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/23c476f0-2074-4a91-8c18-42700db478e1/profiles?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/23c476f0-2074-4a91-8c18-42700db478e1/profiles?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/23c476f0-2074-4a91-8c18-42700db478e1/profiles?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Profiles filtered by '(title=Labore ea ut architecto.)'": { + "List of Profiles filtered by '(title=Deleniti incidunt aspernatur ab.)'": { "value": { "data": [ { - "id": "034e5198-8f55-4313-b769-d8bf86324dd7", - "ref_id": "xccdf_org.ssgproject.content_profile_3a46d82bb84592d38bffc830c93dac94", - "title": "Labore ea ut architecto.", - "description": "Voluptates similique deserunt. Explicabo quisquam velit. Qui ex sed.", + "id": "195de4fc-f982-48ec-bf54-062108b8529f", + "ref_id": "xccdf_org.ssgproject.content_profile_45c54089f0553714109bf44ccc060d81", + "title": "Deleniti incidunt aspernatur ab.", + "description": "Mollitia possimus et. Doloremque corrupti deleniti. Voluptatibus ut assumenda.", "value_overrides": {}, "type": "profile" } ], "meta": { "total": 1, - "filter": "(title=\"Labore ea ut architecto.\")", + "filter": "(title=\"Deleniti incidunt aspernatur ab.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/fdafad0c-6c01-4fd0-8635-20a2d7a12f57/profiles?filter=%28title%3D%22Labore+ea+ut+architecto.%22%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/fdafad0c-6c01-4fd0-8635-20a2d7a12f57/profiles?filter=%28title%3D%22Labore+ea+ut+architecto.%22%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/98075212-ea21-4431-841a-b5a79f192e1e/profiles?filter=%28title%3D%22Deleniti+incidunt+aspernatur+ab.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/98075212-ea21-4431-841a-b5a79f192e1e/profiles?filter=%28title%3D%22Deleniti+incidunt+aspernatur+ab.%22%29&limit=10&offset=0" } }, "summary": "", @@ -1430,7 +1430,7 @@ "tags": [ "Content" ], - "description": "Returns a Profile", + "description": "Retrieve a specific profile.", "operationId": "Profile", "responses": { "200": { @@ -1441,10 +1441,10 @@ "Returns a Profile": { "value": { "data": { - "id": "91b0c14e-84da-453d-ba7a-40b58e9280f2", - "ref_id": "xccdf_org.ssgproject.content_profile_744161f1b400de0f5778185cf7596290", - "title": "Asperiores id voluptate tempora.", - "description": "Ut nisi eum. Excepturi optio nemo. Rerum totam odit.", + "id": "edb8199c-b2eb-4d67-ae13-9ee6f9ad7eb7", + "ref_id": "xccdf_org.ssgproject.content_profile_f1b83b83378431bbd572e6a8c0564021", + "title": "Rerum excepturi sint temporibus.", + "description": "Cum dolores cumque. Quis corrupti sit. Sed quo voluptatum.", "value_overrides": {}, "type": "profile" } @@ -1477,7 +1477,7 @@ "Description of an error when requesting a non-existing Profile": { "value": { "errors": [ - "V2::Profile not found with ID 174aab8b-4fc1-4ff8-ad03-d84658bb8475" + "V2::Profile not found with ID 76f4d2a3-a116-4567-a02b-4e07a12ca773" ] }, "summary": "", @@ -1537,101 +1537,101 @@ "Returns the Rule Tree of a Profile": { "value": [ { - "id": "14a0976c-5542-49b6-9b48-38adf2889c24", + "id": "d3a461d5-8df3-45f3-b19a-658777bfba87", "type": "rule_group", "children": [ { - "id": "9719a223-c9b4-4529-ba7d-269ba0c309b8", + "id": "ac31dece-1eee-4725-8976-fe8ac5e5096f", "type": "rule" } ] }, { - "id": "7d6bcd4e-fc4d-4a1d-a94d-f205e54b3a15", + "id": "2001c851-2360-4c03-bc6d-fc536e186552", "type": "rule_group", "children": [ { - "id": "5679dd5c-ed00-43b7-ad42-bf00efc2cc56", + "id": "9db5a9c0-1ae2-44c8-a6d0-12cfcb262d0a", "type": "rule" } ] }, { - "id": "5ca05ab7-cb88-4fab-b723-2d3b1b4da085", + "id": "397537bb-7eae-4ec7-84b6-4fb2f9e502b4", "type": "rule_group", "children": [ { - "id": "9372d77c-cb8d-43ae-aca3-7a31dd5cf8cc", + "id": "0cfbbab4-f189-41f0-92ea-30d4d6b42081", "type": "rule" } ] }, { - "id": "d2dccec8-23d2-49b1-8f48-cd0a548be956", + "id": "2cfc00b9-6bea-4e22-b069-5c60a2ebce6f", "type": "rule_group", "children": [ { - "id": "0d2334c0-37b8-416c-974e-de863e2b5af1", + "id": "d881964e-e7d4-4808-85cf-34c7936e74bc", "type": "rule" } ] }, { - "id": "ea7e9134-a0bb-49e9-b6e0-2bd0c485a213", + "id": "e3e675c5-80d4-45c9-a0ec-2eea38dff802", "type": "rule_group", "children": [ { - "id": "dd79f620-7a33-4719-8614-a1ceb74eee1c", + "id": "3c35a66d-77ee-44fd-b3da-cc52aac1e3f1", "type": "rule" } ] }, { - "id": "bede0446-fd20-4d0c-b1f7-b8c2559ab3b1", + "id": "350e1cc7-a022-4572-82b4-723cd9f64a23", "type": "rule_group", "children": [ { - "id": "ca2997e9-9eaf-4aaa-bcd7-de6b3c7ac0c9", + "id": "95eac319-b117-4d71-9376-802c293f02bf", "type": "rule" } ] }, { - "id": "1155062e-4722-4ba0-80ab-166ed6e174e5", + "id": "b447df33-6f73-4649-a9ef-9e9630d312a8", "type": "rule_group", "children": [ { - "id": "12469b9f-942a-4374-acff-7262efa6c5cf", + "id": "7b263340-7f65-4c78-b2e1-1ee1447322a1", "type": "rule" } ] }, { - "id": "5a42b62c-52b2-4996-8910-ae95a91615ea", + "id": "3c8d58a9-3663-48ad-9330-e5af71fa5ea2", "type": "rule_group", "children": [ { - "id": "30630013-9f0b-4624-bb48-1d589babe597", + "id": "2d46af23-8496-4cf0-8687-a15582074d34", "type": "rule" } ] }, { - "id": "833b965d-af00-4a5c-8fcd-ee820722fc17", + "id": "54f070f9-adaa-4239-b70f-d4b985502575", "type": "rule_group", "children": [ { - "id": "d29aadc0-3930-46a6-92ef-0a9f6faf3035", + "id": "8c1ad16a-1960-40d7-a876-839ed95474ce", "type": "rule" } ] }, { - "id": "62ddd992-abfd-42db-bd31-e29a8813caca", + "id": "1e106725-351e-421a-9f2a-ab4b9e1de687", "type": "rule_group", "children": [ { - "id": "b6f649d3-1bdd-4eeb-bde1-5f084a1663d4", + "id": "097dcc4a-375b-4a97-876d-8741b8cfb304", "type": "rule" } ] @@ -1655,7 +1655,7 @@ "Description of an error when requesting a non-existing Profile": { "value": { "errors": [ - "V2::Profile not found with ID a65c9e41-018d-4d74-ba17-3d2ecc868bf3" + "V2::Profile not found with ID 75f9976c-cc23-4710-bc85-5fe56477b444" ] }, "summary": "", @@ -1756,7 +1756,7 @@ "tags": [ "Reports" ], - "description": "Lists Reports", + "description": "Retrieve a list of all available reports.", "operationId": "Reports", "responses": { "200": { @@ -1768,15 +1768,15 @@ "value": { "data": [ { - "id": "02ca856f-ef38-4c35-aba4-e5ceca1fcba2", - "title": "Veritatis rem maxime quia.", - "description": "Omnis mollitia nemo. Non quibusdam expedita. Enim nobis suscipit.", - "business_objective": "feed", + "id": "41fcef69-a3cf-41c1-92d2-0894243d23b9", + "title": "Qui labore quod et.", + "description": "Perspiciatis corrupti voluptatem. Enim exercitationem rem. Inventore omnis quia.", + "business_objective": "system", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Magnam saepe exercitationem sit.", - "ref_id": "xccdf_org.ssgproject.content_profile_661f86aa5bfed8ad3256b685ac3a23a9", + "profile_title": "Nam doloribus cum eaque.", + "ref_id": "xccdf_org.ssgproject.content_profile_10f9bea05bf164597d21e3a4750121b9", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1785,15 +1785,15 @@ "reported_system_count": 4 }, { - "id": "534c3666-5f52-4a71-b02f-97b0ed9baddc", - "title": "Voluptates illo distinctio maiores.", - "description": "Sunt harum qui. Et et iusto. Sit quo doloribus.", - "business_objective": "driver", + "id": "693fd31c-913f-484b-82a4-41d95032ee6e", + "title": "Sit eligendi repellat neque.", + "description": "Quia quisquam in. Eaque et est. Quos aut omnis.", + "business_objective": "feed", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Quaerat et eum reprehenderit.", - "ref_id": "xccdf_org.ssgproject.content_profile_1eb4c5cdc5795a08c59e3f37b66d7e9f", + "profile_title": "Ea dolores vel facere.", + "ref_id": "xccdf_org.ssgproject.content_profile_c8242d35f3155d838cf54d319de72424", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1802,15 +1802,15 @@ "reported_system_count": 4 }, { - "id": "b7ef0b6a-f617-4b76-8fe6-c16f511ff118", - "title": "Rerum dolores modi et.", - "description": "Ratione nesciunt cumque. Autem exercitationem quia. Quos vitae qui.", - "business_objective": "microchip", + "id": "bc23716e-19b2-4b5d-9576-cf7c2c6b58be", + "title": "Qui quae doloremque cumque.", + "description": "Repellat neque laborum. Minus sit iure. Officia nostrum ipsam.", + "business_objective": "circuit", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Enim soluta ut fugiat.", - "ref_id": "xccdf_org.ssgproject.content_profile_5b68343c37a8f743fb2dfa60d47b629a", + "profile_title": "Corrupti autem commodi molestias.", + "ref_id": "xccdf_org.ssgproject.content_profile_dd874033fe31d88ad515e012104bd333", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1819,15 +1819,15 @@ "reported_system_count": 4 }, { - "id": "bf614031-271d-4ff1-8ca3-bbdf4907d8ad", - "title": "Exercitationem voluptas pariatur doloribus.", - "description": "Sunt eius eos. Ut ut accusantium. Aliquam quia qui.", - "business_objective": "port", + "id": "dd960254-7bdb-4d16-8bef-7cd430649362", + "title": "Cupiditate corporis corrupti voluptate.", + "description": "Recusandae deserunt molestiae. Voluptas deleniti qui. Similique sed dolorem.", + "business_objective": "monitor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Minima quis iste quisquam.", - "ref_id": "xccdf_org.ssgproject.content_profile_d4404ae6b9627a64ac1a816970ca056b", + "profile_title": "Similique quidem molestiae eaque.", + "ref_id": "xccdf_org.ssgproject.content_profile_dc968fd23a80e13edb1190438f29bafe", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1836,15 +1836,15 @@ "reported_system_count": 4 }, { - "id": "bf6fbc53-7f95-4b0a-ac31-abf228699a79", - "title": "Quo doloremque dolorem quia.", - "description": "Voluptas occaecati eligendi. Quia molestiae iste. Consequatur non rerum.", - "business_objective": "hard drive", + "id": "fbe777d0-a7c6-4cce-a0d4-a045e347a69e", + "title": "Aut enim esse voluptatum.", + "description": "Eos rem soluta. Aperiam eum unde. Ea saepe enim.", + "business_objective": "card", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Necessitatibus rerum non animi.", - "ref_id": "xccdf_org.ssgproject.content_profile_705c44f8278ddc31d2506f88906abebb", + "profile_title": "Impedit exercitationem amet dolores.", + "ref_id": "xccdf_org.ssgproject.content_profile_b0304c9872a9eebdbe8ae2df030f6ca9", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1870,15 +1870,15 @@ "value": { "data": [ { - "id": "1b2cbc83-3176-49e9-953c-5b170fd48cfc", - "title": "Consectetur sit molestias eum.", - "description": "Aut vitae neque. Illum maiores libero. Iusto aut quia.", - "business_objective": "program", + "id": "469333a5-b633-47c1-8035-273f2194c990", + "title": "Velit pariatur quia nemo.", + "description": "Aut id quia. Dolores sapiente inventore. Atque quibusdam et.", + "business_objective": "alarm", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Sunt ut rerum nisi.", - "ref_id": "xccdf_org.ssgproject.content_profile_763e11e5426de71fa1a2d1f03498e334", + "profile_title": "Molestiae accusamus labore veritatis.", + "ref_id": "xccdf_org.ssgproject.content_profile_cf178d29b092d42abf4b5aa881494a9d", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1887,15 +1887,15 @@ "reported_system_count": 4 }, { - "id": "28d468aa-8c7e-44fb-9e92-7dffba34e812", - "title": "Velit quo totam ratione.", - "description": "Corrupti cupiditate magni. Sapiente rerum voluptatum. Excepturi et dolores.", - "business_objective": "port", + "id": "668a307d-c410-442c-874d-4b5e014fc1c0", + "title": "Sed minima dignissimos voluptate.", + "description": "Veritatis ullam sed. Ipsum doloremque ut. Et veniam itaque.", + "business_objective": "card", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Ea blanditiis et inventore.", - "ref_id": "xccdf_org.ssgproject.content_profile_70a902db6ab11aae78dc70d6b748881d", + "profile_title": "Inventore nihil fugiat et.", + "ref_id": "xccdf_org.ssgproject.content_profile_2750a53100d76f26f0f197c25f81d97b", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1904,15 +1904,15 @@ "reported_system_count": 4 }, { - "id": "9702d58e-db15-4bd3-ab40-cfd63b70169e", - "title": "Praesentium amet ipsam reiciendis.", - "description": "Quod quasi eos. Rerum et doloremque. Omnis totam saepe.", - "business_objective": "interface", + "id": "d409d05b-5385-4846-bcaa-465fd272742c", + "title": "Vitae blanditiis fugiat sed.", + "description": "Voluptas reiciendis veritatis. Earum consequatur est. Dolor doloremque velit.", + "business_objective": "bandwidth", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Aut voluptatem quia totam.", - "ref_id": "xccdf_org.ssgproject.content_profile_01f00c165456fd03764c73c3f81c4007", + "profile_title": "Pariatur quia cum officiis.", + "ref_id": "xccdf_org.ssgproject.content_profile_7b507483bd694e76d1c03a0fae0a3d83", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1921,15 +1921,15 @@ "reported_system_count": 4 }, { - "id": "c61b9d00-2b1d-4b80-aa4b-e789fe0b3c2b", - "title": "Enim quibusdam occaecati temporibus.", - "description": "Et voluptas ut. Ut magni ratione. Sapiente ab ex.", + "id": "e0915a19-331b-43b0-ac2a-66f201713874", + "title": "Eum ex corporis omnis.", + "description": "Quasi quae dignissimos. Aut in placeat. Aspernatur ea atque.", "business_objective": "transmitter", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Adipisci fugit dolorum sequi.", - "ref_id": "xccdf_org.ssgproject.content_profile_87480d535047364e6c1897038009b5ea", + "profile_title": "Quia vero dolorum earum.", + "ref_id": "xccdf_org.ssgproject.content_profile_30236198a4889b32cb5460af9a83aa75", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1938,15 +1938,15 @@ "reported_system_count": 4 }, { - "id": "eba0be98-29ba-406f-972d-7276b74aa6d1", - "title": "Est omnis unde cum.", - "description": "Error et dicta. Non exercitationem minima. Quisquam provident odit.", - "business_objective": "card", + "id": "f6f152ed-e761-4560-83d2-f5e9a1df86c4", + "title": "Distinctio rerum sit nihil.", + "description": "Non omnis hic. Harum dolorem et. Vero error ut.", + "business_objective": "system", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Delectus accusantium nam autem.", - "ref_id": "xccdf_org.ssgproject.content_profile_efd4c21b4894a3bb840ffaccde2cbd9f", + "profile_title": "Rem dolores et totam.", + "ref_id": "xccdf_org.ssgproject.content_profile_7bb3500ee3cb16a9d9030052ea7c2d7d", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -2103,7 +2103,7 @@ "tags": [ "Reports" ], - "description": "Returns a Report", + "description": "Retrieve a specific report.", "operationId": "Report", "responses": { "200": { @@ -2114,15 +2114,15 @@ "Returns a Report": { "value": { "data": { - "id": "1d2cadf3-8a22-4e79-abfb-b5380ad01a3a", - "title": "Voluptate non dignissimos dolor.", - "description": "Molestiae et est. Aut ut reprehenderit. Deserunt dolor enim.", - "business_objective": "driver", + "id": "cc0350c8-05bc-4ce5-a287-9b0288b5bff6", + "title": "Molestias consequatur magnam aliquid.", + "description": "Tenetur esse distinctio. Architecto natus praesentium. Facilis rerum consequatur.", + "business_objective": "transmitter", "compliance_threshold": 90.0, "type": "report", "os_major_version": 9, - "profile_title": "Accusantium laboriosam consectetur dolor.", - "ref_id": "xccdf_org.ssgproject.content_profile_8ee240badcf2f5f4baef1da752ca68f1", + "profile_title": "Officia similique mollitia non.", + "ref_id": "xccdf_org.ssgproject.content_profile_b2adac603216554b00678daf09344fd9", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -2159,7 +2159,7 @@ "Description of an error when requesting a non-existing Report": { "value": { "errors": [ - "V2::Report not found with ID 792fb0a0-a640-47fd-994d-a2bfb507b209" + "V2::Report not found with ID 1284c9b7-01cf-4338-82b1-6c439b228f5d" ] }, "summary": "", @@ -2197,7 +2197,7 @@ "tags": [ "Reports" ], - "description": "Deletes Report's test results", + "description": "Delete test results for a specific report.", "operationId": "DeleteReport", "responses": { "202": { @@ -2208,15 +2208,15 @@ "Deletes Report's test results": { "value": { "data": { - "id": "23b207a3-459e-4db5-940e-242ab78495a9", - "title": "Corporis suscipit et excepturi.", - "description": "Adipisci enim autem. Incidunt repellat nemo. Voluptatem voluptas dolores.", - "business_objective": "circuit", + "id": "54da7f07-8a05-4744-add0-ac098f6b7901", + "title": "Fugiat nostrum id animi.", + "description": "Repudiandae numquam et. Ad numquam dolores. Voluptates eos illo.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 9, - "profile_title": "Aliquam nihil deleniti sunt.", - "ref_id": "xccdf_org.ssgproject.content_profile_5f8529e6b4ddb965227f8db49151c29c", + "profile_title": "Aut est illum voluptates.", + "ref_id": "xccdf_org.ssgproject.content_profile_603a8565987329e7e0157da48a173c43", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -2300,7 +2300,7 @@ "Description of an error when requesting a non-existing Report": { "value": { "errors": [ - "V2::Report not found with ID 9576bb86-39f0-4ece-b535-94332d8a3d1c" + "V2::Report not found with ID 02f38533-3148-4dc3-a5fd-72152bde07ad" ] }, "summary": "", @@ -2406,7 +2406,7 @@ "tags": [ "Reports" ], - "description": "Lists Reports", + "description": "Retrieve a list of reports for a specific system.", "operationId": "SystemReports", "responses": { "200": { @@ -2418,15 +2418,15 @@ "value": { "data": [ { - "id": "217e1bd8-349c-4d57-aa80-3beb75887fad", - "title": "Quis nihil molestiae atque.", - "description": "Quae harum assumenda. Neque hic quisquam. Voluptas explicabo repellat.", + "id": "4a2c3f0d-c00f-4c14-a4b2-6ca3cfafc00e", + "title": "Suscipit quos sed aut.", + "description": "Culpa tenetur quae. Omnis non dolores. Eum sit qui.", "business_objective": "hard drive", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Rerum quae culpa quam.", - "ref_id": "xccdf_org.ssgproject.content_profile_f2ed71ad709ba7b21afe2115e1d81761", + "profile_title": "Ut deleniti officiis unde.", + "ref_id": "xccdf_org.ssgproject.content_profile_ffb38d0dcd2c01cd8297f33ddec00778", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2434,15 +2434,15 @@ "reported_system_count": 0 }, { - "id": "2be7c9af-0062-4277-ba2f-b0ab376da7fe", - "title": "Quia officiis nam maxime.", - "description": "Temporibus reprehenderit cupiditate. Exercitationem qui modi. Sunt illo doloremque.", - "business_objective": "matrix", + "id": "4b26fb0c-25db-4d5a-9db7-4d5c50f66728", + "title": "Ipsam magnam hic et.", + "description": "Nihil possimus dolorum. Aliquid nulla consequatur. Fugit et voluptate.", + "business_objective": "pixel", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Sed laborum repellat deleniti.", - "ref_id": "xccdf_org.ssgproject.content_profile_d42c2ddaf3c35e6ffbc6b38d0494dc8e", + "profile_title": "Non officiis qui excepturi.", + "ref_id": "xccdf_org.ssgproject.content_profile_94d2a641e8c828657894918ca5c9199f", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2450,15 +2450,15 @@ "reported_system_count": 0 }, { - "id": "4ff22360-f052-4215-8fcf-ee47656958e4", - "title": "Molestiae autem quasi omnis.", - "description": "Eveniet explicabo in. Voluptatem quaerat magni. Sit aut et.", - "business_objective": "pixel", + "id": "5d1f589b-a55e-41c8-8a1b-fdcbd78973a6", + "title": "Perspiciatis impedit totam debitis.", + "description": "Nisi eaque possimus. Omnis maxime voluptate. Alias nemo voluptatem.", + "business_objective": "sensor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Asperiores placeat illum sit.", - "ref_id": "xccdf_org.ssgproject.content_profile_5cda2bed30d09ef06a5dfe719e3a6257", + "profile_title": "Exercitationem sed labore repellat.", + "ref_id": "xccdf_org.ssgproject.content_profile_3d17d4f07d684e9c11e2bb122399b97f", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2466,15 +2466,15 @@ "reported_system_count": 0 }, { - "id": "5dddcea0-fb13-477b-9731-e91a32ff8b11", - "title": "Repudiandae quae et aut.", - "description": "Numquam asperiores delectus. Magnam et nobis. Ipsam et harum.", - "business_objective": "hard drive", + "id": "d46e65a1-ba80-42f8-be8a-c6b39641392a", + "title": "Minus saepe autem voluptatem.", + "description": "Dolorum expedita quia. Voluptatem at illo. Qui alias voluptatem.", + "business_objective": "card", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Animi et culpa illo.", - "ref_id": "xccdf_org.ssgproject.content_profile_bf66a911591f03d9ee8f9dd8defde58d", + "profile_title": "Sit totam iusto culpa.", + "ref_id": "xccdf_org.ssgproject.content_profile_0d61e557533e8042018c6f5eddd92786", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2482,15 +2482,15 @@ "reported_system_count": 0 }, { - "id": "8e5256f4-0883-4298-97a6-63db56d4b10c", - "title": "Dolores quae ut velit.", - "description": "Expedita iure voluptas. Facilis assumenda nesciunt. Quasi ex doloremque.", - "business_objective": "transmitter", + "id": "e65f848c-a214-4bee-89a0-c257fa36cc28", + "title": "Ea quia optio magni.", + "description": "Rerum nemo voluptatem. Non enim fuga. Et nesciunt modi.", + "business_objective": "port", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Quidem veniam sed amet.", - "ref_id": "xccdf_org.ssgproject.content_profile_caa3179644b32ec3c53d1df7d0db856a", + "profile_title": "Velit odio animi necessitatibus.", + "ref_id": "xccdf_org.ssgproject.content_profile_147d41d17f78e89a8334b07b75adcc14", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2504,8 +2504,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/systems/1c2cd120-e07e-465f-ae87-321e64deb206/reports?limit=10&offset=0", - "last": "/api/compliance/v2/systems/1c2cd120-e07e-465f-ae87-321e64deb206/reports?limit=10&offset=0" + "first": "/api/compliance/v2/systems/a28c2287-04ed-4c55-9650-8dac1baff4da/reports?limit=10&offset=0", + "last": "/api/compliance/v2/systems/a28c2287-04ed-4c55-9650-8dac1baff4da/reports?limit=10&offset=0" } }, "summary": "", @@ -2515,15 +2515,15 @@ "value": { "data": [ { - "id": "60286f52-d0b8-4aec-a02d-aa1247e1ecc6", - "title": "Aperiam ad maxime quasi.", - "description": "Minus non reiciendis. Distinctio eligendi ut. Et quos dicta.", - "business_objective": "hard drive", + "id": "06bd9c9e-5697-477e-a87d-5d5571312185", + "title": "Cum repellendus aut vero.", + "description": "Ipsam et et. Soluta ut reiciendis. Omnis vitae nostrum.", + "business_objective": "feed", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Aut dolorem enim minima.", - "ref_id": "xccdf_org.ssgproject.content_profile_26cb1d2db07e934b04546936eb26b296", + "profile_title": "Porro omnis in est.", + "ref_id": "xccdf_org.ssgproject.content_profile_ceaaa24e9810d0b547a19fb51b73e62d", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2531,15 +2531,15 @@ "reported_system_count": 0 }, { - "id": "c76072ed-b9bf-404b-9cb2-6f48cd82dc77", - "title": "Beatae quidem quos dolores.", - "description": "Sit numquam vel. Voluptatem vel ut. Vel ea aut.", - "business_objective": "interface", + "id": "8af5bb4a-0494-476a-8757-7103a3e4027a", + "title": "Eius amet nihil consequatur.", + "description": "Non veritatis delectus. Fuga nesciunt eos. Quia aperiam atque.", + "business_objective": "array", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Quaerat placeat quis eaque.", - "ref_id": "xccdf_org.ssgproject.content_profile_b7373756db6c346871d48aca45b7a3dd", + "profile_title": "Soluta ea sed debitis.", + "ref_id": "xccdf_org.ssgproject.content_profile_1afd2590ccede1569babd7cd23902d04", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2547,15 +2547,15 @@ "reported_system_count": 0 }, { - "id": "a330acc4-d9e4-4d72-a551-b7ca8cecfa0c", - "title": "Doloribus similique cupiditate sit.", - "description": "Illum aut nihil. Amet commodi aut. Et aspernatur dicta.", - "business_objective": "alarm", + "id": "0bdc972f-60b1-47dd-88ea-2af5de2ad119", + "title": "Non ex et odit.", + "description": "Sed eum et. Cupiditate non neque. Dolore consequuntur id.", + "business_objective": "driver", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Eveniet quaerat et occaecati.", - "ref_id": "xccdf_org.ssgproject.content_profile_b22f82648d97ddca5a97f1373a67ba4c", + "profile_title": "Iure quam nisi et.", + "ref_id": "xccdf_org.ssgproject.content_profile_9ad183716bc3ad6b3e217ecaea45e265", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2563,15 +2563,15 @@ "reported_system_count": 0 }, { - "id": "40f83ce5-287e-4c79-8ab1-1d8b668c6a59", - "title": "Et nulla qui nihil.", - "description": "Voluptatum animi ut. Ullam sequi sit. Fugit voluptatum doloribus.", - "business_objective": "monitor", + "id": "15633180-2a40-4f01-8f5e-802214772178", + "title": "Qui earum velit exercitationem.", + "description": "Inventore rem quo. Molestiae officiis est. Assumenda illum sint.", + "business_objective": "array", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Aut aut vitae doloremque.", - "ref_id": "xccdf_org.ssgproject.content_profile_3cd25206e22762bdc3f9af90da79b5a6", + "profile_title": "Saepe mollitia doloribus aliquid.", + "ref_id": "xccdf_org.ssgproject.content_profile_0f91e41b99d1799b81e88b626e05bee6", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2579,15 +2579,15 @@ "reported_system_count": 0 }, { - "id": "a971ea90-9c22-46a1-b6b7-5696a6ece0c0", - "title": "Sit amet adipisci distinctio.", - "description": "Enim voluptatum et. Voluptatem exercitationem qui. Labore omnis quam.", - "business_objective": "capacitor", + "id": "91249caa-f082-4e37-a6a3-a649cedd1881", + "title": "Quia repellendus sapiente quod.", + "description": "Nam blanditiis nesciunt. Pariatur delectus veniam. Voluptatem recusandae facere.", + "business_objective": "alarm", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "At reiciendis aliquam facilis.", - "ref_id": "xccdf_org.ssgproject.content_profile_c59380f77af0f6ced4fa28abbaeb98aa", + "profile_title": "Perspiciatis ipsam saepe doloribus.", + "ref_id": "xccdf_org.ssgproject.content_profile_8a6dbc681f51105cedf7d0eb1d5996e9", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2602,8 +2602,8 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/systems/2f76d2aa-5d67-4c71-a54b-2b2b880f291e/reports?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/systems/2f76d2aa-5d67-4c71-a54b-2b2b880f291e/reports?limit=10&offset=0&sort_by=title" + "first": "/api/compliance/v2/systems/b0720b36-0186-49c1-b3e6-a845ba7f83af/reports?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/systems/b0720b36-0186-49c1-b3e6-a845ba7f83af/reports?limit=10&offset=0&sort_by=title" } }, "summary": "", @@ -2748,7 +2748,7 @@ "tags": [ "Content" ], - "description": "Lists Rule Groups", + "description": "List all rules groups.", "operationId": "Rule Groups", "responses": { "200": { @@ -2760,92 +2760,92 @@ "value": { "data": [ { - "id": "0817616c-5976-4b47-a6f8-2b7054ca7096", - "ref_id": "xccdf_org.ssgproject.content_rule_group_96753cb8646b7ff15a715a6cf14866d0", - "title": "Magnam sunt doloribus consequuntur.", - "rationale": "Aut molestias amet. Eum atque ut. Harum accusantium in.", - "description": "Ut minima deleniti. Magni perspiciatis ex. Perspiciatis aut esse.", + "id": "00fb7f96-39aa-4ae9-b7ad-6796d1d1b648", + "ref_id": "xccdf_org.ssgproject.content_rule_group_3507e578b6f50ca6db1a70fc7efa7827", + "title": "Sit voluptatem magnam libero.", + "rationale": "Est perferendis ut. Optio magni doloremque. Voluptates consequatur repudiandae.", + "description": "Velit doloremque harum. Eaque omnis rerum. Sit sed et.", "precedence": null, "type": "rule_group" }, { - "id": "0cbb0903-13ec-4da9-8074-ec9318d235b4", - "ref_id": "xccdf_org.ssgproject.content_rule_group_94c8256db3000bde16d47e403a817719", - "title": "Cum deleniti aperiam quibusdam.", - "rationale": "Dignissimos repellendus saepe. Modi ut corporis. Molestiae excepturi dolor.", - "description": "Inventore aut et. Maiores reiciendis quia. Hic dignissimos natus.", + "id": "0932c3a1-8726-4352-8ebb-d6f8635c01f2", + "ref_id": "xccdf_org.ssgproject.content_rule_group_0a60d6a499c0a57f70319e045ca42dc0", + "title": "Libero iusto ut repudiandae.", + "rationale": "Aut fuga cupiditate. Dignissimos sed eum. Vitae optio aut.", + "description": "Cumque qui in. Iusto repellendus in. Voluptate rem quos.", "precedence": null, "type": "rule_group" }, { - "id": "25bee955-d89b-4237-b1cc-948e5079ff56", - "ref_id": "xccdf_org.ssgproject.content_rule_group_f185acf741584997c033addba9a804cc", - "title": "Eius sunt error laborum.", - "rationale": "Est earum qui. Ducimus eaque incidunt. Neque sunt rerum.", - "description": "Sunt quia ut. Quisquam illum minus. Aspernatur totam suscipit.", + "id": "29d1d27f-ada2-4a42-ae24-a8b831b87d0c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_194b73c4fffacdcd8a3eb9026086063f", + "title": "Sint aliquam aut voluptatum.", + "rationale": "Ut dolores totam. Et nam sunt. Asperiores est sit.", + "description": "Optio ut autem. Est aut ad. Soluta sit illum.", "precedence": null, "type": "rule_group" }, { - "id": "31c392b5-54ed-4a87-af8f-94b84a6269d3", - "ref_id": "xccdf_org.ssgproject.content_rule_group_d80de049c2fb1f3099f2e6941763fded", - "title": "Placeat ducimus dolore atque.", - "rationale": "Nostrum distinctio tempore. Vel ut quia. Expedita error vel.", - "description": "Illum ducimus consequatur. Quisquam autem ea. Deserunt aperiam quasi.", + "id": "42c26aff-66d1-4e31-8224-7b2d5787366e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_ea397f96ee117cf63d92f11b75521a5d", + "title": "Sint aut sequi quaerat.", + "rationale": "Sit quia laboriosam. Corrupti aut et. Vitae ullam nulla.", + "description": "Eaque fuga dolores. Commodi sit ipsa. Consequatur eligendi soluta.", "precedence": null, "type": "rule_group" }, { - "id": "39db96a7-bcb9-4588-ac7f-c55bc527546e", - "ref_id": "xccdf_org.ssgproject.content_rule_group_cc192d7701c2d20ab40c71484ac94c54", - "title": "Quisquam modi quos nihil.", - "rationale": "Autem eum ut. Quasi harum unde. Voluptas ut ipsa.", - "description": "Eos deserunt omnis. Velit autem sit. Earum placeat ipsum.", + "id": "4ff799ec-d9a3-4d32-8425-a9bbbffad755", + "ref_id": "xccdf_org.ssgproject.content_rule_group_0d08dcc747acbf29e5f9a42a5b18864e", + "title": "Quidem voluptas nihil laudantium.", + "rationale": "Iure quia architecto. Id quidem molestiae. Excepturi amet ipsa.", + "description": "Dolor amet sapiente. Vel minus eum. Omnis ipsa repudiandae.", "precedence": null, "type": "rule_group" }, { - "id": "5119dc5b-d5f3-4637-8098-4747861f69f1", - "ref_id": "xccdf_org.ssgproject.content_rule_group_12ccd0b53acc31332d0fcb57d5d24393", - "title": "Deleniti ipsam deserunt molestias.", - "rationale": "Et in libero. In molestiae quaerat. Et dolor voluptas.", - "description": "Consequatur soluta accusantium. Consequatur earum eos. Corporis dolor a.", + "id": "518f15ca-3628-4f7b-b701-fed6d376a994", + "ref_id": "xccdf_org.ssgproject.content_rule_group_301c730775e3a17108b73e5e0724e12f", + "title": "Laudantium fugit quaerat quisquam.", + "rationale": "Natus mollitia quisquam. Dolorem dolores sint. Aut natus nesciunt.", + "description": "Corporis reprehenderit at. Rerum et pariatur. Et et praesentium.", "precedence": null, "type": "rule_group" }, { - "id": "572f5c16-dfcb-49d4-b456-075e6d68205b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e05e663baaab56eeff06fb38eb04fb0b", - "title": "Aperiam ut facilis est.", - "rationale": "Aut optio tempora. Explicabo hic odio. Tempora voluptatem dolores.", - "description": "In est culpa. Reiciendis et delectus. Veritatis saepe et.", + "id": "6146f8a5-e565-4ff6-a4c4-697cb5b5a023", + "ref_id": "xccdf_org.ssgproject.content_rule_group_7a680979437988141760552cce9d49ab", + "title": "Impedit in qui numquam.", + "rationale": "Accusantium et eos. Dolor esse quidem. Ea doloribus enim.", + "description": "Facilis quo velit. Dolorem iusto et. Ut labore tempore.", "precedence": null, "type": "rule_group" }, { - "id": "5e07623a-a3f2-42f1-95da-0080099b7894", - "ref_id": "xccdf_org.ssgproject.content_rule_group_08f3b1f6fa9ad60221e8800e2d4b7f95", - "title": "Velit et amet et.", - "rationale": "Ad iure et. Magnam odio non. Itaque quia sequi.", - "description": "Veritatis deserunt dignissimos. Assumenda necessitatibus amet. Mollitia non nobis.", + "id": "63fe57b0-6e4b-4388-ac9e-b8fb6da09bb9", + "ref_id": "xccdf_org.ssgproject.content_rule_group_0baff8efba7ef8868eb580336b8ad9b1", + "title": "Corporis consequuntur debitis id.", + "rationale": "Quasi laborum inventore. Quis cum numquam. Perferendis voluptas atque.", + "description": "Sit mollitia et. Ea provident aut. Quia quas quos.", "precedence": null, "type": "rule_group" }, { - "id": "6c2c271a-c101-4ebe-9d04-f9eb841895ff", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e25fc44c683e6702f2b05ab536f5c938", - "title": "Id hic quo necessitatibus.", - "rationale": "Ipsam accusantium blanditiis. Minus quis repellendus. Et dolor doloribus.", - "description": "Ea omnis dolorem. Enim officiis et. Illo omnis quis.", + "id": "6d6f171a-7aed-442e-8efb-915ac7867b16", + "ref_id": "xccdf_org.ssgproject.content_rule_group_a9d1c52aa63035e7c17afdbdc9929822", + "title": "Accusamus adipisci atque animi.", + "rationale": "Et hic ratione. Vero tenetur sed. Perspiciatis neque consectetur.", + "description": "Est deleniti voluptatem. Tempore nisi officiis. Et maxime quos.", "precedence": null, "type": "rule_group" }, { - "id": "8a4cbdcd-abb6-409c-b885-cfcf37ea03b0", - "ref_id": "xccdf_org.ssgproject.content_rule_group_2b3b9833f74c825c173069e54d78e1ed", - "title": "Non vitae et rerum.", - "rationale": "Est vel reprehenderit. Est repellendus explicabo. Quis cum ea.", - "description": "Et doloremque et. Laborum beatae architecto. Corporis ipsa dicta.", + "id": "747e752a-b8ce-437b-a0ef-6e41bec4a651", + "ref_id": "xccdf_org.ssgproject.content_rule_group_90c3b368106a5c4bc802d94f4c05ce4c", + "title": "Quis quia rerum ut.", + "rationale": "Ipsum eaque sit. Et est aperiam. Et et tenetur.", + "description": "Enim aut optio. Mollitia et quia. Non illum repudiandae.", "precedence": null, "type": "rule_group" } @@ -2856,9 +2856,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/12181745-5f8c-4a6f-a61c-4e3d05cfd9d4/rule_groups?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/12181745-5f8c-4a6f-a61c-4e3d05cfd9d4/rule_groups?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/12181745-5f8c-4a6f-a61c-4e3d05cfd9d4/rule_groups?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/b46ceaeb-3695-48ae-83b7-51b6a44bd827/rule_groups?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/b46ceaeb-3695-48ae-83b7-51b6a44bd827/rule_groups?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/b46ceaeb-3695-48ae-83b7-51b6a44bd827/rule_groups?limit=10&offset=10" } }, "summary": "", @@ -2868,92 +2868,92 @@ "value": { "data": [ { - "id": "21bf9693-a88a-46fa-a5d1-adcee3c00e86", - "ref_id": "xccdf_org.ssgproject.content_rule_group_c1786d9f41998ffc3340b0a58fc8bf9f", - "title": "Quia dolore molestiae dignissimos.", - "rationale": "Et esse rerum. Rerum omnis eum. Quisquam et eum.", - "description": "Animi quia eos. Ut esse incidunt. Atque ut magnam.", + "id": "0f17577f-27c4-4310-af7a-461b63445d86", + "ref_id": "xccdf_org.ssgproject.content_rule_group_24401119ede8dfdfb7d850ac408fa96b", + "title": "Ea veniam enim quaerat.", + "rationale": "Sed soluta autem. Odio eaque et. Asperiores exercitationem accusantium.", + "description": "Magnam consequatur aliquid. Est non blanditiis. Temporibus recusandae neque.", "precedence": null, "type": "rule_group" }, { - "id": "26c7f9a1-5da8-43af-b587-f6348db61f87", - "ref_id": "xccdf_org.ssgproject.content_rule_group_0803bca0d38b6b0e4533bd74bcd10e0b", - "title": "Animi nostrum aliquam at.", - "rationale": "Magni iure iusto. Sint iusto vitae. Pariatur non nihil.", - "description": "Sed praesentium autem. Non commodi a. Voluptatem harum voluptate.", + "id": "17494801-aa7c-42ff-a71a-43c4c6bedebd", + "ref_id": "xccdf_org.ssgproject.content_rule_group_a8cfe928eefd2c6717d6288d9cbd5bbc", + "title": "Assumenda voluptatum est molestiae.", + "rationale": "Debitis magnam delectus. Et exercitationem perferendis. Quidem natus et.", + "description": "Quibusdam sequi veritatis. Earum porro eum. Vel nobis alias.", "precedence": null, "type": "rule_group" }, { - "id": "2887d8d4-aee0-4740-b00a-59a0d5021faa", - "ref_id": "xccdf_org.ssgproject.content_rule_group_2523533a7d40a1df5c8211aa38817550", - "title": "Voluptatem enim praesentium quas.", - "rationale": "Iusto voluptatibus velit. Sequi et quia. Praesentium atque quod.", - "description": "Et quia ipsam. Et nam iure. Laudantium tenetur consequuntur.", + "id": "1fd4628e-e059-4aaf-b6c9-af18f77a21ef", + "ref_id": "xccdf_org.ssgproject.content_rule_group_5fff8c7706dda1919d61e81559f3c559", + "title": "Perspiciatis voluptatem et eius.", + "rationale": "Dicta et non. Ut tenetur modi. Excepturi deleniti omnis.", + "description": "Similique qui dolore. Et aut repellendus. Optio ea asperiores.", "precedence": null, "type": "rule_group" }, { - "id": "29c800a2-6447-4899-ba4d-eb0ab71d7279", - "ref_id": "xccdf_org.ssgproject.content_rule_group_41ff8df45f6fa7fec3ca7d8440a5870d", - "title": "Quia aliquid molestias laboriosam.", - "rationale": "Nemo est nam. Minima fugit magnam. Harum consequatur est.", - "description": "Sed aut qui. Laboriosam facilis necessitatibus. Quam est similique.", + "id": "32504d28-81db-46c3-b0b3-13748f3b829e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_fbeebf53cb8b9bb7c7e5280af396e480", + "title": "Doloribus a et et.", + "rationale": "Expedita et dolorem. Blanditiis adipisci cupiditate. Blanditiis nemo fugit.", + "description": "Amet cupiditate facere. Consectetur maiores cum. Beatae officia illum.", "precedence": null, "type": "rule_group" }, { - "id": "5122c234-51cb-45d5-8bb3-6d9f12998f0b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_37b0b9e6896e30014fddee8b5a2f637d", - "title": "Doloremque magnam quia ducimus.", - "rationale": "Consequatur consequatur dolores. Molestiae at totam. Non totam officia.", - "description": "Aut et aut. Laborum praesentium rerum. Reprehenderit et nulla.", + "id": "3eb7e4f5-4a4d-4320-8501-4c8bb4b97c38", + "ref_id": "xccdf_org.ssgproject.content_rule_group_9cda97b336450acf50f40c763e06deae", + "title": "Quas dolores rerum nesciunt.", + "rationale": "At suscipit animi. Qui dolorem culpa. Magnam eius veniam.", + "description": "Repellat et aut. Occaecati vero similique. Fugit omnis sunt.", "precedence": null, "type": "rule_group" }, { - "id": "691ea158-5c57-449d-89a5-4c0ef86a4861", - "ref_id": "xccdf_org.ssgproject.content_rule_group_ba97c6e5b941854804ea9965d49f0ee9", - "title": "Consequuntur earum incidunt enim.", - "rationale": "In odio dolor. Iusto doloremque beatae. Aut natus rerum.", - "description": "Quia fuga illo. Quaerat tempora maxime. Alias id voluptate.", + "id": "503bca29-4f9d-4b74-840e-edfb375330dc", + "ref_id": "xccdf_org.ssgproject.content_rule_group_b7e5c59eee26ed967d8487b0ab33a94f", + "title": "Ea ullam temporibus velit.", + "rationale": "Deserunt inventore repellat. Qui eaque repellat. Dignissimos autem accusantium.", + "description": "Quia qui inventore. Sapiente sed aliquid. Sint amet officiis.", "precedence": null, "type": "rule_group" }, { - "id": "6c54eebb-9786-49ad-a984-a6535999600c", - "ref_id": "xccdf_org.ssgproject.content_rule_group_c9c6a5c7bdac5c4327ff74f9aef2e4bd", - "title": "Ut illo quam rem.", - "rationale": "Voluptas fugit ipsum. Voluptate repellat et. Quo et inventore.", - "description": "Sed eos exercitationem. Error mollitia facere. Voluptas rerum quam.", + "id": "5635e2e4-5d1d-4de3-9ee2-a2cb7da10bdc", + "ref_id": "xccdf_org.ssgproject.content_rule_group_d28bd15d2f125ad5f4add75a647ce8ff", + "title": "Sit aut ut eos.", + "rationale": "Perspiciatis fuga id. Saepe vitae beatae. Velit magnam eos.", + "description": "Eligendi sint dolor. Quis ut assumenda. Similique quam exercitationem.", "precedence": null, "type": "rule_group" }, { - "id": "772c415c-5771-46cc-b54f-37547a2dfa41", - "ref_id": "xccdf_org.ssgproject.content_rule_group_d54056b890f687fee1ee41727978d504", - "title": "Voluptatem dolor dolores est.", - "rationale": "Totam rerum et. Est soluta laborum. Quaerat et dolores.", - "description": "Odit sunt est. Rem cum aut. Illum incidunt vero.", + "id": "5e13f03b-29cd-47ff-9567-3fc671977377", + "ref_id": "xccdf_org.ssgproject.content_rule_group_81fcfb233571e86cded6e6f8de5c7b99", + "title": "Sit veniam sed nesciunt.", + "rationale": "Est magni architecto. Non et culpa. Qui nostrum quia.", + "description": "Qui sint eum. Aut dolores quis. Explicabo accusamus sit.", "precedence": null, "type": "rule_group" }, { - "id": "8de9ef6d-dd07-445a-8da4-940d7ab7317a", - "ref_id": "xccdf_org.ssgproject.content_rule_group_f24a0bae9a1894ccf953e96c9a77665a", - "title": "Est ratione quas qui.", - "rationale": "Veniam error quia. Autem et totam. Aut aut iusto.", - "description": "Quia aliquid est. Iusto laboriosam et. Ratione ut dolores.", + "id": "66071f23-86bb-4476-837b-aee0436ac1b2", + "ref_id": "xccdf_org.ssgproject.content_rule_group_4bfc3e2c2aeafdf7c6c615bef16aed48", + "title": "Aliquam ut quibusdam id.", + "rationale": "Quas qui maxime. Magni vero iusto. Qui veniam voluptas.", + "description": "Repudiandae maiores aut. Consequatur corporis qui. Voluptatem rerum est.", "precedence": null, "type": "rule_group" }, { - "id": "97d6ae1f-2619-4640-b7f9-5f43fa9185a7", - "ref_id": "xccdf_org.ssgproject.content_rule_group_38636fbb628d3d4467680a89a9d2d618", - "title": "Dicta enim voluptas mollitia.", - "rationale": "Rerum perferendis modi. Ut tenetur et. Quae placeat sint.", - "description": "Porro voluptatem dolore. Perferendis in quibusdam. Voluptatem est accusantium.", + "id": "66d9aa22-981d-49a6-a030-826855aece33", + "ref_id": "xccdf_org.ssgproject.content_rule_group_3d342c4a889e52a0637cd386bc027318", + "title": "Rem rerum culpa omnis.", + "rationale": "Consectetur non sunt. Consequuntur quo debitis. Aliquid harum corrupti.", + "description": "Labore ad non. Omnis commodi asperiores. Voluptates libero voluptas.", "precedence": null, "type": "rule_group" } @@ -2965,9 +2965,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/f4a6f02e-1401-4dc1-95d1-8d217d9f4a8d/rule_groups?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/f4a6f02e-1401-4dc1-95d1-8d217d9f4a8d/rule_groups?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/f4a6f02e-1401-4dc1-95d1-8d217d9f4a8d/rule_groups?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/a16fb9cc-c09e-41b2-9131-9aae5b8d54ef/rule_groups?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/a16fb9cc-c09e-41b2-9131-9aae5b8d54ef/rule_groups?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/a16fb9cc-c09e-41b2-9131-9aae5b8d54ef/rule_groups?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -3063,7 +3063,7 @@ "tags": [ "Content" ], - "description": "Returns a Rule Group", + "description": "Retrieve a specific rule group.", "operationId": "RuleGroup", "responses": { "200": { @@ -3074,11 +3074,11 @@ "Returns a Rule Group": { "value": { "data": { - "id": "265c5990-1e13-4f18-ad87-a1431e3f718b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_f8a7e5cb30e40963d404477e66081359", - "title": "Libero deserunt tempore repellendus.", - "rationale": "Voluptate ut officiis. Illo possimus doloremque. Non est esse.", - "description": "Dolor labore itaque. Sunt hic vel. Est ut optio.", + "id": "d963a0e4-b9b6-4978-baf3-09031decefd5", + "ref_id": "xccdf_org.ssgproject.content_rule_group_ba59b1f28eefe9c3f991429e1e82f23b", + "title": "Labore suscipit doloribus sunt.", + "rationale": "Voluptatem veniam non. Quidem nulla et. Ad quia in.", + "description": "Nobis dolor neque. Dolorum voluptatum dolore. Deserunt quos veniam.", "precedence": null, "type": "rule_group" } @@ -3111,7 +3111,7 @@ "Description of an error when requesting a non-existing Rule Group": { "value": { "errors": [ - "V2::RuleGroup not found with ID 29efef50-fc57-4ef0-ada8-3f7d0a3d1a5b" + "V2::RuleGroup not found with ID df2ebffb-bb6e-42d4-9b52-bcf4bc707987" ] }, "summary": "", @@ -3228,7 +3228,7 @@ "tags": [ "Reports" ], - "description": "Lists Rule Results under a Report", + "description": "Retrieve all of the rule results for a specific report.", "operationId": "ReportRuleResults", "responses": { "200": { @@ -3245,8 +3245,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/93e70930-64ff-4bec-9eda-11e7672de875/test_results/469e41b4-a74f-49eb-b7fe-643b928995d0/rule_results?limit=10&offset=0", - "last": "/api/compliance/v2/reports/93e70930-64ff-4bec-9eda-11e7672de875/test_results/469e41b4-a74f-49eb-b7fe-643b928995d0/rule_results?limit=10&offset=0" + "first": "/api/compliance/v2/reports/67f135f8-856b-401d-8ff5-6ae342050998/test_results/16b8265c-f6a2-432f-aa38-134827f0ff7c/rule_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/67f135f8-856b-401d-8ff5-6ae342050998/test_results/16b8265c-f6a2-432f-aa38-134827f0ff7c/rule_results?limit=10&offset=0" } }, "summary": "", @@ -3262,8 +3262,8 @@ "sort_by": "result" }, "links": { - "first": "/api/compliance/v2/reports/5e29b682-5750-47bd-b9a7-ffeade9f8492/test_results/7d2c1e88-30c3-4f1d-a243-4466575595d8/rule_results?limit=10&offset=0&sort_by=result", - "last": "/api/compliance/v2/reports/5e29b682-5750-47bd-b9a7-ffeade9f8492/test_results/7d2c1e88-30c3-4f1d-a243-4466575595d8/rule_results?limit=10&offset=0&sort_by=result" + "first": "/api/compliance/v2/reports/f5dd334f-378d-4860-a1d4-b37486fda402/test_results/3cfb1b25-ed59-4f28-9886-90d7574a299e/rule_results?limit=10&offset=0&sort_by=result", + "last": "/api/compliance/v2/reports/f5dd334f-378d-4860-a1d4-b37486fda402/test_results/3cfb1b25-ed59-4f28-9886-90d7574a299e/rule_results?limit=10&offset=0&sort_by=result" } }, "summary": "", @@ -3279,8 +3279,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/9e2b0a19-235e-49e5-b89f-e4bbb7f67ce5/test_results/d5ff10e2-7906-4520-96b7-1b6f83ea4c4c/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/9e2b0a19-235e-49e5-b89f-e4bbb7f67ce5/test_results/d5ff10e2-7906-4520-96b7-1b6f83ea4c4c/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0" + "first": "/api/compliance/v2/reports/41d0df66-b6e6-4ff8-939b-f77b02f8c999/test_results/815f6488-3ddd-40fd-af1a-c58de621f21d/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/41d0df66-b6e6-4ff8-939b-f77b02f8c999/test_results/815f6488-3ddd-40fd-af1a-c58de621f21d/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0" } }, "summary": "", @@ -3434,7 +3434,7 @@ "tags": [ "Content" ], - "description": "Lists Rules assigned", + "description": "Retrieve a list of rules for a specific security guide.", "operationId": "Rules", "responses": { "200": { @@ -3446,393 +3446,393 @@ "value": { "data": [ { - "id": "1259a356-a9cd-4f45-8a33-46fb0209798d", - "ref_id": "xccdf_org.ssgproject.content_rule_8f663965109ff1415122ef684f70ac81", - "title": "Voluptas similique architecto sit.", - "rationale": "Voluptatibus sint occaecati. Saepe perspiciatis perferendis. Ut voluptas dignissimos.", - "description": "Totam esse sint. Id et nemo. Pariatur omnis ut.", - "severity": "high", - "precedence": 6149, + "id": "023be570-5f1d-43e3-8f28-bda7df80b462", + "ref_id": "xccdf_org.ssgproject.content_rule_d8273354e443d95646f7d94fb28b1910", + "title": "Provident in sit quis.", + "rationale": "Iste et repellat. Aperiam voluptatibus et. Est id quibusdam.", + "description": "Omnis dolorem sed. Praesentium quos assumenda. Id sapiente voluptatem.", + "severity": "low", + "precedence": 1436, "identifier": { - "href": "http://runolfsdottir-olson.test/talia", - "label": "Gelmir" + "href": "http://baumbach.test/rodolfo", + "label": "Cotman" }, "references": [ { - "href": "http://smith-smitham.test/adrian.mckenzie", - "label": "Númendil" + "href": "http://legros-hegmann.example/winfred", + "label": "Gamil Zirak" }, { - "href": "http://gerlach-hettinger.test/alberto_okeefe", - "label": "Anson Roper" + "href": "http://mayert-kunze.test/talitha", + "label": "Beorn" }, { - "href": "http://langosh.test/lenard.armstrong", - "label": "Eradan" + "href": "http://abbott.test/meggan.casper", + "label": "Yávien" }, { - "href": "http://hills.test/angelo", - "label": "Bard" + "href": "http://crist.example/corrina_reynolds", + "label": "Beregar" }, { - "href": "http://huel.example/abe_olson", - "label": "Aglahad" + "href": "http://ziemann.example/jan.leffler", + "label": "Grishnákh" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "cc54da0f-cf74-47e3-8229-13c1797207f3", + "rule_group_id": "e7788034-f884-49cc-8089-2d46eb3e8df6", "type": "rule" }, { - "id": "172b3969-bcfb-4591-8525-ecad878f3d7b", - "ref_id": "xccdf_org.ssgproject.content_rule_1ccf658b711d2c54d5e116a8eaeb1a9d", - "title": "Nobis natus eaque eum.", - "rationale": "Nisi nemo nostrum. Et laborum et. Provident dolores sit.", - "description": "Voluptatum omnis rem. Laboriosam omnis explicabo. Quis pariatur harum.", - "severity": "low", - "precedence": 4729, + "id": "0f7b2736-2828-42fd-b863-992ba5e14f8c", + "ref_id": "xccdf_org.ssgproject.content_rule_cdfca5ac2756ec6d7d52f4e5945e14cb", + "title": "Totam rem in non.", + "rationale": "Doloribus nemo ad. Accusantium omnis voluptatem. Minima ut velit.", + "description": "Alias et voluptas. Dolores voluptas ea. Explicabo animi est.", + "severity": "medium", + "precedence": 5284, "identifier": { - "href": "http://gibson.example/meagan", - "label": "Lindir" + "href": "http://carroll-haley.example/everett.little", + "label": "Shelob" }, "references": [ { - "href": "http://kohler.example/merideth", - "label": "Azog" + "href": "http://parisian.test/rubin.dach", + "label": "Gollum" }, { - "href": "http://nikolaus-baumbach.test/myrtis", - "label": "Morwen Steelsheen" + "href": "http://carter.example/isaura_king", + "label": "Tarannon Falastur" }, { - "href": "http://wiegand.example/eusebio", - "label": "Thingol" + "href": "http://stoltenberg.test/karma", + "label": "Estella Bolger" }, { - "href": "http://cormier.example/consuela_kulas", - "label": "Eärnur" + "href": "http://lowe.test/kristopher", + "label": "Merimac Brandybuck" }, { - "href": "http://lueilwitz.example/mayme", - "label": "Argonui" + "href": "http://altenwerth.test/betsey.franecki", + "label": "Frór" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "53c9276a-d64b-4580-b5cd-0c973ce12939", + "rule_group_id": "c3b3ea8c-f405-4b50-bb65-b0768dff4dd6", "type": "rule" }, { - "id": "21a83193-a488-4f83-bc69-5e1c74a8f1da", - "ref_id": "xccdf_org.ssgproject.content_rule_46e5f406288e8e99e1ad3ac5e59bb427", - "title": "Esse laborum totam ut.", - "rationale": "Et voluptatem molestiae. Porro aut nihil. Earum nisi similique.", - "description": "Enim qui a. Necessitatibus quas dolorem. Dolor modi laboriosam.", - "severity": "high", - "precedence": 3062, + "id": "23daaaec-c098-48a5-9fa3-6d8166c632c5", + "ref_id": "xccdf_org.ssgproject.content_rule_2445cbb9bd587c4b0eb458a29d9c1f83", + "title": "Qui dicta fugit et.", + "rationale": "Nam et adipisci. Quia vel rem. Porro rem dolores.", + "description": "Modi non nemo. Natus iste voluptas. Minus magni veritatis.", + "severity": "medium", + "precedence": 8567, "identifier": { - "href": "http://ankunding.test/alexis.wuckert", - "label": "Asphodel Brandybuck" + "href": "http://huels-considine.example/debera", + "label": "Hild" }, "references": [ { - "href": "http://wiza.example/adah_ward", - "label": "Gerda Boffin" + "href": "http://ankunding-altenwerth.example/karlyn.oconner", + "label": "Rose Gardner" }, { - "href": "http://moore.example/tana", - "label": "Landroval" + "href": "http://breitenberg.example/morris_stokes", + "label": "Belegund" }, { - "href": "http://lehner-yundt.example/efrain.schuster", - "label": "Vidugavia" + "href": "http://romaguera.test/anne_green", + "label": "Aravorn" }, { - "href": "http://bashirian.test/isaias.hintz", - "label": "Largo Baggins" + "href": "http://goodwin-kshlerin.example/kristopher.swaniawski", + "label": "Cora Goodbody" }, { - "href": "http://bechtelar.test/john.dach", - "label": "Tar-Elendil" + "href": "http://pfeffer.test/gregory_hamill", + "label": "Orodreth" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "97ff9324-a15c-4e54-8260-388c5e184076", + "rule_group_id": "82d0b961-5438-4fb8-a3cb-63b39b34125a", "type": "rule" }, { - "id": "354e88df-a2e9-40aa-9c28-9e7f86a8d731", - "ref_id": "xccdf_org.ssgproject.content_rule_ab4eea74e6deb296db0085ff08d55c43", - "title": "Et nam laudantium possimus.", - "rationale": "Repudiandae consectetur non. Dolor aut necessitatibus. Consectetur ipsa voluptas.", - "description": "Consequuntur ut rerum. Iste perspiciatis voluptatem. Sunt vel minus.", - "severity": "high", - "precedence": 4154, + "id": "26df5848-42e4-4111-b8da-523c036711f4", + "ref_id": "xccdf_org.ssgproject.content_rule_10d231520f01ef5d2b3e007d5e153da4", + "title": "Perspiciatis debitis sint officia.", + "rationale": "Corporis dolorem sint. Iste ea enim. Aut a occaecati.", + "description": "Id nesciunt labore. Consectetur sint est. Aliquam laudantium qui.", + "severity": "medium", + "precedence": 8607, "identifier": { - "href": "http://cassin.test/shemeka", - "label": "Brytta" + "href": "http://green-anderson.example/mauro.west", + "label": "Mallor" }, "references": [ { - "href": "http://deckow.example/clair_murray", - "label": "Dori" + "href": "http://quigley.example/joaquin_grimes", + "label": "Eldacar" }, { - "href": "http://strosin.test/ronald", - "label": "Andreth" + "href": "http://herzog-wiza.example/jeffery_grady", + "label": "Cora Goodbody" }, { - "href": "http://kihn.test/gennie", - "label": "Mogru" + "href": "http://schmidt.test/sophie", + "label": "Brodda" }, { - "href": "http://herzog.example/perry.gutmann", - "label": "Harry Goatleaf" + "href": "http://haley.test/coy", + "label": "Erkenbrand" }, { - "href": "http://schiller.example/weston", - "label": "Buldar" + "href": "http://borer-cassin.example/kaitlyn_brown", + "label": "Forlong" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "908ff67a-1593-4a00-a16c-89ff5ad7f7a5", + "rule_group_id": "5e08984e-f183-4d20-87d7-56676ee772f8", "type": "rule" }, { - "id": "48b307c1-eea2-4166-8bc4-61e251105da9", - "ref_id": "xccdf_org.ssgproject.content_rule_d2f097f687e25ab40250313a5cb1b627", - "title": "Unde veritatis rem qui.", - "rationale": "Veniam ipsa ullam. Et voluptatem quam. Quia et dolorum.", - "description": "Nisi velit ut. In recusandae quo. Quidem odit culpa.", - "severity": "low", - "precedence": 9543, + "id": "42d46161-51b3-4ba6-85b3-65589e007266", + "ref_id": "xccdf_org.ssgproject.content_rule_09777066185cb7fc9bc51d255a19d477", + "title": "Dignissimos ut natus asperiores.", + "rationale": "Sed expedita aut. Architecto non temporibus. Ad numquam aut.", + "description": "Dolor numquam magnam. Natus et quae. Beatae ea iure.", + "severity": "medium", + "precedence": 9735, "identifier": { - "href": "http://jacobson.example/laci", - "label": "Eofor" + "href": "http://kuphal.test/jamar", + "label": "Inzilbêth" }, "references": [ { - "href": "http://zboncak.example/yuki", - "label": "Arahad" + "href": "http://ward.example/ruby", + "label": "Huor" }, { - "href": "http://durgan.example/hassan_reilly", - "label": "Calimehtar" + "href": "http://walsh.example/clarence.botsford", + "label": "Aranwë" }, { - "href": "http://adams-wilderman.example/shena.waters", - "label": "Hundar" + "href": "http://quitzon-rempel.test/nadia", + "label": "Elenwë" }, { - "href": "http://heaney.test/kortney", - "label": "Tar-Meneldur" + "href": "http://cassin-kunze.example/rich.hand", + "label": "Imrahil" }, { - "href": "http://fay-roberts.test/nestor.bartell", - "label": "Great Goblin" + "href": "http://muller-ohara.example/timmy", + "label": "Imrahil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "712bcd54-515b-4b8b-8be9-5dd2c54e18c9", + "rule_group_id": "15285618-2ece-43ec-8a61-706a0621b7ab", "type": "rule" }, { - "id": "4ea5ae92-4dc2-482e-99d1-cd0893a3362e", - "ref_id": "xccdf_org.ssgproject.content_rule_e521577adb6f31960d1f4cded90657ad", - "title": "Voluptas quia ipsum error.", - "rationale": "Atque dolor voluptatem. Qui sunt qui. Fugiat veniam possimus.", - "description": "Quis accusamus laboriosam. Modi et doloribus. Beatae aliquid facilis.", - "severity": "medium", - "precedence": 8529, + "id": "4df2bc8d-4147-455a-9a8f-92951d7f10f7", + "ref_id": "xccdf_org.ssgproject.content_rule_292ddaca3c3b655879d545013d21aa6c", + "title": "Ut laudantium magnam id.", + "rationale": "Id quis vitae. Architecto quibusdam nihil. Ad et labore.", + "description": "Quisquam voluptas atque. Voluptatem animi sunt. Error culpa ex.", + "severity": "low", + "precedence": 7869, "identifier": { - "href": "http://hagenes.example/racquel_oreilly", - "label": "Blanco Bracegirdle" + "href": "http://bernhard-pollich.test/cassi.kovacek", + "label": "Nessanië" }, "references": [ { - "href": "http://rogahn.test/marceline.price", - "label": "Minohtar" + "href": "http://beier-wisozk.test/wan.koelpin", + "label": "Nurwë" }, { - "href": "http://stiedemann.example/sonny", - "label": "Aragost" + "href": "http://lynch.example/louis", + "label": "Wiseman Gamwich" }, { - "href": "http://heaney.test/nicky", - "label": "Ingold" + "href": "http://nikolaus.test/jasper", + "label": "Sangahyando" }, { - "href": "http://sporer-nolan.example/vince.okon", - "label": "Khîm" + "href": "http://gleason.test/antonia.bruen", + "label": "Laura Grubb" }, { - "href": "http://schmidt.example/lawerence", - "label": "Gorbadoc Brandybuck" + "href": "http://pacocha.test/ronald_ruecker", + "label": "Valacar" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4b1956b2-fed5-405a-b114-2d4baed4e5a0", + "rule_group_id": "200821b6-63df-4117-8f4e-c9592e013d02", "type": "rule" }, { - "id": "5b7ef834-74ad-467b-87cc-ad0298ab564e", - "ref_id": "xccdf_org.ssgproject.content_rule_043eb8b70179bcd5baa301112bc42ed3", - "title": "Esse dolores ut impedit.", - "rationale": "Facilis illum consequatur. Nostrum iste sit. Fugit saepe omnis.", - "description": "Laborum ducimus sit. Rem autem quia. Soluta ut sit.", - "severity": "medium", - "precedence": 2211, + "id": "5f2556f8-bb18-4574-96b4-15f30fc66a0d", + "ref_id": "xccdf_org.ssgproject.content_rule_0f99a7793b145cfb2469b459a7a47425", + "title": "Sint voluptates quis eligendi.", + "rationale": "Dolore et debitis. Amet minima magni. Deserunt iusto aliquam.", + "description": "Delectus nam consequatur. Odio ut ut. Aut dignissimos aut.", + "severity": "high", + "precedence": 6767, "identifier": { - "href": "http://yost.test/trenton", - "label": "Landroval" + "href": "http://osinski.test/teodoro.wiza", + "label": "Telchar" }, "references": [ { - "href": "http://davis-toy.test/angel.schmidt", - "label": "Sapphira Brockhouse" + "href": "http://koch-schoen.test/dewayne", + "label": "Gorbadoc Brandybuck" }, { - "href": "http://pfannerstill.test/arlette", - "label": "Elladan" + "href": "http://stokes-gibson.test/rickie.moore", + "label": "Eilinel" }, { - "href": "http://donnelly.test/floria.nader", - "label": "Belen" + "href": "http://schumm.test/patrick", + "label": "Ingwion" }, { - "href": "http://upton.example/yun", - "label": "Lindir" + "href": "http://trantow.test/roland", + "label": "Gilly Brownlock" }, { - "href": "http://marks-rohan.test/gayle", - "label": "Ceorl" + "href": "http://lesch.test/royce_yost", + "label": "Caliondo" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "d3466e95-e0bc-4e6a-8ad3-9e0be5b3f65c", + "rule_group_id": "04d44a81-e5ea-4a68-8211-71178cab9e38", "type": "rule" }, { - "id": "70582b70-8151-465b-b582-16d0a419b44b", - "ref_id": "xccdf_org.ssgproject.content_rule_90716af296614405f1557891cf49f0af", - "title": "Eos voluptas et enim.", - "rationale": "Voluptatem libero impedit. Qui sunt modi. Quidem rerum fugiat.", - "description": "Sed repudiandae qui. Inventore qui rerum. Laboriosam doloribus odit.", - "severity": "medium", - "precedence": 8821, + "id": "604a3af9-d983-4a73-b7c9-bcd6cda41a96", + "ref_id": "xccdf_org.ssgproject.content_rule_0a5e8fe8074a24b3abad44733508e7ab", + "title": "Minima amet ea harum.", + "rationale": "Sed fuga voluptatem. Officia reiciendis sed. Hic voluptas nesciunt.", + "description": "Excepturi ducimus et. Et est vel. Dolore impedit ut.", + "severity": "high", + "precedence": 6500, "identifier": { - "href": "http://bernhard.test/otha.zboncak", - "label": "Farmer Cotton" + "href": "http://adams-braun.test/devin", + "label": "Mairen" }, "references": [ { - "href": "http://moen.test/jed_ward", - "label": "Amlach" + "href": "http://beahan.test/margarito.bradtke", + "label": "Náin" }, { - "href": "http://gorczany-jacobi.example/shanna.langworth", - "label": "Bell Goodchild" + "href": "http://kris.example/trula", + "label": "Belen" }, { - "href": "http://carroll.test/sybil.russel", - "label": "Jago Boffin" + "href": "http://pfannerstill.example/reba_goldner", + "label": "Daisy Baggins" }, { - "href": "http://nolan.example/kenny_conroy", - "label": "Adaldrida Bolger" + "href": "http://rempel.test/leeanna.hansen", + "label": "Isembard Took" }, { - "href": "http://bogisich.test/robert.sauer", - "label": "Tar-Míriel" + "href": "http://leuschke.test/hugo", + "label": "Othrondir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "067a9eec-e7ae-4557-802c-9bc196c80ddc", + "rule_group_id": "4845c31f-9fee-4c50-aca4-d2fd0d401985", "type": "rule" }, { - "id": "712eccc2-48c4-43da-8132-48596b585dce", - "ref_id": "xccdf_org.ssgproject.content_rule_35640cf779924dafb7749a5428f1217a", - "title": "Nostrum excepturi eveniet quam.", - "rationale": "Et nihil ut. Ipsum cumque iure. Tempora veritatis exercitationem.", - "description": "A repudiandae voluptas. Tenetur sunt quae. Id iure quisquam.", - "severity": "low", - "precedence": 951, + "id": "6ad27251-d380-4a26-8abb-bc808c80a057", + "ref_id": "xccdf_org.ssgproject.content_rule_6dcace801c14c87f70e1b1986185c8d4", + "title": "Molestias aspernatur voluptatem earum.", + "rationale": "Unde corrupti ea. Voluptatum vero est. Labore maiores non.", + "description": "Sed alias harum. Quidem eaque eos. Et molestias omnis.", + "severity": "medium", + "precedence": 9859, "identifier": { - "href": "http://hickle-robel.example/virgilio_nitzsche", - "label": "Erkenbrand" + "href": "http://gottlieb.test/helen", + "label": "Rollo Boffin" }, "references": [ { - "href": "http://hackett.test/essie", - "label": "Thorondor" + "href": "http://white.example/vikki", + "label": "Lalaith" }, { - "href": "http://ondricka.test/roosevelt_bode", - "label": "Imrazôr" + "href": "http://lindgren-herman.example/tangela", + "label": "Khamûl" }, { - "href": "http://dicki-cole.test/tammi.witting", - "label": "Eärendil" + "href": "http://labadie.test/tuan", + "label": "Nar" }, { - "href": "http://schneider.test/chas_tillman", - "label": "Nar" + "href": "http://wehner.test/cinthia", + "label": "Lóni" }, { - "href": "http://nolan.example/luther", - "label": "Primrose Gardner" + "href": "http://toy-hartmann.example/tyrone", + "label": "Borin" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "430ae82a-703f-4c4a-8a2b-c739139fc366", + "rule_group_id": "f3bcd5af-9c81-4d7c-a68d-f2bec00a4ae0", "type": "rule" }, { - "id": "777ab401-686d-49e7-9b9c-ed42a9c0b925", - "ref_id": "xccdf_org.ssgproject.content_rule_6cbf5f334833f1206d436628de291ca4", - "title": "Velit amet porro et.", - "rationale": "Rerum ut at. Quos harum dicta. Quam est unde.", - "description": "Ut velit officiis. Consequatur aut sed. Vel eaque et.", - "severity": "medium", - "precedence": 8834, + "id": "7d2e28aa-7940-4ee5-95b9-3d4f1494d079", + "ref_id": "xccdf_org.ssgproject.content_rule_bee0b5ca5269369c28f69320e875c60b", + "title": "Ex numquam consequatur unde.", + "rationale": "Corporis et et. Occaecati aliquid optio. Sequi cupiditate earum.", + "description": "Accusamus tempore iure. Et veniam quia. Est aut et.", + "severity": "high", + "precedence": 3546, "identifier": { - "href": "http://keeling.example/benito", - "label": "Eärendur" + "href": "http://okuneva.example/luvenia", + "label": "Nolondil" }, "references": [ { - "href": "http://marvin.example/lionel", - "label": "Quennar" + "href": "http://cummerata-kemmer.test/aleen", + "label": "Uldor" }, { - "href": "http://batz.example/yong.thompson", - "label": "Huor" + "href": "http://kuvalis.test/chieko_schuppe", + "label": "Bifur" }, { - "href": "http://bednar.example/josiah", - "label": "Nimloth of Doriath" + "href": "http://feest.example/brice", + "label": "Tar-Alcarin" }, { - "href": "http://ullrich.test/giovanni_farrell", - "label": "Dina Diggle" + "href": "http://luettgen.test/joie", + "label": "Barahir" }, { - "href": "http://walter-skiles.test/angelic", - "label": "Legolas" + "href": "http://schinner-swaniawski.example/alfonzo.koch", + "label": "Mithrellas" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "5b53f7b8-2b8d-48ec-9725-90637a9461eb", + "rule_group_id": "1168a1b7-0f72-41ad-968c-2ad92dc84c4d", "type": "rule" } ], @@ -3842,9 +3842,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/475f9c55-6d10-4875-96f5-d57f35edc759/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/475f9c55-6d10-4875-96f5-d57f35edc759/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/475f9c55-6d10-4875-96f5-d57f35edc759/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/6d0c9ce0-5e8c-43b8-8ed7-9572faea8d49/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/6d0c9ce0-5e8c-43b8-8ed7-9572faea8d49/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/6d0c9ce0-5e8c-43b8-8ed7-9572faea8d49/rules?limit=10&offset=10" } }, "summary": "", @@ -3854,393 +3854,393 @@ "value": { "data": [ { - "id": "d1188747-21d2-4514-8e22-ab7832984946", - "ref_id": "xccdf_org.ssgproject.content_rule_1acd70ae37de01b2c8424708d757e010", - "title": "Et tenetur perferendis et.", - "rationale": "Fugit velit enim. Eum ea repellendus. Veritatis in quos.", - "description": "Enim temporibus voluptate. Assumenda rerum commodi. Mollitia autem dicta.", - "severity": "medium", - "precedence": 53, + "id": "b3688fea-c928-40d2-80b4-3aa45a34cfa4", + "ref_id": "xccdf_org.ssgproject.content_rule_8026cf3e5b8802436cf3e4b56704792e", + "title": "Exercitationem sed quaerat quibusdam.", + "rationale": "Fugiat commodi et. Deleniti et eos. Magnam dolores harum.", + "description": "Et ut est. Quia tempora totam. Doloribus enim et.", + "severity": "low", + "precedence": 257, "identifier": { - "href": "http://bogisich.example/francine.mraz", - "label": "Grim" + "href": "http://cronin.test/jefferey.hamill", + "label": "Almarian" }, "references": [ { - "href": "http://lockman-hermiston.example/long_konopelski", - "label": "Ulfang" + "href": "http://brown-kertzmann.example/doretha_nienow", + "label": "Elwing" }, { - "href": "http://torphy.test/wendi_renner", - "label": "Lily Brown" + "href": "http://reichel-kuhic.test/kristyn_paucek", + "label": "Bombur" }, { - "href": "http://wehner.example/lilliam.greenfelder", - "label": "Tom Bombadil" + "href": "http://wolf.example/latrisha.sauer", + "label": "Lindir" }, { - "href": "http://herzog-beatty.test/bob_breitenberg", - "label": "Turambar" + "href": "http://collins.example/jeannine.wilkinson", + "label": "Írimon" }, { - "href": "http://hegmann.test/chery", - "label": "Bereg" + "href": "http://nienow.test/omer", + "label": "Elwing" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "6b28bcbe-0307-4995-8e19-43773f91ab71", + "rule_group_id": "a883761c-78fa-4845-9422-5bc63f4872e2", "type": "rule" }, { - "id": "57eaf085-3368-4b56-b8c1-3be8fe75e5bb", - "ref_id": "xccdf_org.ssgproject.content_rule_4e6278d20f06bdc62c20393d2dae9e08", - "title": "Iusto quidem ut officiis.", - "rationale": "Aspernatur quia doloribus. Tempora cupiditate sunt. Enim tenetur voluptatem.", - "description": "Quibusdam magnam quasi. Est nobis et. Eos aut rerum.", - "severity": "high", - "precedence": 144, + "id": "71408b55-c604-4b18-89d9-9109ecec3eca", + "ref_id": "xccdf_org.ssgproject.content_rule_bd2426d8f96691bd7516eb35ed5d9d8c", + "title": "Enim ducimus ut minima.", + "rationale": "Reprehenderit autem aliquam. Molestias ex repellat. Reprehenderit qui error.", + "description": "Voluptas quo pariatur. Vero facilis ut. Incidunt possimus laboriosam.", + "severity": "medium", + "precedence": 762, "identifier": { - "href": "http://powlowski.example/blanche_rosenbaum", - "label": "Aldamir" + "href": "http://dubuque-krajcik.example/lorie", + "label": "Posco Baggins" }, "references": [ { - "href": "http://schamberger.example/adrien", - "label": "Gléowine" + "href": "http://breitenberg.test/bertram.douglas", + "label": "Rowan" }, { - "href": "http://romaguera.test/racheal", - "label": "Isembard Took" + "href": "http://weimann.example/maribeth", + "label": "Ciryatur" }, { - "href": "http://stroman.example/tarah", - "label": "Ulfang" + "href": "http://dickens.test/venice.nader", + "label": "Daisy Gardner" }, { - "href": "http://bednar.test/jamaal.greenfelder", - "label": "Findis" + "href": "http://will-wehner.test/jacquiline", + "label": "Forthwini" }, { - "href": "http://konopelski-mann.test/freddie", - "label": "Tar-Vanimeldë" + "href": "http://turcotte-schneider.test/gayle.smith", + "label": "Gaffer Gamgee" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "f6fd2540-694a-43af-a9f4-f4c57c16ccc1", + "rule_group_id": "62435910-bfb5-436a-8689-1270004a1835", "type": "rule" }, { - "id": "34f3d32d-0554-41cf-b2b9-ee20f2d97a25", - "ref_id": "xccdf_org.ssgproject.content_rule_be8278661a99640ac829f7b20026f294", - "title": "Voluptatem sunt laborum aliquid.", - "rationale": "Modi sequi molestias. Ratione est inventore. Voluptatibus a quam.", - "description": "Eligendi debitis deleniti. Nobis provident quaerat. Accusantium vitae et.", - "severity": "high", - "precedence": 345, + "id": "ef63cd66-be50-4985-96bc-de6688c9015d", + "ref_id": "xccdf_org.ssgproject.content_rule_3a6d14330c7177a6fd011cbb8f51f50d", + "title": "Voluptas dolorem labore et.", + "rationale": "Aut autem velit. Minima voluptas ut. Ipsam et et.", + "description": "Fuga odit quia. Quidem iusto similique. Aliquid quaerat molestiae.", + "severity": "medium", + "precedence": 950, "identifier": { - "href": "http://kassulke-becker.test/cody.mccullough", - "label": "Wulf" + "href": "http://pacocha.test/debby.walsh", + "label": "Andwise Roper" }, "references": [ { - "href": "http://boyer.example/emerald.waelchi", - "label": "Herugar Bolger" + "href": "http://kovacek.example/bonnie_okuneva", + "label": "Eärendil" }, { - "href": "http://altenwerth.example/kari_kris", - "label": "Fortinbras Took" + "href": "http://wiegand.example/diego_schaefer", + "label": "Gilly Brownlock" }, { - "href": "http://casper.example/ward", - "label": "Rufus Burrows" + "href": "http://oconner.test/libby.dicki", + "label": "Finwë" }, { - "href": "http://auer.example/tia", - "label": "Malantur" + "href": "http://thompson-schmitt.example/jim", + "label": "Isildur" }, { - "href": "http://block-romaguera.example/vince", - "label": "Andróg" + "href": "http://feil-gulgowski.example/adolph", + "label": "Castamir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "3dd3383d-6517-4996-9442-f517f6035588", + "rule_group_id": "12858593-b223-48d2-acd8-f2116cdb2813", "type": "rule" }, { - "id": "c1c0b8df-f985-4189-b9af-1f888d7303e4", - "ref_id": "xccdf_org.ssgproject.content_rule_658b64922d7944153a7aa715f311ebbb", - "title": "Dolor ipsa dolores et.", - "rationale": "Nobis maiores minus. Dolorem quia non. Ab quas voluptatem.", - "description": "Ratione voluptatibus ut. Possimus voluptatem in. Nihil incidunt doloribus.", - "severity": "medium", - "precedence": 805, + "id": "6d2e89fb-a3a5-4776-989b-ba9bdd179a51", + "ref_id": "xccdf_org.ssgproject.content_rule_4ddb7c2fed4080eff1926abee5ee44f0", + "title": "Quisquam perferendis consequuntur praesentium.", + "rationale": "Repellendus nostrum adipisci. Saepe ut odit. Quia quaerat reprehenderit.", + "description": "Expedita dolores debitis. Aut necessitatibus a. Soluta quas voluptates.", + "severity": "low", + "precedence": 1148, "identifier": { - "href": "http://spencer.example/gino.herzog", - "label": "Aulendil" + "href": "http://heathcote-funk.test/francis", + "label": "Melilot Brandybuck" }, "references": [ { - "href": "http://rice.test/aldo", - "label": "Elros" + "href": "http://feil.test/ricardo_wiegand", + "label": "Adalgar Bolger" }, { - "href": "http://mertz.example/rene.hermann", - "label": "Nolondil" + "href": "http://stoltenberg.test/brett", + "label": "Robin Smallburrow" }, { - "href": "http://bergstrom.example/sung_lang", - "label": "Nár" + "href": "http://mante.example/florance.gorczany", + "label": "Dúnhere" }, { - "href": "http://considine-homenick.example/shad", - "label": "William" + "href": "http://prohaska-price.test/denice", + "label": "Beren" }, { - "href": "http://goyette.test/donna.stoltenberg", - "label": "Faniel" + "href": "http://balistreri.example/na.mertz", + "label": "Elrond" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4804880e-995d-42f0-97a9-fbb1d57d31ee", + "rule_group_id": "ca8dd619-0f18-4a40-a6e0-3ee5c564f314", "type": "rule" }, { - "id": "2c97d58e-1a57-4d92-9dd9-b0e549c2a51e", - "ref_id": "xccdf_org.ssgproject.content_rule_626530fc9a06e0c3d5f9bbc0b4dda349", - "title": "Facilis aut veniam iure.", - "rationale": "Magni itaque et. Non nesciunt optio. Qui sequi non.", - "description": "Sequi omnis ipsa. Dolorem magnam rerum. Cum eligendi asperiores.", + "id": "4caaad40-0bff-4fb2-8f5b-cad4935767b3", + "ref_id": "xccdf_org.ssgproject.content_rule_3594081d8fbf8e54d79e9d916eb2f531", + "title": "Voluptas enim nam nihil.", + "rationale": "Exercitationem cupiditate et. Repellendus alias dolor. Provident illum ut.", + "description": "Hic voluptatem dolores. Ex reprehenderit et. Ut maiores autem.", "severity": "medium", - "precedence": 828, + "precedence": 1903, "identifier": { - "href": "http://douglas.test/jamal.ward", - "label": "Ferdinand Took" + "href": "http://bernier.example/shaun.feeney", + "label": "Celeborn" }, "references": [ { - "href": "http://mitchell-hills.example/letisha", - "label": "Mîm" + "href": "http://senger.example/darline", + "label": "Dírhael" }, { - "href": "http://wisozk-lowe.test/trudy.champlin", - "label": "Telchar" + "href": "http://bins.test/terence_satterfield", + "label": "Gundabald Bolger" }, { - "href": "http://nolan-kshlerin.example/keneth", - "label": "Angelimir" + "href": "http://champlin-bradtke.example/lincoln.heaney", + "label": "Forweg" }, { - "href": "http://lesch.example/robt_sporer", - "label": "Hallatan" + "href": "http://bailey.test/dante_hammes", + "label": "Marmadas Brandybuck" }, { - "href": "http://dare-bosco.test/chantelle_bahringer", - "label": "Amlach" + "href": "http://watsica.test/vernia", + "label": "Farmer Maggot" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "3109547d-ae24-41e7-8fd9-142f9ccb070e", + "rule_group_id": "6f81b149-a497-4396-a334-7b5366214b8a", "type": "rule" }, { - "id": "edcb1d0b-8db1-493f-8c34-b3002cc138f6", - "ref_id": "xccdf_org.ssgproject.content_rule_f46fbd55d2b07a31445646a3e7347485", - "title": "Maiores magnam fuga laborum.", - "rationale": "Qui quos a. Suscipit distinctio autem. Consequatur nesciunt iusto.", - "description": "Quae sapiente voluptatem. Dolorum molestias mollitia. Eius vero quis.", - "severity": "high", - "precedence": 1016, + "id": "d22e2631-a5f6-4662-943a-2950aaf5cb78", + "ref_id": "xccdf_org.ssgproject.content_rule_8382fd403599a2b6ae7c350d4ba111b7", + "title": "In commodi incidunt deleniti.", + "rationale": "Sed aut provident. Illum autem minima. Aut eaque voluptas.", + "description": "Qui sed debitis. Enim saepe optio. Quia accusantium et.", + "severity": "medium", + "precedence": 2454, "identifier": { - "href": "http://batz.example/oliver.kunde", - "label": "Tata" + "href": "http://bauch.example/rachelle.carter", + "label": "Elanor Gardner" }, "references": [ { - "href": "http://sipes.example/alexis", - "label": "Carc" + "href": "http://prosacco.test/travis", + "label": "Radagast" }, { - "href": "http://heller.example/aurelio.koelpin", - "label": "Anson Roper" + "href": "http://brown.test/haydee.littel", + "label": "Aghan" }, { - "href": "http://lehner.example/adan_marquardt", - "label": "Nár" + "href": "http://johnston.example/rosetta", + "label": "Faniel" }, { - "href": "http://jacobs.example/isiah.cole", - "label": "Findis" + "href": "http://hudson.example/jesse", + "label": "Morwen Steelsheen" }, { - "href": "http://green-powlowski.example/amberly_spinka", - "label": "Silmariën" + "href": "http://huel.test/gregorio.murray", + "label": "Ornendil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "dcef6d6a-fa2c-43b6-b472-7e734c3a02d4", + "rule_group_id": "858bf8f0-dcf3-45e8-a6a6-c76a6fca462f", "type": "rule" }, { - "id": "070000bb-8de7-4192-a021-b9751ed83d8b", - "ref_id": "xccdf_org.ssgproject.content_rule_d485f9d056c84e5b2ca9e424a115b3e0", - "title": "Nihil excepturi illo aliquid.", - "rationale": "Ut rerum quia. Totam debitis veritatis. Accusantium est nihil.", - "description": "Minus ea eum. Sapiente eligendi et. Necessitatibus quo dolore.", + "id": "7ef65724-074d-42d1-8401-5aaf19cd7f5a", + "ref_id": "xccdf_org.ssgproject.content_rule_b5054204e1dc727e23b571d667133d93", + "title": "Dolor quisquam at error.", + "rationale": "Doloremque blanditiis a. Fugit repudiandae nisi. Laborum odio tempore.", + "description": "Accusantium adipisci praesentium. Expedita doloribus quibusdam. Accusamus reprehenderit sunt.", "severity": "low", - "precedence": 1265, + "precedence": 2552, "identifier": { - "href": "http://von.example/jerrell", - "label": "Narmacil" + "href": "http://blanda.test/otha.lemke", + "label": "Gimli" }, "references": [ { - "href": "http://ortiz.example/michal.altenwerth", - "label": "Gandalf" + "href": "http://ullrich.example/gala_emard", + "label": "Ingwion" }, { - "href": "http://carter.test/krissy", - "label": "Rosa Baggins" + "href": "http://kihn.test/nichole", + "label": "Borin" }, { - "href": "http://grant.test/burl_erdman", - "label": "Mrs. Bunce" + "href": "http://bogan.test/christoper.kassulke", + "label": "Adamanta Chubb" }, { - "href": "http://okon.test/arlinda.koepp", - "label": "Rufus Burrows" + "href": "http://hoppe-haag.example/tashina.schmeler", + "label": "Eorl" }, { - "href": "http://windler.test/neil_welch", - "label": "Cemendur" + "href": "http://altenwerth.test/shauna.mcglynn", + "label": "Hamfast Gardner" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "b71ec3d7-7740-4766-b31a-138bd4825b4a", + "rule_group_id": "7b12f802-d01b-4bd3-a2a7-21abe24360f7", "type": "rule" }, { - "id": "96be6a44-e3f0-4465-a55a-94672a649d85", - "ref_id": "xccdf_org.ssgproject.content_rule_499dcfeee0bec7e4af5e3aedab588042", - "title": "Ipsum aut neque culpa.", - "rationale": "Modi quisquam in. Aspernatur voluptatem mollitia. Dolorum voluptatibus quia.", - "description": "Laboriosam exercitationem perspiciatis. Enim ea autem. Reiciendis aspernatur aliquid.", + "id": "c750caef-cf90-49be-abc1-e4b32b353b23", + "ref_id": "xccdf_org.ssgproject.content_rule_779ead7777b6d367cdfe0ce6333135d3", + "title": "Corrupti id dolor distinctio.", + "rationale": "Consequuntur nam laborum. Nam qui consequuntur. Et incidunt quae.", + "description": "Voluptatum et ut. Molestiae amet perferendis. Aliquam quia aut.", "severity": "high", - "precedence": 1640, + "precedence": 3478, "identifier": { - "href": "http://robel.test/lily_bernhard", - "label": "Ibun" + "href": "http://labadie.test/kenyatta", + "label": "Roäc" }, "references": [ { - "href": "http://fadel-goyette.example/collen", - "label": "Lofar" + "href": "http://doyle-ruecker.test/edythe", + "label": "Axantur" }, { - "href": "http://russel.test/tyson_parker", - "label": "Gamil Zirak" + "href": "http://williamson-mante.example/roslyn", + "label": "Arahad" }, { - "href": "http://boyle-crist.example/ardath", - "label": "Meneldor" + "href": "http://hills.test/waldo", + "label": "Dior" }, { - "href": "http://simonis-simonis.example/danae", - "label": "Hathol" + "href": "http://bruen-armstrong.example/carlton.parisian", + "label": "Uldor" }, { - "href": "http://heller-bauch.example/lina", - "label": "Glaurung" + "href": "http://roob.example/zandra_mills", + "label": "Hyarmendacil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "7028d64c-ac07-4833-af5b-8fdb75aa9ace", + "rule_group_id": "53bddd4e-f2e3-456f-ad0f-426a19eda786", "type": "rule" }, { - "id": "252d32bb-a437-445a-8eff-488c851c08ee", - "ref_id": "xccdf_org.ssgproject.content_rule_e6b10af4b61e5de18decf7862e3da32a", - "title": "Non voluptas omnis iste.", - "rationale": "Enim fuga tenetur. Aperiam voluptatem iure. Rem deserunt sed.", - "description": "Aut quia doloremque. Atque cupiditate amet. Architecto quisquam optio.", - "severity": "medium", - "precedence": 1823, + "id": "c932b341-30e6-4e4f-84ac-d75c22daedee", + "ref_id": "xccdf_org.ssgproject.content_rule_b6cca00eef5a50d0fcc3c30d636c009f", + "title": "Provident est accusamus voluptatibus.", + "rationale": "Eum et voluptates. Quae deleniti et. Nisi voluptatum molestiae.", + "description": "Est enim at. Sint suscipit qui. Voluptas nulla adipisci.", + "severity": "low", + "precedence": 3880, "identifier": { - "href": "http://corkery-kreiger.test/carmelo", - "label": "Amaranth Brandybuck" + "href": "http://glover-rowe.test/leonarda", + "label": "Galion" }, "references": [ { - "href": "http://wilderman.test/quinton_kutch", - "label": "Daisy Gardner" + "href": "http://koelpin.test/keeley", + "label": "Ebor" }, { - "href": "http://doyle.test/elijah", - "label": "Gálmód" + "href": "http://yost-braun.test/cristobal.connelly", + "label": "Maglor" }, { - "href": "http://walker-hane.test/talitha", - "label": "Aerin" + "href": "http://hammes-pfannerstill.example/debera", + "label": "Maedhros" }, { - "href": "http://lang.example/kareen.schaden", - "label": "Valandil" + "href": "http://dooley.test/brittni.kling", + "label": "Durin's Bane" }, { - "href": "http://morar-bradtke.test/merrill", - "label": "Tar-Aldarion" + "href": "http://marquardt.test/elsie", + "label": "Nurwë" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "16f0100c-5c14-4036-8ad4-8e902e33c026", + "rule_group_id": "b3b5154b-2e56-46a1-b6ba-e6fcddba186d", "type": "rule" }, { - "id": "43a47257-e302-49c4-9579-26005bcce5b9", - "ref_id": "xccdf_org.ssgproject.content_rule_1c5ee35bfbfb4b96c0b8158f4e57a245", - "title": "Quos expedita voluptate cum.", - "rationale": "Et accusamus rerum. Minima dolor qui. Voluptatem ratione tempore.", - "description": "Nisi nulla maiores. Neque non deserunt. Consequatur dolorem esse.", + "id": "9ab41a76-aae1-4875-b0d9-1b35654b5436", + "ref_id": "xccdf_org.ssgproject.content_rule_ba9bd222c34ae276f18a95e9b6df85ef", + "title": "Voluptatem eaque officiis veritatis.", + "rationale": "Molestiae delectus perspiciatis. Ut qui fugit. Nulla magnam veniam.", + "description": "Expedita blanditiis hic. Aut est vitae. Consequatur cupiditate nemo.", "severity": "low", - "precedence": 2519, + "precedence": 3915, "identifier": { - "href": "http://nader.example/buster.shanahan", - "label": "Bruno Bracegirdle" + "href": "http://becker-lindgren.example/marc.kulas", + "label": "Magor" }, "references": [ { - "href": "http://sporer-schoen.test/shelton", - "label": "Lúthien" + "href": "http://armstrong.example/thad_dietrich", + "label": "Baran" }, { - "href": "http://mcclure.test/elma", - "label": "Gárulf" + "href": "http://bailey.test/harry", + "label": "Leaflock" }, { - "href": "http://crooks.test/jody.bashirian", - "label": "Daisy Baggins" + "href": "http://moen-koss.test/lacy_adams", + "label": "Otto Boffin" }, { - "href": "http://predovic.example/junior_schinner", - "label": "Algund" + "href": "http://mosciski-pacocha.test/adina.mohr", + "label": "Snaga" }, { - "href": "http://russel.test/bertha", - "label": "Mahtan" + "href": "http://keebler.test/anneliese", + "label": "Dinodas Brandybuck" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "f1d5acc4-35ed-474a-8fd8-365bd47fb077", + "rule_group_id": "7bc8f6e4-b16f-4862-b746-30e2e883dadc", "type": "rule" } ], @@ -4251,9 +4251,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/920a5473-e345-4993-b778-efb88b44d486/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/920a5473-e345-4993-b778-efb88b44d486/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/920a5473-e345-4993-b778-efb88b44d486/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/85d82063-b8f6-4e03-966c-01ab17f2a19c/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/85d82063-b8f6-4e03-966c-01ab17f2a19c/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/85d82063-b8f6-4e03-966c-01ab17f2a19c/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -4350,7 +4350,7 @@ "tags": [ "Content" ], - "description": "Returns a Rule", + "description": "Retrieve a specific rule from a specific security guide.", "operationId": "Rule", "responses": { "200": { @@ -4361,42 +4361,42 @@ "Returns a Rule": { "value": { "data": { - "id": "6b458ae7-21d9-4a38-981c-a745b094df7b", - "ref_id": "xccdf_org.ssgproject.content_rule_3fa17287fd97c7d9003cd13f1acd6b62", - "title": "Illo temporibus quam eius.", - "rationale": "Adipisci perferendis non. Aut repellat ratione. Rerum placeat omnis.", - "description": "Amet numquam harum. Est ducimus nemo. Quaerat tempora aspernatur.", + "id": "152c200a-90a8-45e1-9110-060732745a3b", + "ref_id": "xccdf_org.ssgproject.content_rule_394fc1e5c494c13371a68beb10452037", + "title": "Quisquam quia in ipsum.", + "rationale": "Rerum necessitatibus distinctio. Possimus debitis architecto. Commodi et dolores.", + "description": "Veritatis facilis animi. Deleniti maxime eum. Perferendis modi praesentium.", "severity": "high", - "precedence": 4865, + "precedence": 1427, "identifier": { - "href": "http://erdman.example/juan_marvin", - "label": "Nellas" + "href": "http://langworth-crist.test/fidel.orn", + "label": "Valandil" }, "references": [ { - "href": "http://murazik.test/blake_schinner", - "label": "Gwaihir" + "href": "http://macgyver.example/adolfo", + "label": "Aldor" }, { - "href": "http://murphy.test/jordan", - "label": "Haleth" + "href": "http://runte-kihn.example/paige.kovacek", + "label": "Gorlim" }, { - "href": "http://veum.example/gary", - "label": "Turambar" + "href": "http://kassulke.test/maurine", + "label": "Berylla Boffin" }, { - "href": "http://ankunding-blanda.test/weston.crooks", - "label": "Sangahyando" + "href": "http://satterfield.example/coralie_trantow", + "label": "Tatië" }, { - "href": "http://keeling.example/fermina", - "label": "Sangahyando" + "href": "http://ankunding.test/leontine_macejkovic", + "label": "Jessamine Boffin" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "766b3e31-4706-4e3f-9719-d4377c55fc23", + "rule_group_id": "3fbf879a-c529-4bb0-a251-6023c5af116a", "type": "rule" } }, @@ -4428,7 +4428,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID e5101581-c501-440c-bf40-7535a0bf220e" + "V2::Rule not found with ID 33a78ac2-cb10-4da2-913f-4878c3128bb2" ] }, "summary": "", @@ -4542,7 +4542,7 @@ "tags": [ "Content" ], - "description": "Lists Rules assigned to a Profile", + "description": "Retrieve a list of all security guide rules for a specific profile.", "operationId": "ProfileRules", "responses": { "200": { @@ -4554,402 +4554,402 @@ "value": { "data": [ { - "id": "029de7be-c67d-4308-99f2-9a6644e1919f", - "ref_id": "xccdf_org.ssgproject.content_rule_e364f2c49e6b95b6ef96619ead7453af", - "title": "Aut tenetur occaecati veritatis.", - "rationale": "Pariatur qui porro. Mollitia qui est. Veniam eos et.", - "description": "Maiores excepturi necessitatibus. In qui vitae. Adipisci voluptates inventore.", - "severity": "high", - "precedence": 9206, + "id": "0a5acad8-353e-4ea7-848a-e7f5f1d7d8aa", + "ref_id": "xccdf_org.ssgproject.content_rule_ae5bbef52fb6cf9c21895304fa906e99", + "title": "Nisi amet eius velit.", + "rationale": "Nemo ratione vero. Est cum consequatur. Dignissimos et et.", + "description": "Qui hic commodi. Ut a qui. Minus atque molestiae.", + "severity": "medium", + "precedence": 5870, "identifier": { - "href": "http://beier.example/monte_sauer", - "label": "Hildigrim Took" + "href": "http://moen.example/marcos", + "label": "Merimas Brandybuck" }, "references": [ { - "href": "http://kohler-beatty.test/logan.corwin", - "label": "Hob Hayward" + "href": "http://cruickshank.example/floretta.larkin", + "label": "Gilbarad" }, { - "href": "http://gerlach.example/otis", - "label": "Imlach" + "href": "http://kautzer.example/arturo", + "label": "Lúthien" }, { - "href": "http://turner.example/napoleon", - "label": "Háma" + "href": "http://trantow.example/carissa_herzog", + "label": "Beleth" }, { - "href": "http://mcglynn.example/fran", - "label": "Belen" + "href": "http://rau-walsh.test/matilde.krajcik", + "label": "Berelach" }, { - "href": "http://hahn-wyman.test/jeannette", - "label": "Mauhúr" + "href": "http://feest-von.test/yong", + "label": "Wídfara" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "b858a0eb-3ef1-4434-93fb-01e3d12dd1a6", + "rule_group_id": "fcc7e51b-b442-49cf-970d-bd245e419cf6", "type": "rule", "remediation_issue_id": null }, { - "id": "0a0de1ad-8668-4264-bead-95fd0b17368f", - "ref_id": "xccdf_org.ssgproject.content_rule_0c997a00c0336a1f33ffa27b4fa048c7", - "title": "Facere et saepe voluptates.", - "rationale": "Vitae at voluptatem. Voluptas dolore a. Dolor at et.", - "description": "Sed consequatur sapiente. Consequatur ipsa voluptatibus. Beatae architecto accusantium.", - "severity": "high", - "precedence": 9075, + "id": "1c8ea73b-f716-41f0-8e4c-9a440e25ac8a", + "ref_id": "xccdf_org.ssgproject.content_rule_d837f17730c26a42c638dddb09da3b53", + "title": "Libero aperiam sit officiis.", + "rationale": "Vitae ab saepe. Maiores commodi dolor. Adipisci occaecati vel.", + "description": "Non eum assumenda. Consequuntur laboriosam reiciendis. Nostrum libero molestiae.", + "severity": "low", + "precedence": 7352, "identifier": { - "href": "http://orn.test/mary_schamberger", - "label": "Nazgûl" + "href": "http://abshire.example/hiram_will", + "label": "Gerda Boffin" }, "references": [ { - "href": "http://halvorson-thompson.example/neomi_toy", - "label": "Ungoliant" + "href": "http://ferry.test/tena_sawayn", + "label": "Calmacil" }, { - "href": "http://hauck-stoltenberg.example/bryon.botsford", - "label": "Goldilocks Gardner" + "href": "http://powlowski.test/giuseppina.trantow", + "label": "Orgulas Brandybuck" }, { - "href": "http://willms.example/roman", - "label": "Imin" + "href": "http://metz.example/sparkle", + "label": "Merry Gardner" }, { - "href": "http://orn-kihn.test/christena", - "label": "Huan" + "href": "http://towne-kozey.example/candida", + "label": "Gandalf" }, { - "href": "http://greenfelder.example/arturo_reichel", - "label": "Ferdibrand Took" + "href": "http://nader.test/jerrod", + "label": "Belba Baggins" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4514f301-4f97-4f80-8bfa-01b3fe4f037f", + "rule_group_id": "48d64f27-5854-4e36-acf1-c4b5ebc2a159", "type": "rule", "remediation_issue_id": null }, { - "id": "17afb7e8-0158-4d29-9a2c-ce40d9dbc56a", - "ref_id": "xccdf_org.ssgproject.content_rule_17aa2959c46f0d704568d3af439083e8", - "title": "Nihil aut consectetur expedita.", - "rationale": "Aliquid quisquam fugit. Natus et modi. Maiores provident beatae.", - "description": "Sint dolorem aut. Assumenda nihil aut. Odio temporibus maiores.", + "id": "26203892-7287-47d3-a03a-9109583858d5", + "ref_id": "xccdf_org.ssgproject.content_rule_6bc2bdb176ad5b667df1520c6bf0c797", + "title": "Ut ea dolor saepe.", + "rationale": "Quia quisquam velit. Odit perferendis velit. Accusantium nam nihil.", + "description": "Mollitia sint culpa. Quibusdam consectetur illo. Aut sit ut.", "severity": "high", - "precedence": 8167, + "precedence": 8225, "identifier": { - "href": "http://reichel-jacobson.test/romana", - "label": "Arassuil" + "href": "http://goyette.test/stan", + "label": "Hending" }, "references": [ { - "href": "http://stehr.test/patience", - "label": "Fingolfin" + "href": "http://dicki-hills.example/dirk", + "label": "Hob Hayward" }, { - "href": "http://bernhard.example/long", - "label": "Forthwini" + "href": "http://dickens-fahey.example/merlyn_larkin", + "label": "Drogo Baggins" }, { - "href": "http://gulgowski-beer.test/gerald.turner", - "label": "Olo Proudfoot" + "href": "http://weissnat.example/gretta", + "label": "Falco Chubb-Baggins" }, { - "href": "http://little.example/earlie.spencer", - "label": "Eöl" + "href": "http://wyman-reinger.example/landon", + "label": "Gwaihir" }, { - "href": "http://ruecker.test/angila_funk", - "label": "Ar-Zimrathôn" + "href": "http://krajcik-lesch.example/barrett", + "label": "Nessanië" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "2f3f1e4c-be46-487b-9858-cf553da60509", + "rule_group_id": "1dc604dc-4829-4c00-8d2a-0aa5796a4e3d", "type": "rule", "remediation_issue_id": null }, { - "id": "2582aecb-f0fd-4723-b714-d307c20401db", - "ref_id": "xccdf_org.ssgproject.content_rule_6c114e7c664a2d5fadf99fcbd38f2ad6", - "title": "Velit dolor natus ut.", - "rationale": "Expedita explicabo fuga. Magnam eum non. Perferendis ut iste.", - "description": "Est autem suscipit. Labore nobis et. Illo quasi sit.", - "severity": "high", - "precedence": 3350, + "id": "3749991c-0d63-4250-abd6-0dafd0cfae20", + "ref_id": "xccdf_org.ssgproject.content_rule_a969cd59ca08e77733bee8059d3d9f3d", + "title": "Assumenda aliquam iusto odit.", + "rationale": "Qui voluptate facere. Vitae perspiciatis et. Et est sit.", + "description": "Rerum voluptas deserunt. Qui quod voluptatem. Nostrum aut reprehenderit.", + "severity": "medium", + "precedence": 3524, "identifier": { - "href": "http://kuhn-oconnell.example/elton_bauch", - "label": "Ufthak" + "href": "http://jakubowski-rempel.test/ike", + "label": "Éothain" }, "references": [ { - "href": "http://klein.example/leanora_schinner", - "label": "Frár" + "href": "http://treutel.example/rina.mertz", + "label": "Ulwarth" }, { - "href": "http://cremin.example/terrell", - "label": "Aldor" + "href": "http://bartoletti.example/davis_schmitt", + "label": "Herendil" }, { - "href": "http://kub-fay.example/leisha.beier", - "label": "Rudigar Bolger" + "href": "http://bauch-okon.example/gennie_fay", + "label": "Arminas" }, { - "href": "http://flatley-ratke.test/synthia_goyette", - "label": "Harding of the Hill" + "href": "http://gulgowski-ullrich.test/carrol.roberts", + "label": "Donnamira Took" }, { - "href": "http://bednar.example/katherine.nikolaus", - "label": "Daddy Twofoot" + "href": "http://bruen-bartell.test/tijuana", + "label": "Inziladûn" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "13c0f551-f89e-4316-97c8-089722f641e9", + "rule_group_id": "10473851-8f03-4c23-a02c-b65850f48c02", "type": "rule", "remediation_issue_id": null }, { - "id": "31eb215e-5f42-4bb5-be66-5a4600f82801", - "ref_id": "xccdf_org.ssgproject.content_rule_c5a857962fc8dd6927d5bf96daaf4ecb", - "title": "Ratione nulla vitae optio.", - "rationale": "Ullam quisquam id. Consequuntur voluptate dolore. Sapiente minus voluptatem.", - "description": "Quibusdam quia voluptatem. Dicta ut doloribus. Nesciunt nostrum exercitationem.", + "id": "3ed761ae-5b5a-4555-b98c-74b7d8771ed9", + "ref_id": "xccdf_org.ssgproject.content_rule_62653a932d1f6f3f2a966781f954336a", + "title": "Eum cupiditate ducimus tempora.", + "rationale": "Quibusdam consequatur possimus. Sit necessitatibus similique. Totam esse nesciunt.", + "description": "Saepe eum inventore. Ab accusamus enim. Debitis vel in.", "severity": "high", - "precedence": 5392, + "precedence": 5105, "identifier": { - "href": "http://johnston-wilkinson.test/willene.steuber", - "label": "Zimraphel" + "href": "http://konopelski.test/leora", + "label": "Thorin" }, "references": [ { - "href": "http://davis-rogahn.example/gisela", - "label": "Angbor" + "href": "http://sipes-considine.test/harold_stiedemann", + "label": "Harding of the Hill" }, { - "href": "http://welch-paucek.example/wes.roberts", - "label": "Calimehtar" + "href": "http://toy.test/raymond.robel", + "label": "Telchar" }, { - "href": "http://heathcote-fadel.test/gaynell", - "label": "Dori" + "href": "http://bogisich.example/eileen.dooley", + "label": "Helm" }, { - "href": "http://beier.test/tarah", - "label": "Pelendur" + "href": "http://gutkowski-kunde.test/theo.abbott", + "label": "Araphor" }, { - "href": "http://runte-dach.test/elise", - "label": "Ragnir" + "href": "http://friesen.test/carl", + "label": "Landroval" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "f670dc22-f936-4782-9a21-c1c85f592de6", + "rule_group_id": "d5419adf-04f4-458c-b18b-269188fba13a", "type": "rule", "remediation_issue_id": null }, { - "id": "3de01c44-8d02-47d5-b781-3215ee3ba83e", - "ref_id": "xccdf_org.ssgproject.content_rule_b974557d03fa92bced5feaa1e7770b37", - "title": "Et eum quae ipsam.", - "rationale": "Corrupti est et. Similique ab rerum. Rerum aut asperiores.", - "description": "Laboriosam sint ipsum. Commodi nam dolores. Sit qui delectus.", + "id": "46f1414c-b17b-4a0e-84d0-c100dce6930e", + "ref_id": "xccdf_org.ssgproject.content_rule_48ed92cb834d8ea3b581669eb1fbe95d", + "title": "Commodi modi in eveniet.", + "rationale": "Aut eligendi qui. A ipsa animi. Ex tempora qui.", + "description": "Quos qui optio. Dolores accusamus rerum. Tempora dolore voluptas.", "severity": "medium", - "precedence": 280, + "precedence": 1583, "identifier": { - "href": "http://jaskolski.test/louis", - "label": "Atanatar" + "href": "http://erdman.example/hana_windler", + "label": "Hamfast Gardner" }, "references": [ { - "href": "http://kreiger.example/angel", - "label": "Donnamira Took" + "href": "http://shanahan.example/phil.howe", + "label": "Agathor" }, { - "href": "http://torphy.test/benita_dicki", - "label": "Iorlas" + "href": "http://huels-mosciski.test/cletus", + "label": "Otto Boffin" }, { - "href": "http://rempel-klocko.test/lilly_hagenes", - "label": "Tuor" + "href": "http://steuber.example/tanna", + "label": "Tar-Aldarion" }, { - "href": "http://dickens.example/erin", - "label": "Ungoliant" + "href": "http://greenfelder-dicki.example/reed_strosin", + "label": "Rowan" }, { - "href": "http://cassin.test/franklyn_gleichner", - "label": "Vardamir" + "href": "http://wintheiser-pacocha.example/jacques_ernser", + "label": "Finbor" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "b0eb382e-6fdd-4986-bc6c-0bf4d2214714", + "rule_group_id": "72aeef62-0eb5-483e-b415-f7d58534c0d7", "type": "rule", "remediation_issue_id": null }, { - "id": "424429aa-f084-41e8-8621-7269df4b2c27", - "ref_id": "xccdf_org.ssgproject.content_rule_65af1fcd46fdb4871d68d0e3a9308483", - "title": "Qui sed sint recusandae.", - "rationale": "Mollitia est expedita. Recusandae et velit. Non saepe eos.", - "description": "Nemo qui debitis. Doloremque similique maiores. Nihil esse inventore.", - "severity": "low", - "precedence": 7003, + "id": "54223f72-f475-42ee-b998-7cc687c3c1b0", + "ref_id": "xccdf_org.ssgproject.content_rule_a11727f611bd7051f54f29a89c8a35a4", + "title": "Dicta quia voluptates laudantium.", + "rationale": "Molestiae aut delectus. Ad iusto facere. Voluptates reiciendis tempora.", + "description": "Veniam nobis quae. Natus voluptatem recusandae. Est aut tenetur.", + "severity": "high", + "precedence": 2689, "identifier": { - "href": "http://paucek.test/stanley", - "label": "Goldberry" + "href": "http://murphy-breitenberg.example/milton", + "label": "Almarian" }, "references": [ { - "href": "http://metz.test/josefa", - "label": "Peregrin Took" + "href": "http://stoltenberg-waters.example/renay", + "label": "Mosco Burrows" }, { - "href": "http://smitham.example/chadwick", - "label": "Mallor" + "href": "http://kuhic.test/gudrun", + "label": "Hallacar" }, { - "href": "http://mohr-nienow.test/brian", - "label": "Hirluin" + "href": "http://rowe-schmeler.test/ninfa", + "label": "Vidumavi" }, { - "href": "http://mitchell.test/evelin.kub", - "label": "Robin Gardner" + "href": "http://bauch.example/dusty_mcglynn", + "label": "Celeborn" }, { - "href": "http://haag.test/piper", - "label": "Borin" + "href": "http://heidenreich.example/alisia", + "label": "Poldor" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "9224e152-447e-428a-978f-a8a7d1dba2b8", + "rule_group_id": "96fb7e2f-f5f2-4a9b-84a6-816986b1aea1", "type": "rule", "remediation_issue_id": null }, { - "id": "45078790-d106-49aa-bfb0-67ff3ac71188", - "ref_id": "xccdf_org.ssgproject.content_rule_453bf90786fce0473020e2af01610513", - "title": "Soluta corporis eum deleniti.", - "rationale": "Explicabo perspiciatis ab. Debitis sint quod. Inventore sed quia.", - "description": "Aut illum id. Suscipit vel reprehenderit. Doloremque qui praesentium.", - "severity": "low", - "precedence": 5407, + "id": "5f164ac1-f366-4037-912c-52a8e7ad653a", + "ref_id": "xccdf_org.ssgproject.content_rule_274800d52a423b3d5bc01d1a0de41343", + "title": "Quia quos et amet.", + "rationale": "Quis in sapiente. Blanditiis incidunt officia. Nihil commodi nam.", + "description": "Vel possimus neque. Non dolorem est. Consectetur dolores perferendis.", + "severity": "high", + "precedence": 7094, "identifier": { - "href": "http://bahringer.test/daisey.conn", - "label": "Erien" + "href": "http://harber.test/hong", + "label": "Iago Grubb" }, "references": [ { - "href": "http://schmeler.example/ronnie_hintz", - "label": "Dervorin" + "href": "http://walter.example/collen", + "label": "Nienor" }, { - "href": "http://hodkiewicz.test/ezekiel", - "label": "Îbal" + "href": "http://hilpert.example/colby_dubuque", + "label": "Grimbold" }, { - "href": "http://rodriguez.example/gary", - "label": "Aranwë" + "href": "http://schaefer-torp.test/delana", + "label": "Aranuir" }, { - "href": "http://boyle.test/alden_dooley", - "label": "Eärwen" + "href": "http://king-ankunding.example/arden", + "label": "Robin Smallburrow" }, { - "href": "http://leuschke-gibson.test/daniela", - "label": "Radbug" + "href": "http://pouros.test/kathyrn", + "label": "Tar-Aldarion" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "1b8b0452-7bbd-41f2-b81e-033a07ab0a5c", + "rule_group_id": "6083b4a9-bbeb-425c-8a96-0f6fe0b3ee44", "type": "rule", "remediation_issue_id": null }, { - "id": "45819c94-e6e0-4e2a-a1fb-3d2dccd751cb", - "ref_id": "xccdf_org.ssgproject.content_rule_aac2d354fd325e39bbcd772d99a587c5", - "title": "Et qui autem deleniti.", - "rationale": "Exercitationem aut consequuntur. Harum assumenda quia. Voluptatem quia fugit.", - "description": "Sed magnam ut. Praesentium alias eveniet. Voluptate laborum in.", + "id": "89633eb3-64a5-4568-b822-4d03565ace9f", + "ref_id": "xccdf_org.ssgproject.content_rule_c0dbbc48dcfe6916698c1babdc5e7715", + "title": "Sapiente recusandae iure fugiat.", + "rationale": "Minima voluptatem debitis. Dolorem quae velit. Consequatur maiores eos.", + "description": "Id veritatis amet. Voluptates labore autem. Assumenda hic est.", "severity": "medium", - "precedence": 1238, + "precedence": 2998, "identifier": { - "href": "http://dubuque-reilly.example/wilburn_predovic", - "label": "Finarfin" + "href": "http://sanford-oconner.test/trevor", + "label": "Belladonna Took" }, "references": [ { - "href": "http://schumm.test/howard", - "label": "Durin" + "href": "http://fadel.test/tonia.huel", + "label": "Morwë" }, { - "href": "http://effertz-strosin.example/stanford.daniel", - "label": "Celebrimbor" + "href": "http://hermann.test/renato", + "label": "Déorwine" }, { - "href": "http://macgyver-goldner.test/hai.rice", - "label": "Elanor Gardner" + "href": "http://boehm.test/jonelle", + "label": "Ondoher" }, { - "href": "http://reichert.example/wayne_langosh", - "label": "Baran" + "href": "http://ratke.example/hubert", + "label": "Brego" }, { - "href": "http://moen.test/elane", - "label": "Fingolfin" + "href": "http://jones.test/violeta", + "label": "Valandil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4f7f241e-1775-4625-a3c3-fa358f8d48b1", + "rule_group_id": "61685787-7ab2-403d-9695-b5c09c7510bd", "type": "rule", "remediation_issue_id": null }, { - "id": "55aedfdf-e58f-464c-9785-0f8747616d0e", - "ref_id": "xccdf_org.ssgproject.content_rule_9439eb38c7adf67c86e4793e52685694", - "title": "Culpa itaque saepe repellendus.", - "rationale": "Eaque beatae sit. Commodi quos dolor. Adipisci impedit qui.", - "description": "Quia voluptate harum. Sit atque in. Laudantium similique fugiat.", + "id": "8d63a426-af3f-450e-beb1-305dd1b47852", + "ref_id": "xccdf_org.ssgproject.content_rule_78e65d67cc39ad396cf8a16c59acf64b", + "title": "Qui aut eius veritatis.", + "rationale": "Libero magni nesciunt. Placeat qui facilis. Voluptatem harum ex.", + "description": "Maiores blanditiis cumque. Aliquid adipisci molestiae. Numquam architecto sit.", "severity": "low", - "precedence": 2869, + "precedence": 345, "identifier": { - "href": "http://roob.example/asley", - "label": "Tal-Elmar" + "href": "http://lubowitz-terry.example/jame", + "label": "Azaghâl" }, "references": [ { - "href": "http://harvey.test/norma.weissnat", - "label": "Adelard Took" + "href": "http://ratke-spinka.test/terence_nitzsche", + "label": "Meneldor" }, { - "href": "http://nikolaus.example/bridgette_schultz", - "label": "Hildibrand Took" + "href": "http://feest-larkin.example/edmund", + "label": "Beril" }, { - "href": "http://leannon.example/roderick.mcdermott", - "label": "Dora Baggins" + "href": "http://schamberger-carroll.test/vicenta", + "label": "Tata" }, { - "href": "http://hilpert-kozey.example/shannon", - "label": "Ingwion" + "href": "http://mcclure-kilback.test/stan", + "label": "Menegilda Goold" }, { - "href": "http://nikolaus-keeling.test/fernando", - "label": "Roäc" + "href": "http://murazik.test/santo", + "label": "Aldamir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "e73b47fe-fe7f-4feb-abde-e8cd22920dc1", + "rule_group_id": "f51e160f-59c7-4659-b05f-ec6b25a30261", "type": "rule", "remediation_issue_id": null } @@ -4960,9 +4960,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/4ef7cfa3-2772-453f-b477-e0b0230a46b3/profiles/b12be9c6-b492-4dec-9838-b20e88dec49f/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/4ef7cfa3-2772-453f-b477-e0b0230a46b3/profiles/b12be9c6-b492-4dec-9838-b20e88dec49f/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/4ef7cfa3-2772-453f-b477-e0b0230a46b3/profiles/b12be9c6-b492-4dec-9838-b20e88dec49f/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/4091b39f-cd62-497b-a72f-a22ded6618f5/profiles/cec8188c-1f6f-4e8c-8190-19bb2057a198/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/4091b39f-cd62-497b-a72f-a22ded6618f5/profiles/cec8188c-1f6f-4e8c-8190-19bb2057a198/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/4091b39f-cd62-497b-a72f-a22ded6618f5/profiles/cec8188c-1f6f-4e8c-8190-19bb2057a198/rules?limit=10&offset=10" } }, "summary": "", @@ -4972,402 +4972,402 @@ "value": { "data": [ { - "id": "55294b15-ce94-43af-b26f-6d18f37cba0b", - "ref_id": "xccdf_org.ssgproject.content_rule_69721f9c626cbf84d1c3a45223764960", - "title": "Illo facere voluptatem ratione.", - "rationale": "Delectus aut autem. Numquam voluptatem et. Et consequatur at.", - "description": "Doloremque incidunt vel. Necessitatibus illo sint. Sunt iste dolorem.", - "severity": "low", - "precedence": 20, + "id": "7bdc6e5a-063a-42d8-a475-49c5fb33282b", + "ref_id": "xccdf_org.ssgproject.content_rule_54b93a590699fad3fc2a17900b87c1e3", + "title": "Nesciunt inventore itaque eos.", + "rationale": "Consectetur eveniet perferendis. Voluptatem sit aliquam. Officia vero similique.", + "description": "Optio magnam quia. Doloribus ut quia. Magni id sequi.", + "severity": "medium", + "precedence": 112, "identifier": { - "href": "http://okuneva.example/lawanda.boyer", - "label": "Gelmir" + "href": "http://lehner.test/kandace", + "label": "May Gamgee" }, "references": [ { - "href": "http://yost.test/caprice_greenholt", - "label": "Meriadoc Brandybuck" + "href": "http://mraz.test/sandra", + "label": "Isengar Took" }, { - "href": "http://ziemann.test/richard.welch", - "label": "Bandobras Took" + "href": "http://ritchie.test/chance", + "label": "Lavender Grubb" }, { - "href": "http://baumbach-bergstrom.example/belen", - "label": "Tar-Palantir" + "href": "http://prohaska.example/luke.cartwright", + "label": "Irolas" }, { - "href": "http://schmeler.test/tyisha_wilkinson", - "label": "Ulfang" + "href": "http://towne-prosacco.test/dwain", + "label": "Pott the Mayor" }, { - "href": "http://blick-hahn.example/tamie", - "label": "Dora Baggins" + "href": "http://kuvalis-murphy.test/thuy", + "label": "Ancalagon" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "1fcf7dc5-235b-4122-aee4-56f73aeac573", + "rule_group_id": "d27256ad-06ba-4a1c-b9d9-df3981be27ef", "type": "rule", "remediation_issue_id": null }, { - "id": "3a1e09e6-c7a6-40ee-8239-01ede2da6f8e", - "ref_id": "xccdf_org.ssgproject.content_rule_5b9b3aa0976fc983919690cc52fe0ffe", - "title": "Laboriosam incidunt in deleniti.", - "rationale": "Perspiciatis quia libero. Ut quidem facilis. Laudantium error veniam.", - "description": "Voluptatibus mollitia nobis. Culpa iste magni. Praesentium sit iste.", - "severity": "high", - "precedence": 149, + "id": "04e41d23-cfee-4cea-8689-f77c295b60f3", + "ref_id": "xccdf_org.ssgproject.content_rule_2f72d92c1f62d45a629435ef9d721f7f", + "title": "Qui aut qui ab.", + "rationale": "Id qui occaecati. Dolorem et numquam. Distinctio dolorem doloremque.", + "description": "Iure placeat aut. Natus officiis qui. Soluta in tempore.", + "severity": "medium", + "precedence": 521, "identifier": { - "href": "http://goodwin.example/lakesha.mosciski", - "label": "Gil-galad" + "href": "http://muller.test/marcelino_treutel", + "label": "Balbo Baggins" }, "references": [ { - "href": "http://bauch-balistreri.test/dawna.renner", - "label": "Farmer Cotton" + "href": "http://kessler-runte.test/katherin", + "label": "Isildur" }, { - "href": "http://batz.test/yuonne_willms", - "label": "Ar-Zimrathôn" + "href": "http://hegmann.example/ignacio", + "label": "Mîm" }, { - "href": "http://connelly-lakin.example/shamika", - "label": "Tata" + "href": "http://pagac.example/irish", + "label": "Holdwine" }, { - "href": "http://marvin-farrell.example/natacha", - "label": "Hildigrim Took" + "href": "http://baumbach.test/gussie", + "label": "Arador" }, { - "href": "http://adams.example/kieth", - "label": "Briffo Boffin" + "href": "http://dooley-nitzsche.test/joelle.borer", + "label": "Linda Baggins" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "6443421b-681c-4e61-9fce-700cef79f6b4", + "rule_group_id": "d50b2246-c0f8-47f0-b19f-7d3e4f3ac10c", "type": "rule", "remediation_issue_id": null }, { - "id": "dd6afc72-86fd-4188-9249-21c6d0930652", - "ref_id": "xccdf_org.ssgproject.content_rule_53699c140ef91079ff2194276c24f2a4", - "title": "Quidem excepturi neque aut.", - "rationale": "Quia laboriosam sequi. Eaque sequi fuga. Placeat eaque praesentium.", - "description": "Deserunt ut ut. Neque ducimus corporis. Iste ut et.", - "severity": "high", - "precedence": 620, + "id": "92084661-6054-4cbf-8a4f-5a091abc073c", + "ref_id": "xccdf_org.ssgproject.content_rule_99a59a815f35910d057ccdf8cf5a0b29", + "title": "Optio dolorem voluptatem voluptatem.", + "rationale": "Porro minus autem. Veritatis neque qui. Ut laboriosam porro.", + "description": "Sit omnis inventore. Fuga reprehenderit sit. Vitae dignissimos laborum.", + "severity": "low", + "precedence": 771, "identifier": { - "href": "http://fay-hoeger.example/noel", - "label": "Sapphira Brockhouse" + "href": "http://zulauf-jacobi.test/shawana", + "label": "Faramir Took" }, "references": [ { - "href": "http://hartmann-mante.example/vernell", - "label": "Ulfast" + "href": "http://mcglynn-crona.example/enoch_crona", + "label": "Merry Gardner" }, { - "href": "http://wisozk-veum.example/carletta_wisozk", - "label": "Girion" + "href": "http://stoltenberg-breitenberg.example/dennise", + "label": "Magor" }, { - "href": "http://schroeder.example/tammi_terry", - "label": "Elboron" + "href": "http://cremin-kuhic.example/bambi", + "label": "Tar-Ardamin" }, { - "href": "http://roob.example/trey_sipes", - "label": "Cora Goodbody" + "href": "http://krajcik.example/adan", + "label": "Angrim" }, { - "href": "http://dietrich.test/max", - "label": "Ar-Zimrathôn" + "href": "http://bruen-gutmann.test/lasandra", + "label": "Oromendil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "23b1f143-6609-4c41-a5e8-6c928d211181", + "rule_group_id": "de64a71c-dc8d-4edd-841e-5cc96a4f5be0", "type": "rule", "remediation_issue_id": null }, { - "id": "c181fe8c-d38d-4d48-8927-31dad0da9b0c", - "ref_id": "xccdf_org.ssgproject.content_rule_226c8b9cd84d8b605d8fb7073efd773d", - "title": "Autem et quibusdam et.", - "rationale": "Aut tempora ut. Assumenda accusamus voluptas. Hic sunt ut.", - "description": "Qui qui inventore. Vero at consequatur. Rerum ratione ea.", + "id": "00bda511-e7c3-4d1b-a799-f6731f28be86", + "ref_id": "xccdf_org.ssgproject.content_rule_d4e66ba7fd23fb3dbc1ed3f3f19d4d55", + "title": "Dicta rerum expedita et.", + "rationale": "Eligendi voluptatem placeat. Laboriosam quasi pariatur. Magnam qui eos.", + "description": "Et quis mollitia. Aspernatur alias assumenda. Odio corrupti illum.", "severity": "low", - "precedence": 643, + "precedence": 1004, "identifier": { - "href": "http://deckow.example/fernando.klein", - "label": "Bowman Cotton" + "href": "http://wyman.test/pablo", + "label": "Théodred" }, "references": [ { - "href": "http://marks-heathcote.example/rosenda_dare", - "label": "Shagram" + "href": "http://legros-langosh.test/janae.johns", + "label": "Cottar" }, { - "href": "http://dare.example/rod", - "label": "Cora Goodbody" + "href": "http://dickinson-fritsch.test/gregg_jakubowski", + "label": "Elros" }, { - "href": "http://jacobs.example/earl_adams", - "label": "Malva Headstrong" + "href": "http://will-feest.example/kristi", + "label": "Tanta Hornblower" }, { - "href": "http://harber.test/neil", - "label": "Bucca of the Marish" + "href": "http://schumm-streich.example/sherice", + "label": "Belecthor" }, { - "href": "http://renner.test/gregorio.bauch", - "label": "Mrs. Maggot" + "href": "http://bernhard.example/candance", + "label": "Tar-Palantir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "37e0907e-0077-47c3-bc81-6da402ab2d32", + "rule_group_id": "de4c733c-fa61-43ba-84f6-6b8402ac2d1c", "type": "rule", "remediation_issue_id": null }, { - "id": "1ebab747-d3d8-4662-b04d-c64f5d150880", - "ref_id": "xccdf_org.ssgproject.content_rule_0af3e2cbaaa00c827e9da9bb91e0b91f", - "title": "Vitae ducimus exercitationem in.", - "rationale": "Quia exercitationem enim. Pariatur velit ut. Sit vel qui.", - "description": "Dicta facilis amet. Aliquid explicabo consequatur. Facere omnis illum.", - "severity": "medium", - "precedence": 722, + "id": "e328432a-ae12-4dd9-8d79-ae8ba3c291e5", + "ref_id": "xccdf_org.ssgproject.content_rule_6169c61ba34be86c9c35d17ef7bca25c", + "title": "Et maiores non consequatur.", + "rationale": "Natus molestiae pariatur. Et itaque ut. Ut vitae doloribus.", + "description": "Dolorem ut qui. Veritatis ab quia. Incidunt voluptatum dolores.", + "severity": "low", + "precedence": 2479, "identifier": { - "href": "http://mohr.example/frederica", - "label": "Rowan" + "href": "http://kovacek-kuvalis.test/leo", + "label": "Egalmoth" }, "references": [ { - "href": "http://langosh.test/kurtis.haley", - "label": "Prisca Baggins" + "href": "http://walter-mraz.test/courtney_west", + "label": "Orleg" }, { - "href": "http://hagenes.test/irmgard", - "label": "Brandir" + "href": "http://corkery-hyatt.test/boyd", + "label": "Angrim" }, { - "href": "http://roob.example/marva", - "label": "Frár" + "href": "http://hackett-conn.test/wayne", + "label": "Tar-Ancalimon" }, { - "href": "http://kris-schamberger.example/mitchell.carter", - "label": "Ghân-buri-Ghân" + "href": "http://bednar-ernser.example/jimmy", + "label": "Halfred Gamgee" }, { - "href": "http://cole-kunze.test/broderick_crist", - "label": "Mîm" + "href": "http://morissette.test/myrtie", + "label": "Herugar Bolger" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "95f8bc44-8d45-44f6-bd6b-2376e558f470", + "rule_group_id": "32989a93-5bf0-49fb-af74-95b62325a937", "type": "rule", "remediation_issue_id": null }, { - "id": "c5e0c4d3-fd2a-4d78-99cc-033fe81384c7", - "ref_id": "xccdf_org.ssgproject.content_rule_521e5caed09978fa4d9c8953e7044fa1", - "title": "Sit saepe nisi harum.", - "rationale": "Architecto dolor aut. Nesciunt sit perspiciatis. Repudiandae ad doloribus.", - "description": "Placeat dolor delectus. Enim soluta quo. Ea asperiores reiciendis.", - "severity": "low", - "precedence": 843, + "id": "7ea5b1d2-8880-4e26-990a-b0ad3eec2fd8", + "ref_id": "xccdf_org.ssgproject.content_rule_e28498cb988f1205256f0a521813fb10", + "title": "Alias rem voluptatem suscipit.", + "rationale": "Saepe voluptatem sed. Esse qui est. Iure ea sequi.", + "description": "Sit sunt maxime. Commodi qui atque. Eos et beatae.", + "severity": "high", + "precedence": 2873, "identifier": { - "href": "http://lindgren.test/jacinto", - "label": "Primrose Boffin" + "href": "http://dicki-grimes.example/oliver", + "label": "Eärendil" }, "references": [ { - "href": "http://marvin-ruecker.test/luke_gleichner", - "label": "Girion" + "href": "http://flatley.example/lavenia_skiles", + "label": "Flambard Took" }, { - "href": "http://franecki.example/elaine.kutch", - "label": "Tar-Atanamir" + "href": "http://sauer.example/genoveva.donnelly", + "label": "Bucca of the Marish" }, { - "href": "http://yundt.example/micheal_sawayn", - "label": "Rúmil" + "href": "http://ondricka.example/nestor", + "label": "Golasgil" }, { - "href": "http://lehner.example/sanora_vandervort", - "label": "Bolg" + "href": "http://okeefe.example/lilliam.koepp", + "label": "Maedhros" }, { - "href": "http://mayer.example/angelena.kuphal", - "label": "Rudolph Bolger" + "href": "http://lesch.example/ezra_stracke", + "label": "Folco Burrowes" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "17ba29c5-659a-40d6-b57d-a94fc4323fdc", + "rule_group_id": "f6e1778b-5899-4c82-aba0-9715c138fc3b", "type": "rule", "remediation_issue_id": null }, { - "id": "b15b1846-6fdf-4f1f-a410-112dd3e4c81a", - "ref_id": "xccdf_org.ssgproject.content_rule_df9ac6b603c9c001f4d340b7ded77ee9", - "title": "Velit sequi recusandae labore.", - "rationale": "Officiis et esse. Odit corrupti sed. Quam aliquid saepe.", - "description": "In ut sequi. Ullam nobis consectetur. Voluptas quo quisquam.", + "id": "477d8336-b66c-4174-83bf-9e80bf2077dc", + "ref_id": "xccdf_org.ssgproject.content_rule_d7c6870e4de8f5dc242de86935c66a99", + "title": "Quia inventore est suscipit.", + "rationale": "Voluptatem voluptatem maxime. Repudiandae voluptas ratione. Rerum neque consequatur.", + "description": "Natus occaecati et. Molestiae ut vitae. Et nisi dolorum.", "severity": "low", - "precedence": 1084, + "precedence": 2955, "identifier": { - "href": "http://heller.example/louvenia.okon", - "label": "Radhruin" + "href": "http://auer.example/aleen", + "label": "Findis" }, "references": [ { - "href": "http://thiel.example/marlon_gorczany", - "label": "Thráin" + "href": "http://lebsack.test/ahmad_yundt", + "label": "Mogru" }, { - "href": "http://schaden-parisian.example/michiko", - "label": "Ponto Baggins" + "href": "http://damore-ruecker.example/bonnie.klocko", + "label": "Tar-Anducal" }, { - "href": "http://heaney.test/reed.johnson", - "label": "Ted Sandyman" + "href": "http://hoeger.test/catherine", + "label": "Meneldor" }, { - "href": "http://feest.test/hipolito", - "label": "Bell Goodchild" + "href": "http://becker.example/jaye_ziemann", + "label": "Finwë" }, { - "href": "http://corkery.test/cole", - "label": "Avranc" + "href": "http://yost.example/javier", + "label": "Malva Headstrong" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "54b2703c-9125-405a-a323-c39048526c7c", + "rule_group_id": "cc7a62f2-593a-423a-b9ca-efc2cbff5851", "type": "rule", "remediation_issue_id": null }, { - "id": "bfa66237-08ae-47c9-81c4-b8b396ff2fd9", - "ref_id": "xccdf_org.ssgproject.content_rule_85e98cbcfde650fc1296b296fb5576c7", - "title": "Nulla unde minima ut.", - "rationale": "Iure optio quia. Necessitatibus minus voluptatem. Quae quas aut.", - "description": "Sed libero iusto. Commodi tempora ducimus. A impedit omnis.", - "severity": "medium", - "precedence": 1255, + "id": "29399ef6-2869-4b19-8d0e-e2810ac37d32", + "ref_id": "xccdf_org.ssgproject.content_rule_111d88a72138e1b785abb32288a479ac", + "title": "Quod sunt perferendis accusamus.", + "rationale": "Architecto et quia. Molestiae eveniet minima. Assumenda sapiente sint.", + "description": "Doloremque voluptatem rerum. Repellat voluptas numquam. Quia cumque molestias.", + "severity": "high", + "precedence": 3319, "identifier": { - "href": "http://dibbert-leffler.example/basilia.marks", - "label": "Saradoc Brandybuck" + "href": "http://rowe-cole.example/duane", + "label": "Holman Cotton" }, "references": [ { - "href": "http://douglas.example/gina.hilpert", - "label": "Arahad" + "href": "http://parker.test/johnathan.schuster", + "label": "Blodren" }, { - "href": "http://stehr-pagac.example/elmer", - "label": "Uldor" + "href": "http://leuschke-ondricka.test/thomasena", + "label": "Arantar" }, { - "href": "http://kunze.example/tiffany", - "label": "Doderic Brandybuck" + "href": "http://funk.test/coleen", + "label": "Peeping Jack" }, { - "href": "http://rodriguez-medhurst.example/wendell", - "label": "Tar-Minastir" + "href": "http://bins.example/cody", + "label": "Halfred Greenhand" }, { - "href": "http://harvey.example/serafina", - "label": "Fastolph Bolger" + "href": "http://waelchi-lynch.test/chan_cole", + "label": "Fingon" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "0940e72f-f412-4e0a-9133-b5bea9b1646d", + "rule_group_id": "db463c50-e826-42be-8682-538d2892a7cd", "type": "rule", "remediation_issue_id": null }, { - "id": "05c1f552-82c6-49f0-bd0b-b8d60c9f54d9", - "ref_id": "xccdf_org.ssgproject.content_rule_6690ce34d4ab7ab4987a4132e5f1496e", - "title": "Quisquam eaque consequuntur sit.", - "rationale": "Commodi et dignissimos. Consequuntur et quia. Exercitationem debitis sed.", - "description": "Dignissimos cumque adipisci. Explicabo suscipit dicta. Perferendis ratione vitae.", + "id": "c369c24d-ac69-40b6-877b-6cecdb884d23", + "ref_id": "xccdf_org.ssgproject.content_rule_0db8f04583b13e32d08fafeab58fc81d", + "title": "Ut neque ea sapiente.", + "rationale": "Et ullam et. Et quisquam accusamus. Delectus labore vero.", + "description": "Consequatur temporibus cumque. Voluptates et id. Est et aut.", "severity": "low", - "precedence": 1503, + "precedence": 3726, "identifier": { - "href": "http://jacobson.test/darrin", - "label": "Almáriel" + "href": "http://langworth.example/maire", + "label": "Rowan" }, "references": [ { - "href": "http://auer.test/filomena", - "label": "Malva Headstrong" + "href": "http://ondricka.example/melvin", + "label": "Hathaldir" }, { - "href": "http://osinski.example/angeline", - "label": "Mablung" + "href": "http://sporer.example/roma.barton", + "label": "Arassuil" }, { - "href": "http://volkman.example/lawerence.strosin", - "label": "Milo Burrows" + "href": "http://brakus.example/aline", + "label": "Turambar" }, { - "href": "http://crooks.example/latesha", - "label": "Thráin" + "href": "http://vonrueden.test/jamie", + "label": "Briffo Boffin" }, { - "href": "http://collins.test/carleen.will", - "label": "Lindissë" + "href": "http://treutel.test/irma_langworth", + "label": "Éothain" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "dafc6399-b30c-4b81-bc54-b224e9c42297", + "rule_group_id": "83166c1d-4201-4b94-b6ce-e5a0849a5f0a", "type": "rule", "remediation_issue_id": null }, { - "id": "ecf509f5-653d-4a68-b35d-e19f8795b197", - "ref_id": "xccdf_org.ssgproject.content_rule_260e864078e7e637039d8125011d7188", - "title": "Ea et voluptatem alias.", - "rationale": "Officia modi corrupti. Rerum id in. Rerum velit odio.", - "description": "Esse dolores voluptas. Sed sit aut. Recusandae velit alias.", - "severity": "high", - "precedence": 2136, + "id": "b102db39-b831-4d91-a12b-c6d448bbeb6f", + "ref_id": "xccdf_org.ssgproject.content_rule_33c1965e14531ec1a9648abe2b61b670", + "title": "Ipsum culpa velit ut.", + "rationale": "Excepturi occaecati blanditiis. Voluptatum quo voluptas. Dolor modi voluptates.", + "description": "Nulla aperiam qui. Eligendi dicta repellat. Possimus odit dolorem.", + "severity": "low", + "precedence": 3876, "identifier": { - "href": "http://weber.example/karan", - "label": "Gruffo Boffin" + "href": "http://jacobson.test/noelia", + "label": "Daisy Baggins" }, "references": [ { - "href": "http://cartwright.example/bethanie.price", - "label": "Elrohir" + "href": "http://toy.example/hilaria.wiegand", + "label": "Manthor" }, { - "href": "http://predovic.test/jesus.boehm", - "label": "Cotman" + "href": "http://ortiz-wiza.example/robbie", + "label": "Enerdhil" }, { - "href": "http://stanton-kertzmann.example/wanda", - "label": "Robin Gardner" + "href": "http://johnson.example/german", + "label": "Brandir" }, { - "href": "http://dare.example/marcelo_casper", - "label": "Hazad" + "href": "http://crist.test/marcelo", + "label": "Harding" }, { - "href": "http://tromp.test/dallas_runolfsdottir", - "label": "Telumehtar Umbardacil" + "href": "http://hickle-langworth.example/nicholas", + "label": "Mosco Burrows" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "eb9c966f-da59-4ffe-b716-ca81e6b96e17", + "rule_group_id": "f03b6adc-1bc9-4ce0-9d1b-57a562d921b1", "type": "rule", "remediation_issue_id": null } @@ -5379,9 +5379,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/78890ab7-3f30-45af-a278-e90d56ec0860/profiles/09539e62-a04b-4ac1-aea8-878e2d6b54e0/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/78890ab7-3f30-45af-a278-e90d56ec0860/profiles/09539e62-a04b-4ac1-aea8-878e2d6b54e0/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/78890ab7-3f30-45af-a278-e90d56ec0860/profiles/09539e62-a04b-4ac1-aea8-878e2d6b54e0/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/ab5e120b-5f7f-4d31-ba47-b3108d7d07f7/profiles/84a5e463-9152-4214-92e3-0f4a792d4470/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/ab5e120b-5f7f-4d31-ba47-b3108d7d07f7/profiles/84a5e463-9152-4214-92e3-0f4a792d4470/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/ab5e120b-5f7f-4d31-ba47-b3108d7d07f7/profiles/84a5e463-9152-4214-92e3-0f4a792d4470/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -5486,7 +5486,7 @@ "tags": [ "Content" ], - "description": "Returns a Rule assigned to a Profile", + "description": "Retrieve a specific security guide rule for a specific profile.", "operationId": "ProfileRule", "responses": { "200": { @@ -5497,42 +5497,42 @@ "Returns a Rule": { "value": { "data": { - "id": "ba5d8f28-18b2-4122-a7bd-b0c17ceb4508", - "ref_id": "xccdf_org.ssgproject.content_rule_5629c1aa057bf382fd59bfd6d996ae31", - "title": "Rerum quos totam soluta.", - "rationale": "Non illum eos. Iure enim sed. Dolorum molestiae dignissimos.", - "description": "Dignissimos voluptate non. Unde aut veritatis. Quo ratione molestiae.", - "severity": "high", - "precedence": 9822, + "id": "b0f43f2f-dffe-43c2-b255-ab9a115e9c25", + "ref_id": "xccdf_org.ssgproject.content_rule_d2f7690afac0a2375c3716352d067f68", + "title": "Dolorem quas et rerum.", + "rationale": "Fugit dolor iusto. Aliquam porro vel. Consequatur nihil odio.", + "description": "Esse corrupti enim. Sunt blanditiis quo. Est et repellat.", + "severity": "medium", + "precedence": 6707, "identifier": { - "href": "http://will-bayer.test/roderick_moore", - "label": "Cotman" + "href": "http://halvorson-kirlin.test/chrystal", + "label": "Ithilbor" }, "references": [ { - "href": "http://ritchie.example/cathrine_schuster", - "label": "Tar-Atanamir" + "href": "http://wilkinson-shields.example/jalisa_ebert", + "label": "Thorin Stonehelm" }, { - "href": "http://mraz-mosciski.test/hank.block", - "label": "Frumgar" + "href": "http://berge.test/setsuko", + "label": "Elladan" }, { - "href": "http://keeling-stark.example/suzanna", - "label": "Borlas" + "href": "http://hand.test/oscar_medhurst", + "label": "Telumehtar Umbardacil" }, { - "href": "http://boyle.example/dayna.marks", - "label": "Pengolodh" + "href": "http://simonis-schinner.test/yi.labadie", + "label": "Orgulas Brandybuck" }, { - "href": "http://larson-roberts.test/haywood_braun", - "label": "Angbor" + "href": "http://marvin.example/wendell.gusikowski", + "label": "Ruby Gardner" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "5fd10ace-dfac-4fb0-b27f-af1a23cf5f36", + "rule_group_id": "d9566e2d-9b35-48cd-9016-f1381e481748", "type": "rule", "remediation_issue_id": null } @@ -5565,7 +5565,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 8e794357-ecf8-4527-8b62-b41dc6c6f7e0" + "V2::Rule not found with ID bffdbfe3-1bc7-4418-a437-ddf579f60ae2" ] }, "summary": "", @@ -5679,7 +5679,7 @@ "tags": [ "Policies" ], - "description": "Lists Rules assigned to a Tailoring", + "description": "Retrieve a list of rules relating to specific tailorings.", "operationId": "TailoringRules", "responses": { "200": { @@ -5691,42 +5691,42 @@ "value": { "data": [ { - "id": "143eade4-6f9a-49e7-a604-d3fa86df32a3", - "ref_id": "xccdf_org.ssgproject.content_rule_8fc534d63d129946a5cffa42fae3fe9b", - "title": "Totam aut sequi consectetur.", - "rationale": "Commodi fugit dicta. Non eum corporis. Ducimus ab aut.", - "description": "Beatae veritatis aspernatur. Est quas ullam. Amet voluptatem unde.", + "id": "2432672c-c7f3-46de-8e2e-a4fbc6f354d5", + "ref_id": "xccdf_org.ssgproject.content_rule_4a78169e78857f3e640580e2344f6938", + "title": "Nobis quod expedita architecto.", + "rationale": "Sit earum modi. Consectetur temporibus accusamus. Velit optio qui.", + "description": "Accusamus deserunt in. Eaque omnis debitis. Dicta illo vero.", "severity": "low", - "precedence": 4623, + "precedence": 1338, "identifier": { - "href": "http://schaefer.example/tuan", - "label": "Lonely Troll" + "href": "http://rau-cummings.test/israel.dibbert", + "label": "Larnach" }, "references": [ { - "href": "http://gorczany.test/gonzalo", - "label": "King of the Dead" + "href": "http://wunsch.test/noe", + "label": "Beldis" }, { - "href": "http://considine.example/terrence_skiles", - "label": "Othrondir" + "href": "http://rippin-hane.example/hilma_erdman", + "label": "Nimrodel" }, { - "href": "http://osinski.example/glady.kling", - "label": "Primrose Gardner" + "href": "http://botsford.test/teressa.rosenbaum", + "label": "Tar-Meneldur" }, { - "href": "http://hirthe-dach.example/judson", - "label": "Eorl" + "href": "http://anderson.example/ladonna.von", + "label": "Inziladûn" }, { - "href": "http://mclaughlin.example/rosendo_schneider", - "label": "Elendur" + "href": "http://wolff.test/jenelle_sawayn", + "label": "Isilmo" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "2e06fc13-6288-4576-a9bd-e56f83dead72", + "rule_group_id": "ed6d0150-9c18-45e4-9c0c-881b6da2a33d", "type": "rule" } ], @@ -5736,8 +5736,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/d24665cf-b6bc-4875-a91a-2cda34dceb05/tailorings/b1953d29-edb0-485a-a2ba-d6e1e2faade4/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/d24665cf-b6bc-4875-a91a-2cda34dceb05/tailorings/b1953d29-edb0-485a-a2ba-d6e1e2faade4/rules?limit=10&offset=0" + "first": "/api/compliance/v2/policies/b30c6eb4-47a2-429e-90eb-a45e982fed63/tailorings/13b547a7-9ebf-4378-9d3e-29eaa51e7804/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/b30c6eb4-47a2-429e-90eb-a45e982fed63/tailorings/13b547a7-9ebf-4378-9d3e-29eaa51e7804/rules?limit=10&offset=0" } }, "summary": "", @@ -5747,42 +5747,42 @@ "value": { "data": [ { - "id": "f5043149-0c0f-405d-a0e6-ca97553a8dc6", - "ref_id": "xccdf_org.ssgproject.content_rule_9bbc66cbd0f02accbca0bd6cdd867c2b", - "title": "Sed ratione ab ducimus.", - "rationale": "Iusto dolore enim. Deserunt laborum saepe. Est quam distinctio.", - "description": "Doloribus eum eveniet. Voluptatibus corporis fuga. Est libero delectus.", - "severity": "high", - "precedence": 298, + "id": "9a0405d5-4adc-47b4-afcd-a935c0e2070b", + "ref_id": "xccdf_org.ssgproject.content_rule_4c0c0cbf301ce98add29d8e40a84987a", + "title": "Quam qui alias in.", + "rationale": "Minus ipsum et. Illo cumque enim. Quis ea modi.", + "description": "Voluptas natus hic. Hic enim sit. Eos voluptatem animi.", + "severity": "medium", + "precedence": 7549, "identifier": { - "href": "http://okon-jenkins.example/santiago_hoeger", - "label": "Tar-Telperiën" + "href": "http://bogisich.test/hai", + "label": "Dora Baggins" }, "references": [ { - "href": "http://daugherty.example/ernie", - "label": "Galador" + "href": "http://yundt-casper.test/chuck_towne", + "label": "Amlaith" }, { - "href": "http://conn.test/karine_fadel", - "label": "Ulrad" + "href": "http://volkman.example/cesar_damore", + "label": "Idis" }, { - "href": "http://stanton.example/keli", - "label": "Mablung" + "href": "http://kris-howell.test/florencia_ferry", + "label": "Argeleb" }, { - "href": "http://ondricka.example/zachariah", - "label": "Pervinca Took" + "href": "http://barton.example/lynell.ebert", + "label": "Borthand" }, { - "href": "http://murray.test/stephen", - "label": "Fíriel Fairbairn" + "href": "http://mclaughlin.test/tod", + "label": "Treebeard" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "e3c69a41-9b59-4ca9-b693-7f38cbecc264", + "rule_group_id": "3d55a216-060d-4574-b7e5-fcf34f03b923", "type": "rule" } ], @@ -5793,8 +5793,8 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/policies/2c91e82a-b971-406a-a2ad-35b89c657bb5/tailorings/0ff5968e-6249-4255-b55a-3b56efca2bb0/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/policies/2c91e82a-b971-406a-a2ad-35b89c657bb5/tailorings/0ff5968e-6249-4255-b55a-3b56efca2bb0/rules?limit=10&offset=0&sort_by=precedence" + "first": "/api/compliance/v2/policies/093293ca-f719-4e35-a242-305433bfc6cb/tailorings/3bf3c6a8-d254-48ad-9781-04428f99ec1a/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/policies/093293ca-f719-4e35-a242-305433bfc6cb/tailorings/3bf3c6a8-d254-48ad-9781-04428f99ec1a/rules?limit=10&offset=0&sort_by=precedence" } }, "summary": "", @@ -5901,393 +5901,393 @@ "value": { "data": [ { - "id": "2d46076d-8445-4be2-9a0d-0f8573fecd4c", - "ref_id": "xccdf_org.ssgproject.content_rule_f61ac5262f6f43b0d67a5d3197c4a34f", - "title": "Ea a voluptas debitis.", - "rationale": "Sint distinctio ea. Sint animi suscipit. Laboriosam odio est.", - "description": "Sapiente eius qui. Possimus qui nulla. Et cum nam.", + "id": "0eb54eca-e109-440c-a36a-28a653fe9f82", + "ref_id": "xccdf_org.ssgproject.content_rule_af94b042de29bf8f4d665cb0e9d1a98d", + "title": "Et qui quidem enim.", + "rationale": "Quia pariatur dolor. Qui doloremque non. Magnam nam sed.", + "description": "Et minima nihil. Et vel facilis. Mollitia reprehenderit suscipit.", "severity": "high", - "precedence": 8134, + "precedence": 1506, "identifier": { - "href": "http://cronin.example/perla.schowalter", - "label": "Gethron" + "href": "http://frami.example/manuel", + "label": "King of the Dead" }, "references": [ { - "href": "http://dickens.example/barry.schmitt", - "label": "Frodo Baggins" + "href": "http://abernathy.example/granville.vandervort", + "label": "Erkenbrand" }, { - "href": "http://wisozk.example/cesar", - "label": "Amrothos" + "href": "http://hansen-tromp.test/talia", + "label": "Haldar" }, { - "href": "http://zulauf.test/terence_veum", - "label": "Thráin" + "href": "http://hills.test/shelby", + "label": "Celebrían" }, { - "href": "http://schmidt.test/trey", - "label": "Angelica Baggins" + "href": "http://kub-bernier.test/hettie", + "label": "Hobson" }, { - "href": "http://legros-ondricka.test/tomika", - "label": "Rorimac Brandybuck" + "href": "http://johns.test/benjamin", + "label": "William" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "75525cab-837f-43aa-aa74-7087663ddefc", + "rule_group_id": "1a21326b-c3ad-4d85-9869-cd113f3b83d0", "type": "rule" }, { - "id": "3372ed46-2728-4d43-b0cd-ceb55b3cdf5b", - "ref_id": "xccdf_org.ssgproject.content_rule_234bfd88c3fb04864713b5a0fade5658", - "title": "Voluptatem natus velit delectus.", - "rationale": "Veritatis quod iure. Ipsum eius pariatur. Reprehenderit eos incidunt.", - "description": "Sed velit nemo. Repudiandae veniam occaecati. Et nulla dolores.", - "severity": "high", - "precedence": 9657, + "id": "1a57713c-57ef-4910-8c64-13abcd11c550", + "ref_id": "xccdf_org.ssgproject.content_rule_7159d0d01fe1deaaac45c123568c8a0e", + "title": "Labore excepturi qui voluptate.", + "rationale": "Nulla suscipit voluptates. Rerum nisi quis. Deleniti consequatur quia.", + "description": "Enim expedita ullam. Corrupti aut quo. Maiores excepturi quia.", + "severity": "low", + "precedence": 9500, "identifier": { - "href": "http://cremin.test/ester", - "label": "Eärnil" + "href": "http://kunde.test/leigh", + "label": "Siriondil" }, "references": [ { - "href": "http://waters.test/erminia", - "label": "Gildis" + "href": "http://ortiz.example/susannah.dibbert", + "label": "Daisy Baggins" }, { - "href": "http://rogahn-berge.test/jerry", - "label": "Samwise Gamgee" + "href": "http://schaden-ankunding.example/alfred", + "label": "Celeborn" }, { - "href": "http://carter.example/leigha", - "label": "Carl Cotton" + "href": "http://oreilly.example/jenice.cummings", + "label": "Dori" }, { - "href": "http://padberg.example/chong", - "label": "Eärnur" + "href": "http://krajcik.example/art", + "label": "Indis" }, { - "href": "http://crist.test/chad.adams", - "label": "Oromendil" + "href": "http://fay.example/merle", + "label": "Mosco Burrows" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "6f43b653-b682-48f2-8565-7f13491d1703", + "rule_group_id": "66bcfacf-ce12-47ad-9d54-e69fa60bd930", "type": "rule" }, { - "id": "34412d38-bd32-400d-afe4-f73f15466b66", - "ref_id": "xccdf_org.ssgproject.content_rule_e8fba67ad7ca3933889ddcc89dd6f46f", - "title": "Ex maxime ut qui.", - "rationale": "Assumenda quam voluptatum. Voluptatem numquam ad. Iusto alias dolor.", - "description": "Expedita dolore nulla. In quaerat at. Laborum accusantium esse.", - "severity": "low", - "precedence": 3919, + "id": "1cd3b8b0-6382-42ef-b293-85c50ff8f1b5", + "ref_id": "xccdf_org.ssgproject.content_rule_ec827c07562798de214b4c4a76e2d1ea", + "title": "Voluptatibus repellat veritatis id.", + "rationale": "Et et commodi. Delectus et et. Doloremque eius quo.", + "description": "Libero error dolores. Sequi velit veniam. Eveniet recusandae culpa.", + "severity": "high", + "precedence": 2388, "identifier": { - "href": "http://larson-breitenberg.example/cassondra", - "label": "Araglas" + "href": "http://feil.example/darin", + "label": "Bowman Cotton" }, "references": [ { - "href": "http://von-klocko.example/damion", - "label": "Dervorin" + "href": "http://von-schmidt.example/milo", + "label": "Emeldir" }, { - "href": "http://lang.example/luther", - "label": "Boron" + "href": "http://mante.example/reed.quigley", + "label": "Amlach" }, { - "href": "http://rau-weissnat.test/galen", - "label": "Amethyst Hornblower" + "href": "http://turcotte.test/winford.gislason", + "label": "Otho Sackville-Baggins" }, { - "href": "http://ebert-hermiston.test/marianela.ohara", - "label": "Hannar" + "href": "http://nienow-lebsack.test/leandro_kihn", + "label": "Robin Smallburrow" }, { - "href": "http://ryan.test/simon", - "label": "Boar of Everholt" + "href": "http://stiedemann.test/toya", + "label": "Malach" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4ed777e2-61db-4336-a602-144173cf1ae3", + "rule_group_id": "6972c1eb-ac13-4a71-aaf6-3b5757a5d399", "type": "rule" }, { - "id": "38da44c4-113d-4117-aeae-ce12719165d0", - "ref_id": "xccdf_org.ssgproject.content_rule_35d4f836754bc93e9646b7366c90cab2", - "title": "Delectus nihil vel consequatur.", - "rationale": "Recusandae atque ipsum. Et est fugit. Delectus non et.", - "description": "Dolorem nihil et. Voluptate eius accusamus. Blanditiis sint et.", - "severity": "high", - "precedence": 2015, + "id": "2665369c-187e-4b11-ad4a-0c802b89c912", + "ref_id": "xccdf_org.ssgproject.content_rule_f8ece0df20bb6ffce861d52c0ffb486a", + "title": "At vitae reprehenderit sed.", + "rationale": "Blanditiis consequuntur aspernatur. Velit quaerat et. Officia laudantium eum.", + "description": "Harum quasi praesentium. Explicabo culpa et. Est quia expedita.", + "severity": "low", + "precedence": 9264, "identifier": { - "href": "http://parisian.example/laurine.crona", - "label": "Mrs. Maggot" + "href": "http://halvorson-wunsch.test/geoffrey.simonis", + "label": "Enel" }, "references": [ { - "href": "http://hintz.test/carroll", - "label": "Amroth" + "href": "http://oreilly.example/elna.fadel", + "label": "Bucca of the Marish" }, { - "href": "http://stanton.example/marin", - "label": "Haldir" + "href": "http://bosco.test/earle", + "label": "Ulrad" }, { - "href": "http://gibson.example/gino_turcotte", - "label": "Argon" + "href": "http://wunsch.test/alina.ohara", + "label": "Orgulas Brandybuck" }, { - "href": "http://damore.example/demarcus_price", - "label": "Tar-Calmacil" + "href": "http://wisozk.test/frankie", + "label": "Aratan" }, { - "href": "http://jenkins-renner.example/ashli", - "label": "Halfred Gamgee" + "href": "http://swift.example/tilda", + "label": "Mungo Baggins" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "1424f846-fba1-4df9-9d3e-2570f646b2a5", + "rule_group_id": "f8139677-dc1e-4ab5-ae5c-1d6b4d62e1ae", "type": "rule" }, { - "id": "3d3cd3b9-9629-466b-9808-2a080dffa2a1", - "ref_id": "xccdf_org.ssgproject.content_rule_b57caae0ec7176954200f4b33eace58d", - "title": "Facilis quia aliquid sapiente.", - "rationale": "Molestias vitae illo. Id qui sed. Nesciunt tempore repellat.", - "description": "Itaque cupiditate eos. Enim temporibus nisi. Ut eius voluptas.", - "severity": "high", - "precedence": 4679, + "id": "4b1fa9b2-7d4b-4d75-be6f-1382a3a37e72", + "ref_id": "xccdf_org.ssgproject.content_rule_7a76b16fd29e3e02071bb46c5f8aa17a", + "title": "Rerum commodi in soluta.", + "rationale": "Quam qui placeat. Vero doloremque ut. Ea esse ea.", + "description": "Sint earum temporibus. Porro consectetur et. Esse et unde.", + "severity": "low", + "precedence": 3544, "identifier": { - "href": "http://beahan-schmitt.example/desire", - "label": "Adalbert Bolger" + "href": "http://oreilly.test/laveta", + "label": "Ghân-buri-Ghân" }, "references": [ { - "href": "http://purdy.example/kathrine", - "label": "Mungo Baggins" + "href": "http://kris.test/luther", + "label": "Aratan" }, { - "href": "http://rogahn-lemke.example/jocelyn.rosenbaum", - "label": "Elmo" + "href": "http://bartoletti-koelpin.example/hilton.corwin", + "label": "Bowman Cotton" }, { - "href": "http://weissnat-huels.example/sherill", - "label": "Gildor" + "href": "http://murphy.test/gala.rau", + "label": "Frerin" }, { - "href": "http://bruen.test/jean", - "label": "Isembold Took" + "href": "http://hahn-hane.test/norman_dibbert", + "label": "Tosto Boffin" }, { - "href": "http://kovacek-ruecker.example/thurman.ward", - "label": "Nora Bolger" + "href": "http://wunsch.example/joselyn.terry", + "label": "Ragnor" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4fe434b6-2b35-4624-8205-5b780b20bbf2", + "rule_group_id": "2533ecfc-d77a-4eea-ad06-16b1b8d9e8a6", "type": "rule" }, { - "id": "4c588db7-a9ec-46b1-bc39-1900e86a9215", - "ref_id": "xccdf_org.ssgproject.content_rule_5795b5e2a481140fded50b1b7707ac87", - "title": "Vitae illo laborum doloribus.", - "rationale": "Omnis quia est. Praesentium ullam et. Ab consequatur fugiat.", - "description": "Necessitatibus atque provident. Officiis voluptas omnis. Odit aperiam necessitatibus.", + "id": "4e014ee6-016d-4368-ac9c-022719676466", + "ref_id": "xccdf_org.ssgproject.content_rule_5124402ce9606bced3849acbc6835798", + "title": "Voluptatum qui magni quos.", + "rationale": "A consequuntur praesentium. Neque soluta harum. Eum ut et.", + "description": "Et voluptatem ut. Exercitationem vitae delectus. Et et velit.", "severity": "high", - "precedence": 7453, + "precedence": 4843, "identifier": { - "href": "http://little.example/randal", - "label": "Borlad" + "href": "http://corkery-davis.example/shaunte", + "label": "Gram" }, "references": [ { - "href": "http://stokes-rogahn.example/chassidy", - "label": "Aegnor" + "href": "http://labadie.test/jacqueline", + "label": "Erchirion" }, { - "href": "http://pfannerstill.test/shanae_bernier", - "label": "Ivriniel" + "href": "http://dickinson.example/retha", + "label": "Lóni" }, { - "href": "http://smith.example/alphonse", - "label": "Shelob" + "href": "http://reilly.test/jena_bailey", + "label": "Gothmog" }, { - "href": "http://larkin.example/cliff", - "label": "Narvi" + "href": "http://cummings.test/moshe", + "label": "Donnamira Took" }, { - "href": "http://jerde-swaniawski.example/justin", - "label": "Eärendil" + "href": "http://treutel.example/bess_blick", + "label": "Bregil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "328c8085-5b81-4aac-a2b7-2258d860644e", + "rule_group_id": "85dc43d9-34e6-4cc9-b856-9a2a6ab5cd7c", "type": "rule" }, { - "id": "5e38c35d-a8df-4042-ae1c-983ef5fe9786", - "ref_id": "xccdf_org.ssgproject.content_rule_f0da5e2d126a0a84a723d3da2f3bdbe3", - "title": "Ex harum voluptas aliquam.", - "rationale": "Esse voluptatem nemo. Totam ut dolor. Dolor et sint.", - "description": "Ratione fugit dolor. Ipsam adipisci id. Sunt aut odit.", - "severity": "low", - "precedence": 6531, + "id": "61ecb1bb-2f43-457c-9b13-9c1fb7f5a181", + "ref_id": "xccdf_org.ssgproject.content_rule_2e1867a532b0f20f45943ed384941b7c", + "title": "Quo dolore dignissimos et.", + "rationale": "Ut vel sunt. Ipsam nemo et. Molestias rerum voluptate.", + "description": "Saepe quibusdam dolorem. Laudantium occaecati ut. Maiores et quas.", + "severity": "medium", + "precedence": 6688, "identifier": { - "href": "http://johnston.test/demetrius.kovacek", - "label": "Tar-Vanimeldë" + "href": "http://glover-ruecker.example/anton", + "label": "Angamaitë" }, "references": [ { - "href": "http://altenwerth.test/lexie.damore", - "label": "Girion" + "href": "http://rutherford.example/delila", + "label": "Lenwë" }, { - "href": "http://keeling.example/russell_kuhic", - "label": "Malva Headstrong" + "href": "http://stamm-smith.test/katy.labadie", + "label": "Folcred" }, { - "href": "http://doyle-lebsack.example/lyndon", - "label": "Tar-Meneldur" + "href": "http://howe.example/norah", + "label": "Imrazôr" }, { - "href": "http://zulauf.test/libby", - "label": "Marhwini" + "href": "http://bartell-moore.example/sammy", + "label": "Nimrodel" }, { - "href": "http://volkman.test/carl", - "label": "Írildë" + "href": "http://kilback-kris.test/arnold.mraz", + "label": "Nurwë" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "41a36bcb-61ec-4b20-8781-7dd9b8704387", + "rule_group_id": "008351e5-3c16-4c55-84be-11c2961531a2", "type": "rule" }, { - "id": "6d92383b-d057-429a-85cc-e18d35decaf7", - "ref_id": "xccdf_org.ssgproject.content_rule_060e28162c3ed044641674a0442e424a", - "title": "Nulla aut animi quam.", - "rationale": "Quidem et et. Et dolorem facilis. Explicabo dignissimos beatae.", - "description": "Similique rerum molestias. Quia consequatur accusantium. Incidunt ut consectetur.", + "id": "72ad8804-aa41-46af-9f6b-00012e09e616", + "ref_id": "xccdf_org.ssgproject.content_rule_6265706dfc0b5f2ada73cfb31bead9a9", + "title": "Iure ipsa sapiente distinctio.", + "rationale": "Sed et a. Suscipit nemo ut. Quis natus dolor.", + "description": "Eum laudantium cumque. Repudiandae enim similique. Voluptatum id explicabo.", "severity": "medium", - "precedence": 5753, + "precedence": 3364, "identifier": { - "href": "http://koss-mosciski.example/prudence", - "label": "Tar-Calmacil" + "href": "http://grady.example/clinton", + "label": "Sagroth" }, "references": [ { - "href": "http://streich-barton.test/hedwig", - "label": "Lindórië" + "href": "http://corkery-osinski.example/zita.west", + "label": "Elentir" }, { - "href": "http://fahey-pacocha.example/mathew", - "label": "Forthwini" + "href": "http://anderson.example/chung", + "label": "Dervorin" }, { - "href": "http://wisozk.example/sidney.jacobi", - "label": "Galdor of the Havens" + "href": "http://morar.test/kathryne.yundt", + "label": "Lúthien" }, { - "href": "http://lebsack.test/donte", - "label": "Aegnor" + "href": "http://kohler-bernier.example/keven", + "label": "Belen" }, { - "href": "http://lemke-cummerata.test/man", - "label": "Tar-Ancalimë" + "href": "http://wiza.test/francesco", + "label": "Elanor Gardner" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "e58455cb-75f5-432c-8a4c-b12784765e4e", + "rule_group_id": "aab1db3b-4ae6-4373-a2bb-96c4d46e182f", "type": "rule" }, { - "id": "6daa1d28-209d-4b93-a562-0bfafa52cdd8", - "ref_id": "xccdf_org.ssgproject.content_rule_f0c519ceba7e87533dd7246846ed80f2", - "title": "Qui voluptate necessitatibus non.", - "rationale": "Quam tempora natus. Similique qui harum. Qui quam vero.", - "description": "Eligendi quisquam dolorum. At cum nihil. Consectetur doloribus sequi.", - "severity": "low", - "precedence": 4394, + "id": "76f4c37d-0da3-4fbe-b693-cfaf9e722dcc", + "ref_id": "xccdf_org.ssgproject.content_rule_1db0a9cfdf31e20e258cea106f53080e", + "title": "Occaecati quaerat quis laborum.", + "rationale": "Fugit non dolorem. Debitis reiciendis et. Ut voluptatem laudantium.", + "description": "Possimus aut corporis. Rerum dolorem aut. Totam quasi qui.", + "severity": "medium", + "precedence": 9660, "identifier": { - "href": "http://rogahn.example/robbin_mckenzie", - "label": "Finarfin" + "href": "http://ziemann-stehr.test/gary", + "label": "Faniel" }, "references": [ { - "href": "http://pfeffer-ondricka.example/nathaniel.reilly", - "label": "Glóin" + "href": "http://kulas.test/avery_stehr", + "label": "Ioreth" }, { - "href": "http://mccullough.test/elva.hansen", - "label": "Balbo Baggins" + "href": "http://daugherty.example/rubin", + "label": "Dori" }, { - "href": "http://okeefe.test/harland", - "label": "Elladan" + "href": "http://abbott-grant.test/cristen.gutmann", + "label": "Lalaith" }, { - "href": "http://senger.test/karie.lesch", - "label": "Othrondir" + "href": "http://emard.example/star.klocko", + "label": "Bard" }, { - "href": "http://schamberger.example/kraig.wiegand", - "label": "Watcher in the Water" + "href": "http://beer-heidenreich.example/so_mosciski", + "label": "Daeron" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "2da20f78-b139-4c4d-8173-d69b10fbdfcd", + "rule_group_id": "15cb3d3e-80b5-48a1-9e79-1d1eea6f42ae", "type": "rule" }, { - "id": "78014cfe-e1df-443d-9bb2-da8a22864c3b", - "ref_id": "xccdf_org.ssgproject.content_rule_20b27d65874607e7472bd51f99e99a1b", - "title": "Consequatur rerum sequi voluptatibus.", - "rationale": "Qui aut impedit. Dolorem et commodi. Sit reprehenderit tenetur.", - "description": "Praesentium iure dolorum. Aliquid et suscipit. Esse in nihil.", - "severity": "high", - "precedence": 7887, + "id": "7826db2e-2d1f-49eb-b81a-405a3b27ab45", + "ref_id": "xccdf_org.ssgproject.content_rule_d0f6167c35fa61e1481174dfe2e01240", + "title": "Est occaecati minima cumque.", + "rationale": "Earum maxime ex. Consequatur consequuntur ut. Voluptatem ipsum labore.", + "description": "Unde nihil beatae. Culpa quia consequatur. Ut asperiores qui.", + "severity": "low", + "precedence": 5074, "identifier": { - "href": "http://dietrich.test/socorro_lockman", - "label": "Bowman Cotton" + "href": "http://monahan.example/roxanne", + "label": "Boar of Everholt" }, "references": [ { - "href": "http://lebsack.example/porsche", - "label": "Melilot Brandybuck" + "href": "http://oconner.test/qiana.green", + "label": "Dáin Ironfoot" }, { - "href": "http://hoeger-gerlach.test/ollie", - "label": "Soronto" + "href": "http://hand.example/isabella", + "label": "Glirhuin" }, { - "href": "http://fisher.test/cristobal", - "label": "Estella Bolger" + "href": "http://satterfield.example/jennifer_harvey", + "label": "Baran" }, { - "href": "http://bogisich.example/rozella_renner", - "label": "Narmacil" + "href": "http://ondricka.example/isidra.greenfelder", + "label": "Nellas" }, { - "href": "http://ebert-pacocha.test/arlie", - "label": "Larnach" + "href": "http://jacobi.example/sherill", + "label": "Beleg" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "53c1ffe8-845a-40ec-954a-c138ea943e45", + "rule_group_id": "b6448d8b-2607-46ac-811f-80ce9141f645", "type": "rule" } ], @@ -6297,9 +6297,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/e3d21cb2-ae71-49f0-8760-8f601a082583/tailorings/256a220f-bb14-46d0-80c3-3fd057e2d1cf/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/e3d21cb2-ae71-49f0-8760-8f601a082583/tailorings/256a220f-bb14-46d0-80c3-3fd057e2d1cf/rules?limit=10&offset=20", - "next": "/api/compliance/v2/policies/e3d21cb2-ae71-49f0-8760-8f601a082583/tailorings/256a220f-bb14-46d0-80c3-3fd057e2d1cf/rules?limit=10&offset=10" + "first": "/api/compliance/v2/policies/f6cbfaf9-23ae-47e2-b8e2-f682b4dcb5e2/tailorings/eb648bb2-d524-4496-8c46-99f5c784ecb8/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/f6cbfaf9-23ae-47e2-b8e2-f682b4dcb5e2/tailorings/eb648bb2-d524-4496-8c46-99f5c784ecb8/rules?limit=10&offset=20", + "next": "/api/compliance/v2/policies/f6cbfaf9-23ae-47e2-b8e2-f682b4dcb5e2/tailorings/eb648bb2-d524-4496-8c46-99f5c784ecb8/rules?limit=10&offset=10" } }, "summary": "", @@ -6391,7 +6391,7 @@ "tags": [ "Policies" ], - "description": "Assigns a Rule to a Tailoring", + "description": "Add a rule to a specific tailoring.", "operationId": "AssignRule", "responses": { "202": { @@ -6402,42 +6402,42 @@ "Assigns a Rule to a Tailoring": { "value": { "data": { - "id": "9bfed476-3f9d-4e7e-8fe1-5ea599dc08df", - "ref_id": "xccdf_org.ssgproject.content_rule_230841e25c6b13b02566bf1c0d965337", - "title": "Suscipit quam in quae.", - "rationale": "Vero et fugiat. Vel nemo libero. Nobis autem a.", - "description": "Sed est similique. Impedit quos consectetur. Laboriosam et expedita.", - "severity": "medium", - "precedence": 3595, + "id": "ba9f257f-a461-436e-ada9-3c482c835791", + "ref_id": "xccdf_org.ssgproject.content_rule_2f2e6ebf53c5ccbb21a5f4b067f5ddfb", + "title": "Culpa ut aliquid earum.", + "rationale": "Dolorem quia nesciunt. Veniam neque consequatur. Animi voluptate fuga.", + "description": "Quisquam consequatur odit. Ut ab suscipit. Fugit sint nobis.", + "severity": "high", + "precedence": 2764, "identifier": { - "href": "http://schoen.test/marcelina_jakubowski", - "label": "Ar-Sakalthôr" + "href": "http://schmitt.example/adam.hilll", + "label": "Pervinca Took" }, "references": [ { - "href": "http://kreiger.test/jeffry_white", - "label": "Elboron" + "href": "http://lynch.test/dallas.ryan", + "label": "Estelmo" }, { - "href": "http://stanton.test/jule.mante", - "label": "Morwë" + "href": "http://collins-fadel.example/wanita", + "label": "Muzgash" }, { - "href": "http://mante.example/courtney", - "label": "Legolas" + "href": "http://kreiger.test/teodoro_frami", + "label": "Angelica Baggins" }, { - "href": "http://brakus-lehner.test/brittni", - "label": "Tarannon Falastur" + "href": "http://williamson-lindgren.test/shawnna", + "label": "Gormadoc Brandybuck" }, { - "href": "http://rempel-daugherty.example/nydia", - "label": "Radbug" + "href": "http://jerde-morar.test/hank", + "label": "Aldor" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "c142ba5b-14cc-411c-a194-fd29f21eaae6", + "rule_group_id": "9db23c6d-6c42-4ad4-a8c5-9cd4d9567099", "type": "rule" } }, @@ -6456,7 +6456,7 @@ "Returns with Not found": { "value": { "errors": [ - "V2::Rule not found with ID b6e060eb-9d2c-4881-acaa-7a46c2e186cc" + "V2::Rule not found with ID 9a698fd4-d7b6-4c0f-9a8a-3577fb109eb8" ] }, "summary": "", @@ -6508,7 +6508,7 @@ "tags": [ "Policies" ], - "description": "Unassigns a Rule from a Tailoring", + "description": "Use this to remove a rule from your tailoring.", "operationId": "UnassignRule", "responses": { "202": { @@ -6519,42 +6519,42 @@ "Unassigns a Rule from a Tailoring": { "value": { "data": { - "id": "d5578d85-d31b-4cda-8576-a247c7b87cb1", - "ref_id": "xccdf_org.ssgproject.content_rule_81083c523c0259b0f1a4001b414ccec0", - "title": "Autem doloremque veritatis corporis.", - "rationale": "Minima quibusdam accusamus. Ut maiores corrupti. Omnis voluptatem atque.", - "description": "Omnis minus explicabo. Qui autem et. Et blanditiis sint.", - "severity": "low", - "precedence": 7674, + "id": "1a3bdb29-7294-42b2-b9dd-8adde6f06d34", + "ref_id": "xccdf_org.ssgproject.content_rule_e175904fe73f5fceab8ac2cddde1400e", + "title": "Laborum numquam et dolores.", + "rationale": "Aut expedita voluptatum. Minus inventore non. Doloremque alias iste.", + "description": "Sed cupiditate fugit. Laboriosam iure provident. Doloribus qui officiis.", + "severity": "medium", + "precedence": 5068, "identifier": { - "href": "http://hermann.test/teofila", - "label": "Helm" + "href": "http://stokes.example/hipolito.leuschke", + "label": "Enerdhil" }, "references": [ { - "href": "http://ebert.example/antoine", - "label": "Frumgar" + "href": "http://sawayn.example/collette.willms", + "label": "Malbeth" }, { - "href": "http://prosacco.example/ida", - "label": "Belen" + "href": "http://streich-jones.test/gricelda", + "label": "Iago Grubb" }, { - "href": "http://bergstrom-hoppe.test/chester", - "label": "Saradas Brandybuck" + "href": "http://schmitt.example/ervin", + "label": "Isilmo" }, { - "href": "http://braun.test/tammara.hegmann", - "label": "Wulf" + "href": "http://pagac.test/bret", + "label": "Aranwë" }, { - "href": "http://skiles.example/venita.moen", - "label": "Lindir" + "href": "http://oberbrunner-pfannerstill.test/bryon.runolfsson", + "label": "Blanco Bracegirdle" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "60ad3dd4-6079-4a40-bbc9-6457db060595", + "rule_group_id": "77e0fd94-e58d-4d5c-abfe-2a0aba65ff28", "type": "rule" } }, @@ -6573,7 +6573,7 @@ "Description of an error when unassigning a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID e3f19d21-3941-4863-bdd0-e378af184d69" + "V2::Rule not found with ID e57d62e1-0044-4b72-9631-09981a286ac4" ] }, "summary": "", @@ -6665,7 +6665,7 @@ "tags": [ "Content" ], - "description": "Lists Security Guides", + "description": "Retrieve a list of all SCAP security guides.", "operationId": "SecurityGuides", "responses": { "200": { @@ -6677,92 +6677,92 @@ "value": { "data": [ { - "id": "1f36243b-a7c8-4799-8241-2cd45f53d44d", + "id": "0a79038a-7e09-49cf-9664-065c47367c7e", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Quos quam est fuga.", - "version": "100.82.36", - "description": "Et ad dignissimos. In hic et. Est dolorem et.", + "title": "Perferendis quo sunt alias.", + "version": "100.81.35", + "description": "Omnis quo deleniti. Id ut nemo. Omnis et facere.", "os_major_version": 7, "type": "security_guide" }, { - "id": "277087b6-5cb0-420d-9476-0d093dc03fde", + "id": "0ec21680-1166-4ca1-8cb0-09af88e5efc5", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Dignissimos et vero laudantium.", - "version": "100.82.43", - "description": "Aut sit rem. Optio ut minima. Quibusdam rerum facilis.", + "title": "Et voluptas saepe alias.", + "version": "100.81.31", + "description": "Ratione non distinctio. Repellendus pariatur accusantium. Perspiciatis neque laboriosam.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2a67608f-cc17-4ec4-91c7-3e43231fedf9", + "id": "3537335b-9100-4ff8-9014-b30b4604b733", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Facere ut laboriosam voluptates.", - "version": "100.83.7", - "description": "Adipisci tempore incidunt. Non magni impedit. Explicabo qui praesentium.", + "title": "Consequatur dolorum et accusamus.", + "version": "100.81.25", + "description": "Aut necessitatibus nihil. Autem qui magni. At illum qui.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2acd42f5-57e5-4e58-83fe-f45d83a54f1c", + "id": "433adc74-7284-4d42-a598-25aea59e44ae", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Molestias quis autem nisi.", - "version": "100.82.44", - "description": "Dolor voluptatum quis. Voluptatem culpa voluptas. Omnis et perspiciatis.", + "title": "Qui ut perspiciatis non.", + "version": "100.81.43", + "description": "Cum quis tenetur. Quae qui aspernatur. Tenetur possimus repellendus.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2c1afb67-f8db-4e1f-9650-313d64799525", + "id": "4b27fb6a-838d-4995-8f2d-518fc7ea584b", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Ullam exercitationem praesentium atque.", - "version": "100.82.39", - "description": "Et consequuntur doloribus. Dolor inventore et. Quibusdam maiores quis.", + "title": "Et quas dolorum blanditiis.", + "version": "100.81.30", + "description": "Minus quas quisquam. Voluptatibus quisquam laborum. Tempora assumenda nostrum.", "os_major_version": 7, "type": "security_guide" }, { - "id": "31cbe5a6-fbcd-4158-bf51-b45e945bfa35", + "id": "4fa02f5d-9d4d-441f-95d6-fbc3b8541be0", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Et dolorem quia id.", - "version": "100.82.49", - "description": "Et vitae consequatur. Vero ipsum unde. Cum eos harum.", + "title": "Occaecati hic repellat aliquam.", + "version": "100.81.38", + "description": "Quia iste quas. Est voluptatibus pariatur. Et in voluptate.", "os_major_version": 7, "type": "security_guide" }, { - "id": "36f43103-08fc-4da1-9f8c-250bdbc78a7c", + "id": "54638ca3-5136-44d9-b0b0-63a96eac3622", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Sed minima temporibus ut.", - "version": "100.82.38", - "description": "Ipsa laborum sapiente. Voluptatum tempora odit. Aspernatur omnis omnis.", + "title": "Et esse molestias molestiae.", + "version": "100.81.24", + "description": "Vero facilis voluptatem. Quasi iusto voluptate. Vel nobis consequatur.", "os_major_version": 7, "type": "security_guide" }, { - "id": "37fbc483-1987-43c9-b54c-005d638e665a", + "id": "5b95f20c-a224-461b-aaa3-0dc35a5d5d9a", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "A dicta voluptatem architecto.", - "version": "100.82.34", - "description": "Perspiciatis pariatur consequatur. Dicta assumenda culpa. Officiis officia animi.", + "title": "Assumenda quia aliquid reprehenderit.", + "version": "100.81.45", + "description": "Perferendis aut sint. Praesentium est dolore. Et quod sint.", "os_major_version": 7, "type": "security_guide" }, { - "id": "39d34175-1cec-421c-b169-0814db72491f", + "id": "5c3f6b45-115f-405c-b4c2-71a12e81fbd5", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Eligendi eaque dolore non.", - "version": "100.83.2", - "description": "Totam qui quas. Quaerat eligendi aspernatur. Et repudiandae quisquam.", + "title": "In dolore vitae et.", + "version": "100.81.26", + "description": "Dolores rerum libero. Est quasi optio. Mollitia vitae quia.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3e9254d2-892c-4d85-84d0-8f5790e8bc64", + "id": "5e862dba-b1e2-4c20-a73d-3ea2e9f77bb1", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Similique voluptatibus aspernatur est.", - "version": "100.82.33", - "description": "Ut vel velit. Totam illo qui. Exercitationem dolor qui.", + "title": "Ab magnam omnis quas.", + "version": "100.81.42", + "description": "Earum aut a. Ut nesciunt minus. Ut et omnis.", "os_major_version": 7, "type": "security_guide" } @@ -6785,92 +6785,92 @@ "value": { "data": [ { - "id": "0ef211e4-6fcf-4293-b70e-8b001aed753f", + "id": "04a0b4fd-52b3-4537-8ec9-09829974f23e", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Praesentium sed debitis quae.", - "version": "100.83.12", - "description": "Et et perspiciatis. Exercitationem rerum velit. Vitae molestiae iusto.", + "title": "Dolor provident at atque.", + "version": "100.82.21", + "description": "Qui iure quam. Odio modi optio. Amet ex enim.", "os_major_version": 7, "type": "security_guide" }, { - "id": "13d12202-1e22-44fe-8e26-a16229b4184b", + "id": "0bea205a-3abb-4abd-bcfd-9f95ae05db1c", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Perspiciatis qui cumque et.", - "version": "100.83.10", - "description": "Rem non ducimus. Et commodi ullam. Cumque et labore.", + "title": "Corporis ut numquam architecto.", + "version": "100.82.10", + "description": "Reprehenderit dolor eum. Id tempora sunt. Autem neque sapiente.", "os_major_version": 7, "type": "security_guide" }, { - "id": "16ee9f0b-d454-436f-af05-d32694b9a30d", + "id": "1017e893-a2dd-4e57-8ae8-15f589d91c9d", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Rem libero omnis molestias.", - "version": "100.83.21", - "description": "Perspiciatis tempora aut. Distinctio et est. Voluptate alias aut.", + "title": "Ratione sed id et.", + "version": "100.82.2", + "description": "Dolore omnis quod. Natus cum numquam. Omnis eligendi cum.", "os_major_version": 7, "type": "security_guide" }, { - "id": "1874fe00-fcb5-4ec1-85a1-a5201569f4d4", + "id": "135bf44a-7bd3-4dc2-850b-efc42dd43450", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Incidunt adipisci accusamus aperiam.", - "version": "100.83.14", - "description": "Dignissimos eligendi magni. Omnis eum optio. Et saepe nesciunt.", + "title": "Accusamus natus nulla sed.", + "version": "100.82.1", + "description": "Minima eius aut. Sunt excepturi culpa. Quia quidem excepturi.", "os_major_version": 7, "type": "security_guide" }, { - "id": "28c4c716-1539-48fb-a2d7-ed24f0b74501", + "id": "145b7713-8a4c-4925-a2ef-f02798080609", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "A recusandae molestias beatae.", - "version": "100.83.31", - "description": "Quis neque et. Temporibus et ea. Dolor odio consequatur.", + "title": "Minima praesentium rerum delectus.", + "version": "100.82.12", + "description": "Iste sit incidunt. Provident beatae ratione. Atque aut sit.", "os_major_version": 7, "type": "security_guide" }, { - "id": "366f8eb2-72ee-44e4-b310-f1176ad3b17b", + "id": "2c1f726c-72cf-4893-9bf4-850d3748c14d", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Aliquid voluptates voluptatibus enim.", - "version": "100.83.30", - "description": "Voluptas iusto voluptatem. Dolores est distinctio. Nemo tenetur officia.", + "title": "Temporibus laudantium sed dolorem.", + "version": "100.82.18", + "description": "Voluptatem molestias quas. Voluptas voluptatem sapiente. Perspiciatis perferendis voluptas.", "os_major_version": 7, "type": "security_guide" }, { - "id": "37611189-e6b5-4993-a280-57343dca5759", + "id": "405770e9-de62-46ca-8024-717c9ad2232f", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Exercitationem illum dicta voluptatem.", - "version": "100.83.29", - "description": "Dolores veritatis aut. Voluptatem voluptatem magni. Qui qui eligendi.", + "title": "Voluptas consequatur porro id.", + "version": "100.82.15", + "description": "Corrupti doloremque dolorem. Est laudantium sint. Eos nobis autem.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3777629a-d727-477c-b625-371ddae4a4f6", + "id": "45c0c084-eb42-4b98-be2c-f9c3f62f3d95", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Et quo similique et.", - "version": "100.83.11", - "description": "Quia praesentium quas. Ea quis in. Perspiciatis quod possimus.", + "title": "Quia consequatur est voluptas.", + "version": "100.82.22", + "description": "Aspernatur consequatur quis. Ratione officiis fugiat. Nihil magnam sapiente.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3a1f6776-b18f-4b1b-a473-e18c7a484d0b", + "id": "52ed814b-8104-4f82-883e-351f2f63ffe6", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Excepturi consectetur quos nam.", - "version": "100.83.16", - "description": "Ea magni molestiae. Ut delectus sed. Dolores ut blanditiis.", + "title": "Est sint nostrum quis.", + "version": "100.82.8", + "description": "Fugit voluptatem incidunt. Sit maxime provident. Quia perspiciatis nobis.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3b5cc151-f641-4cc4-bcc2-596d18c18dd6", + "id": "595a757e-5343-4dfc-9a27-81303efeeec0", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Laborum eligendi commodi vitae.", - "version": "100.83.18", - "description": "Dolor voluptatem alias. Quia maxime corrupti. Consequatur assumenda praesentium.", + "title": "Dolorem ullam fugit maiores.", + "version": "100.82.19", + "description": "Totam consequuntur ipsam. Aut quibusdam laudantium. Sed dolores sit.", "os_major_version": 7, "type": "security_guide" } @@ -7043,7 +7043,7 @@ "tags": [ "Content" ], - "description": "Returns a Security Guide", + "description": "Retrieve a specific security guide.", "operationId": "SecurityGuide", "responses": { "200": { @@ -7054,11 +7054,11 @@ "Returns a Security Guide": { "value": { "data": { - "id": "0499129e-02c6-4a06-8d72-2da09e43f65e", + "id": "d0b0d118-6682-4d8a-b43b-1b92daf74005", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Est dolores deserunt id.", - "version": "100.85.33", - "description": "Et impedit qui. Consequatur voluptatem autem. Quia necessitatibus odio.", + "title": "Culpa magnam aspernatur est.", + "version": "100.84.23", + "description": "Libero optio necessitatibus. Dolorem ex incidunt. Reiciendis et qui.", "os_major_version": 7, "type": "security_guide" } @@ -7091,7 +7091,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID 0503d80d-b781-4b8e-9266-5189dd76865c" + "V2::SecurityGuide not found with ID ebddede9-9ca1-4dc1-a2ac-78f0663cb574" ] }, "summary": "", @@ -7131,8 +7131,9 @@ "tags": [ "Content" ], - "description": "Returns the Rule Tree of a Security Guide", + "description": "Returns rule tree of a security guide.", "operationId": "SecurityGuideRuleTree", + "deprecated": true, "responses": { "200": { "description": "Returns the Rule Tree of a Security Guide", @@ -7142,101 +7143,101 @@ "Returns the Rule Tree of a Security Guide": { "value": [ { - "id": "66a80e86-5a30-4b06-acb5-03a1cd57f970", + "id": "668dd44c-0199-4f48-b243-04e04f576388", "type": "rule_group", "children": [ { - "id": "7061bc06-604d-4165-8041-594d014b17d3", + "id": "7fe59cb0-64ad-4ffa-9a91-d4abf6f6b37c", "type": "rule" } ] }, { - "id": "251193c6-4f5e-4364-ab70-17d60955d4fb", + "id": "8d1ed432-c60e-42d1-a8e0-8e417fabb9d6", "type": "rule_group", "children": [ { - "id": "022dd922-e8e4-4558-80ed-3a4c2d315b05", + "id": "c390bae0-c84f-4ae8-9813-f6ccb36ad352", "type": "rule" } ] }, { - "id": "875dee30-029f-4768-ba53-939ca359a9e9", + "id": "7e3f27bd-e3fc-4c35-ae96-6204d4ebe34f", "type": "rule_group", "children": [ { - "id": "a39b6a9c-a86e-4938-b8e5-3599323bc452", + "id": "22c1cc85-075b-4149-981f-af408506098e", "type": "rule" } ] }, { - "id": "6ba5be1b-1c53-4ae1-8d03-e5a8cb37a5dc", + "id": "57673e38-a100-4003-8443-047538762883", "type": "rule_group", "children": [ { - "id": "b7d36521-d867-415a-95a1-0af184a82a97", + "id": "8f96ab25-3cd1-4720-8914-c70773190e73", "type": "rule" } ] }, { - "id": "38dd3198-170f-491f-912b-c3dbbf14be4d", + "id": "601fb315-a1af-47e0-9d2a-a11c5055dced", "type": "rule_group", "children": [ { - "id": "150cafbc-b864-4370-877a-6ace94be22c2", + "id": "26e217c8-8095-4588-a1e6-c04adc5b7a40", "type": "rule" } ] }, { - "id": "d72c33ce-5954-4c41-b4d6-3434ffdf909d", + "id": "bb41c298-2328-438e-90dd-aa7d251ecf24", "type": "rule_group", "children": [ { - "id": "bff1b757-fbb6-430e-8ba6-343f13d5530a", + "id": "6de2d83e-8fb2-4e7b-85ad-4b844d18af07", "type": "rule" } ] }, { - "id": "841b5559-3759-4418-83c6-ac1e8416dd53", + "id": "b463185d-37cd-46d9-8ef0-499011450d40", "type": "rule_group", "children": [ { - "id": "596e82e3-a161-47d3-a5e0-a8d2ee6b523f", + "id": "815481c5-293f-462d-a0ff-dd9e477fb420", "type": "rule" } ] }, { - "id": "022fe488-31e6-4bf0-969e-9e7abc6a6467", + "id": "eb2d7918-af46-436d-a6e8-6770b9992323", "type": "rule_group", "children": [ { - "id": "ec13b753-5212-412e-9657-23795f4b1f86", + "id": "032b6571-ae31-4526-9611-cab8b39604d3", "type": "rule" } ] }, { - "id": "668c1dc7-f7fe-4dce-b3d8-d74ee3a2ca46", + "id": "9c5a225f-7ad1-408b-8b5c-5ab6785c3fd7", "type": "rule_group", "children": [ { - "id": "0f1ead19-7bff-4afb-8e1c-53d73f317265", + "id": "a83adfa2-414d-4ab0-8679-eba85647d3a0", "type": "rule" } ] }, { - "id": "04d628b1-2cf3-4141-93d0-78cbe634eea5", + "id": "b4a0b913-c024-4eb4-a99d-7c6e03bf7817", "type": "rule_group", "children": [ { - "id": "5153e2d7-ac31-40a3-85d0-dafc33880598", + "id": "0f93d69d-6bc3-4f00-adaf-886d8223d5f6", "type": "rule" } ] @@ -7260,7 +7261,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID 26caf84f-768e-4bc3-a16a-40a0a202793e" + "V2::SecurityGuide not found with ID c0da4edc-57a5-41ed-8796-6e1915a28682" ] }, "summary": "", @@ -7355,7 +7356,7 @@ "tags": [ "Content" ], - "description": "Lists Supported Profiles", + "description": "Retrieve the list of profiles supported by particular RHEL versions.", "operationId": "SupportedProfiles", "responses": { "200": { @@ -7367,12 +7368,12 @@ "value": { "data": [ { - "id": "7d4d3f9b-903a-4894-827f-24d967cc2c02", - "title": "Illo fuga eum incidunt.", - "description": "Sunt fugiat rerum. Voluptas non nam. Quaerat vitae enim.", - "ref_id": "xccdf_org.ssgproject.content_profile_90d4ee4ab93c208dcccd66ecaf4b4234", - "security_guide_id": "cbe119cb-9fa8-4f9b-bee2-2f018ed1d95b", - "security_guide_version": "100.86.7", + "id": "d1a365bd-67c3-4d80-8b51-392a9c5d6c56", + "title": "Perferendis sint id sed.", + "description": "Voluptatum illo quo. Sit qui ut. Rem sed quia.", + "ref_id": "xccdf_org.ssgproject.content_profile_2449f265188e3bebb620fa0bd0852f58", + "security_guide_id": "928a116d-691e-40ff-939d-181192e43be1", + "security_guide_version": "100.85.10", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7399,12 +7400,12 @@ "value": { "data": [ { - "id": "27b778c7-1177-40ee-b7b2-2b258520fa7b", - "title": "Qui ipsum aperiam tenetur.", - "description": "Itaque id dolores. Rerum deleniti id. Molestiae unde deleniti.", - "ref_id": "xccdf_org.ssgproject.content_profile_9755bd3282b74e42127cdddba1a4b751", - "security_guide_id": "bfad56e5-0e32-4066-983c-118508f079a7", - "security_guide_version": "100.86.8", + "id": "4a8bfdc1-c835-4b16-81c8-6f6422c9f417", + "title": "Qui quam autem velit.", + "description": "Adipisci distinctio maiores. Magnam vel dolore. Sequi repudiandae enim.", + "ref_id": "xccdf_org.ssgproject.content_profile_6d03a31a93b2c5515732df7815d595c5", + "security_guide_id": "256b4d41-42e1-423a-802f-de61637b09c4", + "security_guide_version": "100.85.11", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7600,7 +7601,7 @@ "tags": [ "Systems" ], - "description": "Lists Systems", + "description": "List all systems that are accessible when you are logged into your account.", "operationId": "Systems", "responses": { "200": { @@ -7612,39 +7613,39 @@ "value": { "data": [ { - "id": "3176845b-221b-40e5-bd01-656c5f137804", - "display_name": "walter.example", + "id": "0271ebbf-7740-4611-8a46-539d12132155", + "display_name": "sporer.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.671Z", - "stale_timestamp": "2034-11-14T12:12:16.671Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.671Z", - "updated": "2024-11-14T12:12:16.671Z", + "culled_timestamp": "2034-12-07T09:30:07.725Z", + "stale_timestamp": "2034-11-23T09:30:07.725Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.725Z", + "updated": "2024-11-23T09:30:07.725Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "neural", - "namespace": "generating" + "key": "program", + "value": "cross-platform", + "namespace": "compressing" }, { - "key": "capacitor", - "value": "solid state", - "namespace": "bypassing" + "key": "program", + "value": "redundant", + "namespace": "copying" }, { - "key": "monitor", - "value": "mobile", - "namespace": "quantifying" + "key": "panel", + "value": "optical", + "namespace": "transmitting" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "indexing" + "key": "card", + "value": "1080p", + "namespace": "compressing" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "programming" + "key": "microchip", + "value": "wireless", + "namespace": "quantifying" } ], "type": "system", @@ -7653,39 +7654,39 @@ "policies": [] }, { - "id": "4b78f7fb-21c2-4141-9de4-d579781ae217", - "display_name": "hoeger.test", + "id": "07a586b7-e5e1-41c5-bc46-4812506ff1a3", + "display_name": "mueller.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.663Z", - "stale_timestamp": "2034-11-14T12:12:16.663Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.663Z", - "updated": "2024-11-14T12:12:16.663Z", + "culled_timestamp": "2034-12-07T09:30:07.732Z", + "stale_timestamp": "2034-11-23T09:30:07.732Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.732Z", + "updated": "2024-11-23T09:30:07.732Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "neural", - "namespace": "indexing" - }, - { - "key": "panel", - "value": "virtual", - "namespace": "parsing" + "key": "monitor", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "interface", + "key": "sensor", "value": "open-source", - "namespace": "parsing" + "namespace": "indexing" }, { "key": "bandwidth", - "value": "1080p", - "namespace": "calculating" + "value": "redundant", + "namespace": "overriding" }, { - "key": "pixel", + "key": "sensor", + "value": "cross-platform", + "namespace": "synthesizing" + }, + { + "key": "driver", "value": "wireless", - "namespace": "quantifying" + "namespace": "copying" } ], "type": "system", @@ -7694,39 +7695,39 @@ "policies": [] }, { - "id": "5cbfce9a-969e-4eb1-860a-11357f3a29ca", - "display_name": "christiansen.example", + "id": "0c6f445b-0652-4357-9e17-995499272d39", + "display_name": "hyatt-gerlach.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.670Z", - "stale_timestamp": "2034-11-14T12:12:16.670Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.670Z", - "updated": "2024-11-14T12:12:16.670Z", + "culled_timestamp": "2034-12-07T09:30:07.728Z", + "stale_timestamp": "2034-11-23T09:30:07.728Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.728Z", + "updated": "2024-11-23T09:30:07.728Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "online", - "namespace": "transmitting" + "key": "firewall", + "value": "1080p", + "namespace": "calculating" }, { - "key": "card", - "value": "optical", - "namespace": "parsing" + "key": "pixel", + "value": "neural", + "namespace": "indexing" }, { - "key": "card", - "value": "mobile", - "namespace": "indexing" + "key": "firewall", + "value": "neural", + "namespace": "programming" }, { - "key": "matrix", - "value": "back-end", - "namespace": "synthesizing" + "key": "system", + "value": "primary", + "namespace": "transmitting" }, { - "key": "alarm", - "value": "cross-platform", - "namespace": "generating" + "key": "program", + "value": "auxiliary", + "namespace": "navigating" } ], "type": "system", @@ -7735,39 +7736,39 @@ "policies": [] }, { - "id": "5d6199d2-498b-4585-ac8d-098f898c61a1", - "display_name": "emmerich.example", + "id": "1d6e774a-9b95-4b11-ac5b-4e1ab9766869", + "display_name": "bode.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.662Z", - "stale_timestamp": "2034-11-14T12:12:16.662Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.662Z", - "updated": "2024-11-14T12:12:16.662Z", + "culled_timestamp": "2034-12-07T09:30:07.718Z", + "stale_timestamp": "2034-11-23T09:30:07.718Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.718Z", + "updated": "2024-11-23T09:30:07.718Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "online", - "namespace": "copying" - }, - { - "key": "firewall", - "value": "haptic", - "namespace": "programming" + "key": "bus", + "value": "open-source", + "namespace": "navigating" }, { - "key": "capacitor", + "key": "alarm", "value": "multi-byte", - "namespace": "programming" + "namespace": "indexing" }, { - "key": "application", - "value": "primary", - "namespace": "navigating" + "key": "hard drive", + "value": "online", + "namespace": "transmitting" }, { - "key": "bandwidth", - "value": "solid state", + "key": "array", + "value": "virtual", "namespace": "copying" + }, + { + "key": "array", + "value": "neural", + "namespace": "parsing" } ], "type": "system", @@ -7776,39 +7777,39 @@ "policies": [] }, { - "id": "713c7613-abfd-41a7-85dc-984e641dbc1e", - "display_name": "crist-mckenzie.example", + "id": "1f1a5144-4eff-495e-9666-97bb031ce245", + "display_name": "anderson-kuvalis.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.664Z", - "stale_timestamp": "2034-11-14T12:12:16.664Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.664Z", - "updated": "2024-11-14T12:12:16.664Z", + "culled_timestamp": "2034-12-07T09:30:07.731Z", + "stale_timestamp": "2034-11-23T09:30:07.731Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.731Z", + "updated": "2024-11-23T09:30:07.731Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "primary", - "namespace": "calculating" + "key": "port", + "value": "1080p", + "namespace": "connecting" }, { - "key": "capacitor", - "value": "bluetooth", - "namespace": "navigating" + "key": "panel", + "value": "digital", + "namespace": "quantifying" }, { - "key": "port", - "value": "digital", - "namespace": "compressing" + "key": "feed", + "value": "neural", + "namespace": "transmitting" }, { - "key": "transmitter", - "value": "cross-platform", - "namespace": "compressing" + "key": "monitor", + "value": "neural", + "namespace": "calculating" }, { - "key": "feed", - "value": "auxiliary", - "namespace": "generating" + "key": "monitor", + "value": "multi-byte", + "namespace": "bypassing" } ], "type": "system", @@ -7817,39 +7818,39 @@ "policies": [] }, { - "id": "78b27c7f-2c73-44e0-adfc-95c3832f5c88", - "display_name": "renner.example", + "id": "420e5f79-b9aa-4006-b5b2-d221fa90511a", + "display_name": "miller.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.666Z", - "stale_timestamp": "2034-11-14T12:12:16.666Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.666Z", - "updated": "2024-11-14T12:12:16.666Z", + "culled_timestamp": "2034-12-07T09:30:07.725Z", + "stale_timestamp": "2034-11-23T09:30:07.725Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.725Z", + "updated": "2024-11-23T09:30:07.725Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "cross-platform", - "namespace": "backing up" + "key": "bus", + "value": "open-source", + "namespace": "calculating" }, { - "key": "bus", - "value": "1080p", - "namespace": "backing up" + "key": "application", + "value": "virtual", + "namespace": "copying" }, { - "key": "port", - "value": "haptic", - "namespace": "bypassing" + "key": "hard drive", + "value": "primary", + "namespace": "parsing" }, { - "key": "card", - "value": "auxiliary", - "namespace": "programming" + "key": "monitor", + "value": "cross-platform", + "namespace": "navigating" }, { - "key": "panel", - "value": "neural", - "namespace": "quantifying" + "key": "capacitor", + "value": "haptic", + "namespace": "overriding" } ], "type": "system", @@ -7858,39 +7859,39 @@ "policies": [] }, { - "id": "7edd6a72-7415-4a04-9997-9044f6f6f595", - "display_name": "leuschke.example", + "id": "5f7cbbf3-43df-4ab3-a442-e4c9e3a8d2a6", + "display_name": "schinner.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.673Z", - "stale_timestamp": "2034-11-14T12:12:16.673Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.673Z", - "updated": "2024-11-14T12:12:16.673Z", + "culled_timestamp": "2034-12-07T09:30:07.728Z", + "stale_timestamp": "2034-11-23T09:30:07.728Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.728Z", + "updated": "2024-11-23T09:30:07.729Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "haptic", - "namespace": "parsing" + "key": "feed", + "value": "mobile", + "namespace": "hacking" }, { - "key": "array", - "value": "cross-platform", - "namespace": "calculating" + "key": "panel", + "value": "digital", + "namespace": "indexing" }, { - "key": "array", - "value": "redundant", - "namespace": "compressing" + "key": "bus", + "value": "virtual", + "namespace": "synthesizing" }, { - "key": "circuit", - "value": "bluetooth", - "namespace": "hacking" + "key": "interface", + "value": "mobile", + "namespace": "synthesizing" }, { - "key": "system", - "value": "cross-platform", - "namespace": "copying" + "key": "program", + "value": "digital", + "namespace": "parsing" } ], "type": "system", @@ -7899,39 +7900,39 @@ "policies": [] }, { - "id": "86c8d994-f041-4e57-b90c-66832b5c368b", - "display_name": "cormier.example", + "id": "64615c30-ae8a-4cdd-ba29-6926efeeff2e", + "display_name": "pfeffer.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.669Z", - "stale_timestamp": "2034-11-14T12:12:16.669Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.669Z", - "updated": "2024-11-14T12:12:16.669Z", + "culled_timestamp": "2034-12-07T09:30:07.729Z", + "stale_timestamp": "2034-11-23T09:30:07.729Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.729Z", + "updated": "2024-11-23T09:30:07.729Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "mobile", - "namespace": "transmitting" + "key": "panel", + "value": "virtual", + "namespace": "overriding" }, { - "key": "panel", - "value": "wireless", - "namespace": "bypassing" + "key": "monitor", + "value": "cross-platform", + "namespace": "overriding" }, { "key": "bus", - "value": "auxiliary", - "namespace": "programming" + "value": "digital", + "namespace": "calculating" }, { - "key": "protocol", - "value": "neural", - "namespace": "copying" + "key": "monitor", + "value": "optical", + "namespace": "backing up" }, { "key": "pixel", - "value": "wireless", - "namespace": "navigating" + "value": "primary", + "namespace": "programming" } ], "type": "system", @@ -7940,39 +7941,39 @@ "policies": [] }, { - "id": "87207173-b477-46df-8a6d-7b5f76d4e717", - "display_name": "douglas.example", + "id": "6da4fb15-5cbc-45db-825b-deb358ac192a", + "display_name": "brown-turner.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.680Z", - "stale_timestamp": "2034-11-14T12:12:16.680Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.680Z", - "updated": "2024-11-14T12:12:16.680Z", + "culled_timestamp": "2034-12-07T09:30:07.721Z", + "stale_timestamp": "2034-11-23T09:30:07.721Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.721Z", + "updated": "2024-11-23T09:30:07.721Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "digital", - "namespace": "hacking" + "key": "panel", + "value": "online", + "namespace": "bypassing" }, { - "key": "monitor", - "value": "solid state", - "namespace": "connecting" + "key": "feed", + "value": "wireless", + "namespace": "backing up" }, { - "key": "circuit", - "value": "redundant", - "namespace": "parsing" + "key": "card", + "value": "primary", + "namespace": "compressing" }, { - "key": "firewall", - "value": "neural", - "namespace": "programming" + "key": "driver", + "value": "cross-platform", + "namespace": "calculating" }, { "key": "microchip", - "value": "digital", - "namespace": "hacking" + "value": "open-source", + "namespace": "overriding" } ], "type": "system", @@ -7981,39 +7982,39 @@ "policies": [] }, { - "id": "90ce8a84-a2ff-47c6-8ed0-83c80ac34bb3", - "display_name": "wisoky.test", + "id": "74210eb2-16bb-4fbd-aa88-d552ffe061d7", + "display_name": "kozey.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.677Z", - "stale_timestamp": "2034-11-14T12:12:16.677Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.677Z", - "updated": "2024-11-14T12:12:16.677Z", + "culled_timestamp": "2034-12-07T09:30:07.720Z", + "stale_timestamp": "2034-11-23T09:30:07.720Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.720Z", + "updated": "2024-11-23T09:30:07.720Z", "insights_id": null, "tags": [ + { + "key": "firewall", + "value": "mobile", + "namespace": "quantifying" + }, { "key": "sensor", "value": "bluetooth", - "namespace": "connecting" + "namespace": "transmitting" }, { - "key": "firewall", - "value": "solid state", - "namespace": "backing up" + "key": "panel", + "value": "digital", + "namespace": "parsing" }, { - "key": "pixel", - "value": "auxiliary", - "namespace": "compressing" + "key": "bandwidth", + "value": "open-source", + "namespace": "backing up" }, { - "key": "sensor", + "key": "circuit", "value": "redundant", - "namespace": "calculating" - }, - { - "key": "port", - "value": "mobile", - "namespace": "programming" + "namespace": "synthesizing" } ], "type": "system", @@ -8041,39 +8042,39 @@ "value": { "data": [ { - "id": "151f9b01-59f9-487c-98a7-a6d122ce58bf", - "display_name": "terry.example", + "id": "0489244f-58d3-4125-8b42-14ea67577566", + "display_name": "hayes-turner.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.725Z", - "stale_timestamp": "2034-11-14T12:12:16.725Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.725Z", - "updated": "2024-11-14T12:12:16.725Z", + "culled_timestamp": "2034-12-07T09:30:07.768Z", + "stale_timestamp": "2034-11-23T09:30:07.768Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.768Z", + "updated": "2024-11-23T09:30:07.768Z", "insights_id": null, "tags": [ { - "key": "panel", + "key": "sensor", "value": "cross-platform", - "namespace": "compressing" + "namespace": "backing up" }, { - "key": "alarm", - "value": "multi-byte", - "namespace": "overriding" + "key": "program", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "interface", - "value": "primary", - "namespace": "hacking" + "key": "firewall", + "value": "open-source", + "namespace": "connecting" }, { - "key": "microchip", - "value": "optical", - "namespace": "navigating" + "key": "circuit", + "value": "virtual", + "namespace": "backing up" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "overriding" + "key": "matrix", + "value": "online", + "namespace": "navigating" } ], "type": "system", @@ -8082,39 +8083,39 @@ "policies": [] }, { - "id": "1571019a-9da0-4116-ab9b-25df117f721a", - "display_name": "champlin.example", + "id": "0f8844fc-3f2b-4c0a-b0d0-ae2024e7ca55", + "display_name": "kuhlman-kunze.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.727Z", - "stale_timestamp": "2034-11-14T12:12:16.727Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.727Z", - "updated": "2024-11-14T12:12:16.727Z", + "culled_timestamp": "2034-12-07T09:30:07.761Z", + "stale_timestamp": "2034-11-23T09:30:07.761Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.761Z", + "updated": "2024-11-23T09:30:07.761Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "1080p", - "namespace": "indexing" + "key": "program", + "value": "haptic", + "namespace": "hacking" }, { - "key": "panel", - "value": "wireless", - "namespace": "connecting" + "key": "pixel", + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "capacitor", - "value": "open-source", - "namespace": "indexing" + "key": "port", + "value": "back-end", + "namespace": "parsing" }, { - "key": "matrix", - "value": "virtual", - "namespace": "transmitting" + "key": "transmitter", + "value": "auxiliary", + "namespace": "hacking" }, { - "key": "pixel", - "value": "primary", - "namespace": "quantifying" + "key": "program", + "value": "solid state", + "namespace": "parsing" } ], "type": "system", @@ -8123,39 +8124,39 @@ "policies": [] }, { - "id": "18931741-6e9a-4e0c-9e30-6e803d22befe", - "display_name": "dibbert.test", + "id": "1e69e6f7-7745-4b3c-8fcf-5eaaed0e4734", + "display_name": "corwin-stiedemann.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.715Z", - "stale_timestamp": "2034-11-14T12:12:16.715Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.715Z", - "updated": "2024-11-14T12:12:16.715Z", + "culled_timestamp": "2034-12-07T09:30:07.769Z", + "stale_timestamp": "2034-11-23T09:30:07.769Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.769Z", + "updated": "2024-11-23T09:30:07.769Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "virtual", - "namespace": "transmitting" - }, - { - "key": "card", - "value": "mobile", + "key": "bus", + "value": "solid state", "namespace": "copying" }, { - "key": "interface", - "value": "multi-byte", - "namespace": "programming" + "key": "feed", + "value": "solid state", + "namespace": "indexing" }, { - "key": "feed", - "value": "redundant", + "key": "alarm", + "value": "back-end", "namespace": "overriding" }, { - "key": "interface", + "key": "bus", "value": "multi-byte", - "namespace": "quantifying" + "namespace": "synthesizing" + }, + { + "key": "panel", + "value": "primary", + "namespace": "copying" } ], "type": "system", @@ -8164,39 +8165,39 @@ "policies": [] }, { - "id": "1bc6b2ce-17dd-4446-833a-ca2e7b0d27dd", - "display_name": "bernier.example", + "id": "3f1ea0ac-a60d-437b-a1e2-b7db8dbe9ab3", + "display_name": "hoeger-mosciski.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.738Z", - "stale_timestamp": "2034-11-14T12:12:16.738Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.738Z", - "updated": "2024-11-14T12:12:16.738Z", + "culled_timestamp": "2034-12-07T09:30:07.760Z", + "stale_timestamp": "2034-11-23T09:30:07.760Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.760Z", + "updated": "2024-11-23T09:30:07.760Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "mobile", - "namespace": "compressing" + "key": "protocol", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "feed", - "value": "back-end", - "namespace": "generating" + "key": "protocol", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "port", - "value": "bluetooth", - "namespace": "transmitting" + "key": "system", + "value": "optical", + "namespace": "programming" }, { - "key": "system", - "value": "open-source", + "key": "protocol", + "value": "digital", "namespace": "synthesizing" }, { - "key": "system", - "value": "multi-byte", - "namespace": "parsing" + "key": "hard drive", + "value": "solid state", + "namespace": "backing up" } ], "type": "system", @@ -8205,39 +8206,39 @@ "policies": [] }, { - "id": "240b7be3-2d69-4f7e-86b2-f378f85ac8d9", - "display_name": "mclaughlin.example", + "id": "3fdacfff-05a4-433c-976d-5a1e6c348780", + "display_name": "olson.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.734Z", - "stale_timestamp": "2034-11-14T12:12:16.734Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.734Z", - "updated": "2024-11-14T12:12:16.734Z", + "culled_timestamp": "2034-12-07T09:30:07.770Z", + "stale_timestamp": "2034-11-23T09:30:07.770Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.770Z", + "updated": "2024-11-23T09:30:07.770Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "mobile", - "namespace": "generating" + "key": "port", + "value": "1080p", + "namespace": "overriding" }, { - "key": "firewall", - "value": "multi-byte", - "namespace": "synthesizing" + "key": "protocol", + "value": "neural", + "namespace": "overriding" }, { - "key": "bandwidth", - "value": "optical", - "namespace": "compressing" + "key": "program", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "port", - "value": "optical", - "namespace": "navigating" + "key": "monitor", + "value": "haptic", + "namespace": "connecting" }, { - "key": "microchip", - "value": "back-end", - "namespace": "hacking" + "key": "pixel", + "value": "primary", + "namespace": "bypassing" } ], "type": "system", @@ -8246,39 +8247,39 @@ "policies": [] }, { - "id": "2a56d52b-0808-4fe0-81df-1775ba8c3b8f", - "display_name": "marvin.example", + "id": "5162fada-3786-4e64-9276-d375602f9e0b", + "display_name": "dietrich.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.720Z", - "stale_timestamp": "2034-11-14T12:12:16.720Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.720Z", - "updated": "2024-11-14T12:12:16.720Z", + "culled_timestamp": "2034-12-07T09:30:07.755Z", + "stale_timestamp": "2034-11-23T09:30:07.755Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.755Z", + "updated": "2024-11-23T09:30:07.755Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "multi-byte", - "namespace": "quantifying" + "key": "driver", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "port", - "value": "mobile", - "namespace": "compressing" + "key": "firewall", + "value": "solid state", + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "bluetooth", - "namespace": "indexing" + "key": "interface", + "value": "mobile", + "namespace": "copying" }, { - "key": "system", - "value": "optical", - "namespace": "overriding" + "key": "application", + "value": "cross-platform", + "namespace": "copying" }, { - "key": "firewall", - "value": "neural", - "namespace": "connecting" + "key": "port", + "value": "back-end", + "namespace": "calculating" } ], "type": "system", @@ -8287,39 +8288,39 @@ "policies": [] }, { - "id": "430aa75d-9003-4c99-97c4-928ac140f012", - "display_name": "oberbrunner-greenholt.example", + "id": "54f60dad-c916-422b-b601-c9b14e97c7db", + "display_name": "hintz-dooley.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.729Z", - "stale_timestamp": "2034-11-14T12:12:16.729Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.729Z", - "updated": "2024-11-14T12:12:16.729Z", + "culled_timestamp": "2034-12-07T09:30:07.765Z", + "stale_timestamp": "2034-11-23T09:30:07.765Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.765Z", + "updated": "2024-11-23T09:30:07.766Z", "insights_id": null, "tags": [ + { + "key": "microchip", + "value": "1080p", + "namespace": "calculating" + }, { "key": "hard drive", "value": "mobile", - "namespace": "bypassing" + "namespace": "hacking" }, { - "key": "program", + "key": "capacitor", "value": "optical", - "namespace": "synthesizing" - }, - { - "key": "pixel", - "value": "haptic", "namespace": "connecting" }, { - "key": "interface", - "value": "primary", - "namespace": "backing up" + "key": "protocol", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "interface", - "value": "cross-platform", - "namespace": "overriding" + "key": "feed", + "value": "auxiliary", + "namespace": "programming" } ], "type": "system", @@ -8328,39 +8329,39 @@ "policies": [] }, { - "id": "4c338e9f-ff95-4937-a9c7-6e06dcc4b1b9", - "display_name": "dicki.example", + "id": "5aad8476-0a1d-4814-9b42-24e5c8b319b1", + "display_name": "conn.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.719Z", - "stale_timestamp": "2034-11-14T12:12:16.719Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.719Z", - "updated": "2024-11-14T12:12:16.719Z", + "culled_timestamp": "2034-12-07T09:30:07.773Z", + "stale_timestamp": "2034-11-23T09:30:07.773Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.773Z", + "updated": "2024-11-23T09:30:07.773Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "multi-byte", - "namespace": "parsing" + "key": "bandwidth", + "value": "back-end", + "namespace": "backing up" }, { - "key": "microchip", - "value": "virtual", - "namespace": "quantifying" + "key": "card", + "value": "optical", + "namespace": "parsing" }, { - "key": "pixel", + "key": "hard drive", "value": "digital", - "namespace": "connecting" + "namespace": "quantifying" }, { - "key": "panel", + "key": "bus", "value": "virtual", - "namespace": "compressing" + "namespace": "quantifying" }, { - "key": "driver", - "value": "solid state", - "namespace": "transmitting" + "key": "matrix", + "value": "bluetooth", + "namespace": "hacking" } ], "type": "system", @@ -8369,39 +8370,39 @@ "policies": [] }, { - "id": "4c47ac95-2f8e-46fc-a149-1085fb4ee0f8", - "display_name": "hills.example", + "id": "61e2f929-665d-46f3-929b-5e8cc18c3637", + "display_name": "connelly.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.728Z", - "stale_timestamp": "2034-11-14T12:12:16.728Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.728Z", - "updated": "2024-11-14T12:12:16.728Z", + "culled_timestamp": "2034-12-07T09:30:07.772Z", + "stale_timestamp": "2034-11-23T09:30:07.772Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.772Z", + "updated": "2024-11-23T09:30:07.772Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "back-end", + "key": "protocol", + "value": "cross-platform", "namespace": "bypassing" }, { - "key": "capacitor", - "value": "1080p", - "namespace": "quantifying" + "key": "microchip", + "value": "online", + "namespace": "overriding" }, { - "key": "sensor", - "value": "virtual", - "namespace": "programming" + "key": "application", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "monitor", - "value": "solid state", - "namespace": "parsing" + "key": "panel", + "value": "open-source", + "namespace": "bypassing" }, { - "key": "pixel", - "value": "haptic", - "namespace": "transmitting" + "key": "panel", + "value": "cross-platform", + "namespace": "hacking" } ], "type": "system", @@ -8410,39 +8411,39 @@ "policies": [] }, { - "id": "5231c038-2801-4d5c-9db7-4e12a7d3b95b", - "display_name": "runolfsdottir.test", + "id": "77e9bc0a-6131-4db0-ac9a-58231786f951", + "display_name": "toy.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.733Z", - "stale_timestamp": "2034-11-14T12:12:16.733Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.733Z", - "updated": "2024-11-14T12:12:16.733Z", + "culled_timestamp": "2034-12-07T09:30:07.777Z", + "stale_timestamp": "2034-11-23T09:30:07.777Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.777Z", + "updated": "2024-11-23T09:30:07.777Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "wireless", - "namespace": "overriding" + "key": "array", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "application", - "value": "primary", + "key": "card", + "value": "mobile", "namespace": "overriding" }, { "key": "card", - "value": "wireless", - "namespace": "generating" + "value": "1080p", + "namespace": "copying" }, { - "key": "microchip", - "value": "digital", - "namespace": "overriding" + "key": "driver", + "value": "cross-platform", + "namespace": "quantifying" }, { - "key": "panel", - "value": "haptic", - "namespace": "backing up" + "key": "feed", + "value": "virtual", + "namespace": "quantifying" } ], "type": "system", @@ -8471,39 +8472,39 @@ "value": { "data": [ { - "id": "1d5d992f-c5da-498e-aaee-d27853bc7bb7", - "display_name": "wintheiser.test", + "id": "04c8c010-6650-4e7a-be78-cf5a810a1539", + "display_name": "hackett-waters.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.771Z", - "stale_timestamp": "2034-11-14T12:12:16.771Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.771Z", - "updated": "2024-11-14T12:12:16.771Z", + "culled_timestamp": "2034-12-07T09:30:07.795Z", + "stale_timestamp": "2034-11-23T09:30:07.795Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.795Z", + "updated": "2024-11-23T09:30:07.795Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "primary", - "namespace": "indexing" + "key": "monitor", + "value": "open-source", + "namespace": "copying" }, { - "key": "circuit", + "key": "system", "value": "back-end", - "namespace": "transmitting" + "namespace": "calculating" }, { - "key": "firewall", - "value": "optical", - "namespace": "parsing" + "key": "transmitter", + "value": "virtual", + "namespace": "overriding" }, { - "key": "matrix", - "value": "1080p", - "namespace": "connecting" + "key": "firewall", + "value": "neural", + "namespace": "overriding" }, { - "key": "pixel", - "value": "primary", - "namespace": "compressing" + "key": "driver", + "value": "open-source", + "namespace": "synthesizing" } ], "type": "system", @@ -8512,39 +8513,39 @@ "policies": [] }, { - "id": "2a8a832f-0159-4be5-ab44-7c6bbca62e9e", - "display_name": "kassulke-mraz.example", + "id": "0ab6e4e0-bbce-4a11-a9a6-2c41ed319b37", + "display_name": "reinger.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.788Z", - "stale_timestamp": "2034-11-14T12:12:16.788Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.788Z", - "updated": "2024-11-14T12:12:16.788Z", + "culled_timestamp": "2034-12-07T09:30:07.796Z", + "stale_timestamp": "2034-11-23T09:30:07.796Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.796Z", + "updated": "2024-11-23T09:30:07.796Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "online", - "namespace": "copying" - }, - { - "key": "panel", - "value": "primary", - "namespace": "transmitting" + "key": "transmitter", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "array", - "value": "solid state", - "namespace": "generating" + "key": "sensor", + "value": "optical", + "namespace": "calculating" }, { "key": "circuit", "value": "online", - "namespace": "programming" + "namespace": "overriding" }, { - "key": "transmitter", - "value": "haptic", - "namespace": "quantifying" + "key": "firewall", + "value": "primary", + "namespace": "indexing" + }, + { + "key": "port", + "value": "neural", + "namespace": "programming" } ], "type": "system", @@ -8553,39 +8554,39 @@ "policies": [] }, { - "id": "312390b6-5802-414b-b5e2-2429c4ac16ec", - "display_name": "reilly.example", + "id": "15b130ce-a993-4a02-8c54-7af618410efd", + "display_name": "breitenberg-bernier.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.769Z", - "stale_timestamp": "2034-11-14T12:12:16.769Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.769Z", - "updated": "2024-11-14T12:12:16.769Z", + "culled_timestamp": "2034-12-07T09:30:07.794Z", + "stale_timestamp": "2034-11-23T09:30:07.794Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.794Z", + "updated": "2024-11-23T09:30:07.794Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "multi-byte", - "namespace": "compressing" - }, - { - "key": "hard drive", - "value": "cross-platform", - "namespace": "copying" + "key": "circuit", + "value": "haptic", + "namespace": "hacking" }, { "key": "array", "value": "redundant", - "namespace": "overriding" + "namespace": "hacking" }, { - "key": "card", - "value": "solid state", - "namespace": "connecting" + "key": "monitor", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "array", - "value": "wireless", - "namespace": "calculating" + "key": "interface", + "value": "primary", + "namespace": "transmitting" + }, + { + "key": "pixel", + "value": "digital", + "namespace": "navigating" } ], "type": "system", @@ -8594,39 +8595,39 @@ "policies": [] }, { - "id": "3ae5ef27-a590-4fa4-8a5c-bfaf54269a2d", - "display_name": "weber-waelchi.test", + "id": "16448988-410f-4897-b595-7be8369d126c", + "display_name": "bruen.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.770Z", - "stale_timestamp": "2034-11-14T12:12:16.770Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.770Z", - "updated": "2024-11-14T12:12:16.770Z", + "culled_timestamp": "2034-12-07T09:30:07.806Z", + "stale_timestamp": "2034-11-23T09:30:07.806Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.806Z", + "updated": "2024-11-23T09:30:07.806Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "open-source", - "namespace": "bypassing" + "key": "card", + "value": "wireless", + "namespace": "overriding" }, { - "key": "microchip", - "value": "optical", - "namespace": "indexing" + "key": "hard drive", + "value": "digital", + "namespace": "compressing" }, { - "key": "program", - "value": "solid state", - "namespace": "compressing" + "key": "bus", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "firewall", - "value": "online", + "key": "microchip", + "value": "solid state", "namespace": "navigating" }, { - "key": "system", - "value": "digital", - "namespace": "overriding" + "key": "card", + "value": "online", + "namespace": "backing up" } ], "type": "system", @@ -8635,39 +8636,39 @@ "policies": [] }, { - "id": "3f70e9c1-7a52-45d6-93a8-dd08b19a093e", - "display_name": "howe.example", + "id": "1d10d7b1-d73b-4d69-85e0-7478ef62d3bc", + "display_name": "hermiston-harber.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.783Z", - "stale_timestamp": "2034-11-14T12:12:16.783Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.783Z", - "updated": "2024-11-14T12:12:16.783Z", + "culled_timestamp": "2034-12-07T09:30:07.803Z", + "stale_timestamp": "2034-11-23T09:30:07.803Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.803Z", + "updated": "2024-11-23T09:30:07.803Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "virtual", - "namespace": "connecting" + "key": "port", + "value": "back-end", + "namespace": "parsing" }, { - "key": "capacitor", - "value": "neural", - "namespace": "parsing" + "key": "program", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "digital", + "key": "port", + "value": "auxiliary", "namespace": "parsing" }, { - "key": "matrix", - "value": "wireless", - "namespace": "indexing" + "key": "pixel", + "value": "open-source", + "namespace": "calculating" }, { - "key": "application", - "value": "primary", - "namespace": "quantifying" + "key": "driver", + "value": "optical", + "namespace": "indexing" } ], "type": "system", @@ -8676,39 +8677,39 @@ "policies": [] }, { - "id": "4593a9e6-0883-48e3-863b-f96a5877808a", - "display_name": "treutel-tremblay.example", + "id": "2f00f835-a252-443c-8ab9-bfc19cdac5f8", + "display_name": "okeefe.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.768Z", - "stale_timestamp": "2034-11-14T12:12:16.768Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.768Z", - "updated": "2024-11-14T12:12:16.768Z", + "culled_timestamp": "2034-12-07T09:30:07.802Z", + "stale_timestamp": "2034-11-23T09:30:07.802Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.802Z", + "updated": "2024-11-23T09:30:07.802Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "haptic", - "namespace": "bypassing" + "key": "microchip", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "matrix", - "value": "optical", - "namespace": "transmitting" + "key": "pixel", + "value": "wireless", + "namespace": "overriding" }, { - "key": "port", - "value": "optical", - "namespace": "navigating" + "key": "circuit", + "value": "wireless", + "namespace": "backing up" }, { - "key": "monitor", - "value": "1080p", - "namespace": "quantifying" + "key": "interface", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "circuit", - "value": "back-end", - "namespace": "connecting" + "key": "sensor", + "value": "haptic", + "namespace": "transmitting" } ], "type": "system", @@ -8717,39 +8718,39 @@ "policies": [] }, { - "id": "4680c2d9-58a7-4d01-80db-cbf827ea24f8", - "display_name": "hermiston.test", + "id": "2fd9ca52-53f3-4f6f-b180-60e9ab556b9d", + "display_name": "zboncak.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.787Z", - "stale_timestamp": "2034-11-14T12:12:16.787Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.787Z", - "updated": "2024-11-14T12:12:16.787Z", + "culled_timestamp": "2034-12-07T09:30:07.806Z", + "stale_timestamp": "2034-11-23T09:30:07.806Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.806Z", + "updated": "2024-11-23T09:30:07.806Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "haptic", - "namespace": "connecting" + "key": "transmitter", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "panel", - "value": "digital", - "namespace": "connecting" + "key": "microchip", + "value": "online", + "namespace": "compressing" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "indexing" + "key": "pixel", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "application", - "value": "solid state", + "key": "circuit", + "value": "primary", "namespace": "quantifying" }, { - "key": "interface", - "value": "optical", - "namespace": "generating" + "key": "application", + "value": "virtual", + "namespace": "calculating" } ], "type": "system", @@ -8758,39 +8759,39 @@ "policies": [] }, { - "id": "4b910fd5-5cff-42ce-a844-cc83fe40c5a5", - "display_name": "schultz.example", + "id": "407d7fd9-8f49-404d-99b5-2c5e75543c04", + "display_name": "fritsch.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.784Z", - "stale_timestamp": "2034-11-14T12:12:16.784Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.784Z", - "updated": "2024-11-14T12:12:16.784Z", + "culled_timestamp": "2034-12-07T09:30:07.811Z", + "stale_timestamp": "2034-11-23T09:30:07.811Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.811Z", + "updated": "2024-11-23T09:30:07.811Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "cross-platform", - "namespace": "copying" + "key": "transmitter", + "value": "virtual", + "namespace": "connecting" }, { - "key": "firewall", - "value": "open-source", - "namespace": "backing up" + "key": "application", + "value": "solid state", + "namespace": "parsing" }, { - "key": "panel", - "value": "multi-byte", - "namespace": "hacking" + "key": "feed", + "value": "back-end", + "namespace": "connecting" }, { - "key": "pixel", - "value": "open-source", - "namespace": "transmitting" + "key": "microchip", + "value": "cross-platform", + "namespace": "calculating" }, { - "key": "sensor", - "value": "mobile", - "namespace": "connecting" + "key": "monitor", + "value": "virtual", + "namespace": "copying" } ], "type": "system", @@ -8799,39 +8800,39 @@ "policies": [] }, { - "id": "638a6c28-e464-4e4f-8272-2bd5117bc4e5", - "display_name": "dubuque-anderson.test", + "id": "4395c053-f0e1-4115-88be-74ce82fa9fbf", + "display_name": "leannon.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.765Z", - "stale_timestamp": "2034-11-14T12:12:16.765Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.765Z", - "updated": "2024-11-14T12:12:16.765Z", + "culled_timestamp": "2034-12-07T09:30:07.808Z", + "stale_timestamp": "2034-11-23T09:30:07.808Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.808Z", + "updated": "2024-11-23T09:30:07.808Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "digital", - "namespace": "bypassing" + "key": "panel", + "value": "wireless", + "namespace": "navigating" }, { - "key": "application", - "value": "online", - "namespace": "backing up" + "key": "feed", + "value": "wireless", + "namespace": "generating" }, { - "key": "sensor", - "value": "online", - "namespace": "bypassing" + "key": "program", + "value": "cross-platform", + "namespace": "transmitting" }, { - "key": "microchip", + "key": "application", "value": "redundant", - "namespace": "transmitting" + "namespace": "synthesizing" }, { - "key": "application", - "value": "virtual", - "namespace": "connecting" + "key": "bandwidth", + "value": "online", + "namespace": "indexing" } ], "type": "system", @@ -8840,39 +8841,39 @@ "policies": [] }, { - "id": "67f16bca-8ff7-43a2-b242-d64ccb763d89", - "display_name": "bechtelar.test", + "id": "57919c4d-0901-49e9-89ac-e21028677f4e", + "display_name": "abshire-collier.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.772Z", - "stale_timestamp": "2034-11-14T12:12:16.772Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.772Z", - "updated": "2024-11-14T12:12:16.772Z", + "culled_timestamp": "2034-12-07T09:30:07.812Z", + "stale_timestamp": "2034-11-23T09:30:07.812Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.812Z", + "updated": "2024-11-23T09:30:07.812Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "optical", - "namespace": "overriding" + "key": "monitor", + "value": "digital", + "namespace": "copying" }, { - "key": "circuit", - "value": "open-source", - "namespace": "quantifying" + "key": "firewall", + "value": "mobile", + "namespace": "compressing" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "quantifying" + "key": "capacitor", + "value": "bluetooth", + "namespace": "transmitting" }, { "key": "firewall", - "value": "wireless", - "namespace": "synthesizing" + "value": "1080p", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "mobile", - "namespace": "calculating" + "key": "bus", + "value": "digital", + "namespace": "transmitting" } ], "type": "system", @@ -8980,7 +8981,7 @@ "tags": [ "Systems" ], - "description": "This feature is exclusively used by the frontend", + "description": "This feature is exclusively used by the frontend.", "operationId": "SystemsOS", "deprecated": true, "responses": { @@ -9033,7 +9034,7 @@ "tags": [ "Systems" ], - "description": "Returns a System", + "description": "Get information about one specific system.", "operationId": "System", "responses": { "200": { @@ -9044,39 +9045,39 @@ "Returns a System": { "value": { "data": { - "id": "f09c0e90-066e-481a-822e-387c5a669f21", - "display_name": "larson-grady.test", + "id": "f24dfc9f-d2a2-4a3e-9be5-9a6bd6267e86", + "display_name": "hyatt-ondricka.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:16.945Z", - "stale_timestamp": "2034-11-14T12:12:16.945Z", - "stale_warning_timestamp": "2034-11-21T12:12:16.945Z", - "updated": "2024-11-14T12:12:16.945Z", + "culled_timestamp": "2034-12-07T09:30:07.938Z", + "stale_timestamp": "2034-11-23T09:30:07.938Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.938Z", + "updated": "2024-11-23T09:30:07.938Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "digital", - "namespace": "backing up" + "key": "hard drive", + "value": "mobile", + "namespace": "overriding" }, { - "key": "application", - "value": "solid state", - "namespace": "navigating" + "key": "capacitor", + "value": "mobile", + "namespace": "copying" }, { - "key": "application", - "value": "open-source", - "namespace": "programming" + "key": "panel", + "value": "online", + "namespace": "indexing" }, { "key": "hard drive", - "value": "multi-byte", - "namespace": "transmitting" + "value": "haptic", + "namespace": "copying" }, { - "key": "firewall", - "value": "optical", - "namespace": "parsing" + "key": "bus", + "value": "redundant", + "namespace": "bypassing" } ], "type": "system", @@ -9113,7 +9114,7 @@ "Description of an error when requesting a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 88a626c1-6876-4688-b9d7-d847ffd6e526" + "V2::System not found with ID 64715ad4-0c3e-4b76-af30-86907d871e62" ] }, "summary": "", @@ -9231,7 +9232,7 @@ "tags": [ "Policies" ], - "description": "Lists Systems assigned to a Policy", + "description": "Retrieve all of the systems assigned to a specific policy.", "operationId": "PolicySystems", "responses": { "200": { @@ -9243,39 +9244,39 @@ "value": { "data": [ { - "id": "148faa27-8097-49da-b7ba-407e012596e6", - "display_name": "hilll.example", + "id": "0b072e35-b24b-4e91-9923-763858c4699e", + "display_name": "olson.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.164Z", - "stale_timestamp": "2034-11-14T12:12:17.164Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.164Z", - "updated": "2024-11-14T12:12:17.164Z", + "culled_timestamp": "2034-12-07T09:30:08.040Z", + "stale_timestamp": "2034-11-23T09:30:08.040Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.040Z", + "updated": "2024-11-23T09:30:08.040Z", "insights_id": null, "tags": [ { "key": "feed", - "value": "auxiliary", - "namespace": "programming" + "value": "online", + "namespace": "calculating" }, { - "key": "firewall", - "value": "digital", - "namespace": "indexing" + "key": "pixel", + "value": "open-source", + "namespace": "hacking" }, { - "key": "port", - "value": "online", - "namespace": "indexing" + "key": "firewall", + "value": "multi-byte", + "namespace": "generating" }, { "key": "feed", - "value": "haptic", - "namespace": "overriding" + "value": "multi-byte", + "namespace": "generating" }, { - "key": "interface", - "value": "digital", - "namespace": "synthesizing" + "key": "hard drive", + "value": "1080p", + "namespace": "quantifying" } ], "type": "system", @@ -9283,39 +9284,39 @@ "os_minor_version": 0 }, { - "id": "18545cdf-9c04-4bd4-bf42-663172ff77c4", - "display_name": "kautzer.example", + "id": "1451e499-3556-440c-8f98-3da37304ee1e", + "display_name": "stark.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.102Z", - "stale_timestamp": "2034-11-14T12:12:17.102Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.102Z", - "updated": "2024-11-14T12:12:17.102Z", + "culled_timestamp": "2034-12-07T09:30:08.070Z", + "stale_timestamp": "2034-11-23T09:30:08.070Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.070Z", + "updated": "2024-11-23T09:30:08.070Z", "insights_id": null, "tags": [ { "key": "system", - "value": "primary", - "namespace": "overriding" + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "interface", - "value": "open-source", - "namespace": "parsing" + "key": "hard drive", + "value": "online", + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "redundant", - "namespace": "transmitting" + "key": "microchip", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "feed", - "value": "redundant", - "namespace": "transmitting" + "key": "matrix", + "value": "auxiliary", + "namespace": "parsing" }, { - "key": "firewall", - "value": "digital", - "namespace": "programming" + "key": "card", + "value": "redundant", + "namespace": "bypassing" } ], "type": "system", @@ -9323,39 +9324,39 @@ "os_minor_version": 0 }, { - "id": "1fd351e5-271d-4e23-8eed-c87f977082d8", - "display_name": "robel.example", + "id": "1d002b12-6098-4475-a78a-90d642d4c074", + "display_name": "hintz.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.120Z", - "stale_timestamp": "2034-11-14T12:12:17.120Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.120Z", - "updated": "2024-11-14T12:12:17.120Z", + "culled_timestamp": "2034-12-07T09:30:07.997Z", + "stale_timestamp": "2034-11-23T09:30:07.997Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.997Z", + "updated": "2024-11-23T09:30:07.997Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "neural", - "namespace": "navigating" + "key": "array", + "value": "mobile", + "namespace": "connecting" }, { - "key": "array", + "key": "alarm", "value": "primary", - "namespace": "generating" + "namespace": "indexing" }, { - "key": "array", - "value": "back-end", - "namespace": "hacking" + "key": "transmitter", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "firewall", - "value": "1080p", - "namespace": "generating" + "key": "matrix", + "value": "cross-platform", + "namespace": "quantifying" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "parsing" + "key": "application", + "value": "back-end", + "namespace": "overriding" } ], "type": "system", @@ -9363,39 +9364,39 @@ "os_minor_version": 0 }, { - "id": "2fba5f67-b9c4-4e5f-a963-16f80b2f28c2", - "display_name": "ward-predovic.example", + "id": "472d3259-f50b-48f1-84b1-20ed11db993e", + "display_name": "brown-yost.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.111Z", - "stale_timestamp": "2034-11-14T12:12:17.111Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.111Z", - "updated": "2024-11-14T12:12:17.111Z", + "culled_timestamp": "2034-12-07T09:30:08.003Z", + "stale_timestamp": "2034-11-23T09:30:08.003Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.003Z", + "updated": "2024-11-23T09:30:08.003Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "haptic", - "namespace": "navigating" + "key": "hard drive", + "value": "optical", + "namespace": "parsing" }, { - "key": "capacitor", - "value": "open-source", - "namespace": "indexing" + "key": "program", + "value": "bluetooth", + "namespace": "hacking" }, { - "key": "pixel", - "value": "online", - "namespace": "compressing" + "key": "interface", + "value": "primary", + "namespace": "calculating" }, { - "key": "firewall", - "value": "1080p", - "namespace": "backing up" + "key": "panel", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "system", - "value": "optical", - "namespace": "calculating" + "key": "transmitter", + "value": "redundant", + "namespace": "generating" } ], "type": "system", @@ -9403,39 +9404,39 @@ "os_minor_version": 0 }, { - "id": "32fd6960-8b0b-4e30-8727-a55303286cb5", - "display_name": "heaney.example", + "id": "5fa793ba-5409-4b7a-918b-97f52f20037d", + "display_name": "oconner.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.084Z", - "stale_timestamp": "2034-11-14T12:12:17.084Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.084Z", - "updated": "2024-11-14T12:12:17.084Z", + "culled_timestamp": "2034-12-07T09:30:08.079Z", + "stale_timestamp": "2034-11-23T09:30:08.079Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.079Z", + "updated": "2024-11-23T09:30:08.080Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "1080p", + "key": "monitor", + "value": "bluetooth", "namespace": "programming" }, { - "key": "system", - "value": "digital", - "namespace": "compressing" + "key": "circuit", + "value": "neural", + "namespace": "programming" }, { - "key": "microchip", - "value": "open-source", - "namespace": "indexing" - }, + "key": "feed", + "value": "online", + "namespace": "backing up" + }, { - "key": "panel", + "key": "driver", "value": "cross-platform", - "namespace": "compressing" + "namespace": "bypassing" }, { - "key": "transmitter", - "value": "cross-platform", - "namespace": "overriding" + "key": "firewall", + "value": "virtual", + "namespace": "hacking" } ], "type": "system", @@ -9443,38 +9444,38 @@ "os_minor_version": 0 }, { - "id": "33107e76-cf69-4841-ad39-6188447f7568", - "display_name": "auer.example", + "id": "6128214c-b3bc-4130-bd91-52e0a936ef9a", + "display_name": "conn.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.078Z", - "stale_timestamp": "2034-11-14T12:12:17.078Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.078Z", - "updated": "2024-11-14T12:12:17.078Z", + "culled_timestamp": "2034-12-07T09:30:08.018Z", + "stale_timestamp": "2034-11-23T09:30:08.018Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.018Z", + "updated": "2024-11-23T09:30:08.018Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "back-end", - "namespace": "connecting" + "key": "feed", + "value": "mobile", + "namespace": "compressing" }, { - "key": "monitor", - "value": "auxiliary", - "namespace": "backing up" + "key": "card", + "value": "open-source", + "namespace": "calculating" }, { - "key": "capacitor", - "value": "online", - "namespace": "parsing" + "key": "bandwidth", + "value": "virtual", + "namespace": "navigating" }, { - "key": "card", - "value": "virtual", - "namespace": "parsing" + "key": "program", + "value": "open-source", + "namespace": "backing up" }, { - "key": "transmitter", - "value": "primary", + "key": "feed", + "value": "multi-byte", "namespace": "overriding" } ], @@ -9483,39 +9484,39 @@ "os_minor_version": 0 }, { - "id": "34f373f9-030a-49c1-b608-84c462fc5d7b", - "display_name": "hickle-connelly.example", + "id": "66959695-b4a7-47fa-b2b9-58f3f2b9271e", + "display_name": "kohler.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.133Z", - "stale_timestamp": "2034-11-14T12:12:17.133Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.133Z", - "updated": "2024-11-14T12:12:17.133Z", + "culled_timestamp": "2034-12-07T09:30:07.975Z", + "stale_timestamp": "2034-11-23T09:30:07.975Z", + "stale_warning_timestamp": "2034-11-30T09:30:07.975Z", + "updated": "2024-11-23T09:30:07.975Z", "insights_id": null, "tags": [ - { - "key": "card", - "value": "online", - "namespace": "calculating" - }, { "key": "microchip", - "value": "mobile", + "value": "back-end", "namespace": "parsing" }, { - "key": "transmitter", - "value": "primary", - "namespace": "compressing" + "key": "sensor", + "value": "haptic", + "namespace": "navigating" }, { - "key": "interface", - "value": "virtual", - "namespace": "parsing" + "key": "array", + "value": "online", + "namespace": "indexing" }, { - "key": "firewall", - "value": "optical", - "namespace": "overriding" + "key": "driver", + "value": "multi-byte", + "namespace": "connecting" + }, + { + "key": "port", + "value": "primary", + "namespace": "calculating" } ], "type": "system", @@ -9523,39 +9524,39 @@ "os_minor_version": 0 }, { - "id": "442be36a-1fa1-4de7-8b4f-7f9c556d7f14", - "display_name": "graham.test", + "id": "66b8d413-ce7b-4c6a-8433-f77930fa82c7", + "display_name": "wolff-skiles.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.089Z", - "stale_timestamp": "2034-11-14T12:12:17.089Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.089Z", - "updated": "2024-11-14T12:12:17.089Z", + "culled_timestamp": "2034-12-07T09:30:08.098Z", + "stale_timestamp": "2034-11-23T09:30:08.098Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.098Z", + "updated": "2024-11-23T09:30:08.098Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "open-source", - "namespace": "backing up" + "key": "program", + "value": "multi-byte", + "namespace": "quantifying" }, { - "key": "microchip", - "value": "neural", - "namespace": "navigating" + "key": "driver", + "value": "1080p", + "namespace": "copying" }, { - "key": "hard drive", - "value": "multi-byte", - "namespace": "overriding" + "key": "program", + "value": "online", + "namespace": "transmitting" }, { - "key": "microchip", - "value": "wireless", - "namespace": "compressing" + "key": "array", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "capacitor", - "value": "haptic", - "namespace": "calculating" + "key": "matrix", + "value": "cross-platform", + "namespace": "hacking" } ], "type": "system", @@ -9563,39 +9564,39 @@ "os_minor_version": 0 }, { - "id": "46fc5af9-df78-470a-aee9-63cae785e668", - "display_name": "spinka.example", + "id": "73617798-231a-4248-b14d-9b129e77b0c3", + "display_name": "tillman.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.033Z", - "stale_timestamp": "2034-11-14T12:12:17.033Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.033Z", - "updated": "2024-11-14T12:12:17.033Z", + "culled_timestamp": "2034-12-07T09:30:08.103Z", + "stale_timestamp": "2034-11-23T09:30:08.103Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.103Z", + "updated": "2024-11-23T09:30:08.103Z", "insights_id": null, "tags": [ { "key": "program", - "value": "digital", - "namespace": "generating" + "value": "open-source", + "namespace": "calculating" }, { - "key": "matrix", - "value": "solid state", - "namespace": "programming" + "key": "application", + "value": "redundant", + "namespace": "calculating" }, { - "key": "circuit", - "value": "primary", - "namespace": "calculating" + "key": "hard drive", + "value": "neural", + "namespace": "transmitting" }, { "key": "bandwidth", - "value": "primary", - "namespace": "quantifying" + "value": "wireless", + "namespace": "hacking" }, { - "key": "panel", - "value": "mobile", - "namespace": "backing up" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "generating" } ], "type": "system", @@ -9603,39 +9604,39 @@ "os_minor_version": 0 }, { - "id": "55e5c951-2e0c-400e-8369-74125353d88a", - "display_name": "kuphal.test", + "id": "75b7b206-e71d-400b-b136-0cb5c8410552", + "display_name": "weimann.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.098Z", - "stale_timestamp": "2034-11-14T12:12:17.098Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.098Z", - "updated": "2024-11-14T12:12:17.098Z", + "culled_timestamp": "2034-12-07T09:30:08.034Z", + "stale_timestamp": "2034-11-23T09:30:08.034Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.034Z", + "updated": "2024-11-23T09:30:08.034Z", "insights_id": null, "tags": [ { - "key": "pixel", + "key": "microchip", "value": "cross-platform", - "namespace": "indexing" + "namespace": "bypassing" }, { - "key": "panel", - "value": "bluetooth", - "namespace": "generating" + "key": "application", + "value": "haptic", + "namespace": "overriding" }, { - "key": "protocol", - "value": "virtual", - "namespace": "programming" + "key": "driver", + "value": "mobile", + "namespace": "transmitting" }, { - "key": "program", - "value": "virtual", - "namespace": "overriding" + "key": "circuit", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "alarm", - "value": "wireless", - "namespace": "overriding" + "key": "port", + "value": "back-end", + "namespace": "copying" } ], "type": "system", @@ -9650,9 +9651,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/d747dd75-1d91-48b7-89ca-d958f237b437/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/d747dd75-1d91-48b7-89ca-d958f237b437/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/d747dd75-1d91-48b7-89ca-d958f237b437/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/4d57913c-ca1d-47af-9717-98f09e60d49b/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/4d57913c-ca1d-47af-9717-98f09e60d49b/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/4d57913c-ca1d-47af-9717-98f09e60d49b/systems?limit=10&offset=10" } }, "summary": "", @@ -9662,39 +9663,39 @@ "value": { "data": [ { - "id": "079bb8c8-3c2e-4e4c-bdee-d7aae8d99a41", - "display_name": "skiles.test", + "id": "0e3b36fc-7f02-4a9d-a4b4-7f8aac185ffb", + "display_name": "carroll.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.276Z", - "stale_timestamp": "2034-11-14T12:12:17.276Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.276Z", - "updated": "2024-11-14T12:12:17.276Z", + "culled_timestamp": "2034-12-07T09:30:08.234Z", + "stale_timestamp": "2034-11-23T09:30:08.234Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.234Z", + "updated": "2024-11-23T09:30:08.234Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "mobile", - "namespace": "navigating" + "key": "alarm", + "value": "wireless", + "namespace": "quantifying" }, { - "key": "transmitter", - "value": "virtual", + "key": "monitor", + "value": "cross-platform", "namespace": "navigating" }, { - "key": "firewall", - "value": "1080p", - "namespace": "synthesizing" + "key": "alarm", + "value": "wireless", + "namespace": "connecting" }, { - "key": "application", - "value": "auxiliary", - "namespace": "copying" + "key": "array", + "value": "optical", + "namespace": "connecting" }, { - "key": "matrix", - "value": "optical", - "namespace": "calculating" + "key": "driver", + "value": "virtual", + "namespace": "parsing" } ], "type": "system", @@ -9702,39 +9703,39 @@ "os_minor_version": 0 }, { - "id": "0ca57bc9-efa8-46d6-b867-2c8c458f126e", - "display_name": "leffler-kertzmann.test", + "id": "14e92554-29fb-401f-befe-ad87733faf20", + "display_name": "moore-bailey.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.311Z", - "stale_timestamp": "2034-11-14T12:12:17.311Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.311Z", - "updated": "2024-11-14T12:12:17.311Z", + "culled_timestamp": "2034-12-07T09:30:08.154Z", + "stale_timestamp": "2034-11-23T09:30:08.154Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.154Z", + "updated": "2024-11-23T09:30:08.154Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "auxiliary", - "namespace": "programming" + "key": "application", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "optical", - "namespace": "calculating" + "key": "transmitter", + "value": "online", + "namespace": "transmitting" }, { - "key": "feed", - "value": "wireless", - "namespace": "generating" + "key": "application", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "feed", - "value": "solid state", - "namespace": "calculating" + "key": "sensor", + "value": "primary", + "namespace": "copying" }, { - "key": "monitor", - "value": "open-source", - "namespace": "parsing" + "key": "capacitor", + "value": "1080p", + "namespace": "synthesizing" } ], "type": "system", @@ -9742,39 +9743,39 @@ "os_minor_version": 0 }, { - "id": "14185ad1-0deb-4a67-804a-5776316c97a3", - "display_name": "cartwright-dickinson.test", + "id": "1e43e243-bb97-44b2-8def-16c1da80ca72", + "display_name": "farrell.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.266Z", - "stale_timestamp": "2034-11-14T12:12:17.266Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.266Z", - "updated": "2024-11-14T12:12:17.266Z", + "culled_timestamp": "2034-12-07T09:30:08.209Z", + "stale_timestamp": "2034-11-23T09:30:08.209Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.209Z", + "updated": "2024-11-23T09:30:08.209Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "open-source", + "key": "hard drive", + "value": "multi-byte", "namespace": "hacking" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "calculating" + "key": "transmitter", + "value": "virtual", + "namespace": "connecting" }, { - "key": "bus", - "value": "primary", - "namespace": "navigating" + "key": "microchip", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "port", - "value": "open-source", - "namespace": "overriding" + "key": "alarm", + "value": "haptic", + "namespace": "programming" }, { - "key": "capacitor", - "value": "online", - "namespace": "bypassing" + "key": "panel", + "value": "back-end", + "namespace": "transmitting" } ], "type": "system", @@ -9782,39 +9783,39 @@ "os_minor_version": 0 }, { - "id": "24262c39-0a88-46b4-afd8-6a49d3e87d73", - "display_name": "leffler.test", + "id": "21f97f65-38df-4adc-ad9c-bf465e3b9694", + "display_name": "von.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.229Z", - "stale_timestamp": "2034-11-14T12:12:17.229Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.229Z", - "updated": "2024-11-14T12:12:17.229Z", + "culled_timestamp": "2034-12-07T09:30:08.214Z", + "stale_timestamp": "2034-11-23T09:30:08.214Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.214Z", + "updated": "2024-11-23T09:30:08.214Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "mobile", - "namespace": "transmitting" + "key": "feed", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "microchip", - "value": "wireless", - "namespace": "indexing" + "key": "pixel", + "value": "neural", + "namespace": "calculating" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "overriding" + "key": "array", + "value": "solid state", + "namespace": "copying" }, { - "key": "port", - "value": "auxiliary", - "namespace": "indexing" + "key": "application", + "value": "primary", + "namespace": "overriding" }, { - "key": "transmitter", - "value": "auxiliary", - "namespace": "copying" + "key": "microchip", + "value": "back-end", + "namespace": "hacking" } ], "type": "system", @@ -9822,39 +9823,39 @@ "os_minor_version": 0 }, { - "id": "34678d0b-c3b5-46f5-9fcb-c4333039077c", - "display_name": "moore-hills.example", + "id": "3a66bbd9-24a6-49fd-a459-861e723c6fff", + "display_name": "hauck-bogisich.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.302Z", - "stale_timestamp": "2034-11-14T12:12:17.302Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.302Z", - "updated": "2024-11-14T12:12:17.302Z", + "culled_timestamp": "2034-12-07T09:30:08.188Z", + "stale_timestamp": "2034-11-23T09:30:08.188Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.188Z", + "updated": "2024-11-23T09:30:08.188Z", "insights_id": null, "tags": [ { "key": "circuit", - "value": "virtual", - "namespace": "generating" + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "capacitor", - "value": "haptic", - "namespace": "parsing" + "key": "feed", + "value": "neural", + "namespace": "indexing" }, { - "key": "sensor", - "value": "back-end", - "namespace": "transmitting" + "key": "pixel", + "value": "cross-platform", + "namespace": "synthesizing" }, { - "key": "card", - "value": "multi-byte", - "namespace": "navigating" + "key": "port", + "value": "online", + "namespace": "calculating" }, { "key": "application", - "value": "wireless", - "namespace": "bypassing" + "value": "cross-platform", + "namespace": "parsing" } ], "type": "system", @@ -9862,39 +9863,39 @@ "os_minor_version": 0 }, { - "id": "393d928c-e755-4d6f-851f-02b19e32fc47", - "display_name": "marquardt.example", + "id": "3aa2b0f8-e967-4802-b011-c450d9ea447e", + "display_name": "bosco.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.247Z", - "stale_timestamp": "2034-11-14T12:12:17.247Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.247Z", - "updated": "2024-11-14T12:12:17.247Z", + "culled_timestamp": "2034-12-07T09:30:08.260Z", + "stale_timestamp": "2034-11-23T09:30:08.260Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.260Z", + "updated": "2024-11-23T09:30:08.260Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "optical", - "namespace": "bypassing" + "key": "driver", + "value": "cross-platform", + "namespace": "overriding" }, { - "key": "matrix", - "value": "haptic", - "namespace": "overriding" + "key": "capacitor", + "value": "mobile", + "namespace": "navigating" }, { - "key": "panel", - "value": "auxiliary", - "namespace": "backing up" + "key": "microchip", + "value": "solid state", + "namespace": "parsing" }, { - "key": "card", - "value": "primary", - "namespace": "connecting" + "key": "bandwidth", + "value": "virtual", + "namespace": "parsing" }, { - "key": "driver", - "value": "redundant", - "namespace": "navigating" + "key": "capacitor", + "value": "optical", + "namespace": "backing up" } ], "type": "system", @@ -9902,39 +9903,39 @@ "os_minor_version": 0 }, { - "id": "5311e484-f47d-47ec-8478-d6401715a9a5", - "display_name": "mraz.example", + "id": "46982a06-d7db-4c3e-832a-b4bc14679fa2", + "display_name": "reilly.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.243Z", - "stale_timestamp": "2034-11-14T12:12:17.243Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.243Z", - "updated": "2024-11-14T12:12:17.243Z", + "culled_timestamp": "2034-12-07T09:30:08.219Z", + "stale_timestamp": "2034-11-23T09:30:08.219Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.219Z", + "updated": "2024-11-23T09:30:08.219Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "open-source", + "key": "panel", + "value": "back-end", "namespace": "programming" }, - { - "key": "transmitter", - "value": "solid state", - "namespace": "parsing" - }, { "key": "capacitor", - "value": "online", + "value": "wireless", "namespace": "copying" }, { - "key": "circuit", - "value": "wireless", - "namespace": "programming" + "key": "capacitor", + "value": "primary", + "namespace": "transmitting" }, { - "key": "application", - "value": "mobile", + "key": "driver", + "value": "primary", "namespace": "backing up" + }, + { + "key": "matrix", + "value": "optical", + "namespace": "indexing" } ], "type": "system", @@ -9942,39 +9943,39 @@ "os_minor_version": 0 }, { - "id": "533009bd-af6a-4e03-9503-02c71f8e7cb7", - "display_name": "jaskolski.test", + "id": "4b6c7966-bf2c-457c-bea9-646c759eedbe", + "display_name": "rohan.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.197Z", - "stale_timestamp": "2034-11-14T12:12:17.197Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.197Z", - "updated": "2024-11-14T12:12:17.197Z", + "culled_timestamp": "2034-12-07T09:30:08.144Z", + "stale_timestamp": "2034-11-23T09:30:08.144Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.144Z", + "updated": "2024-11-23T09:30:08.144Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "optical", - "namespace": "programming" + "key": "interface", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "card", - "value": "bluetooth", - "namespace": "bypassing" + "key": "sensor", + "value": "primary", + "namespace": "overriding" }, { - "key": "alarm", - "value": "1080p", - "namespace": "compressing" + "key": "microchip", + "value": "multi-byte", + "namespace": "programming" }, { - "key": "driver", - "value": "wireless", - "namespace": "calculating" + "key": "card", + "value": "haptic", + "namespace": "compressing" }, { - "key": "bandwidth", - "value": "mobile", - "namespace": "programming" + "key": "circuit", + "value": "primary", + "namespace": "bypassing" } ], "type": "system", @@ -9982,39 +9983,39 @@ "os_minor_version": 0 }, { - "id": "60d01227-6159-4b5b-8441-8be7c6e78be5", - "display_name": "waelchi.test", + "id": "4d1f4133-9d43-458b-8879-e8e4e4f95fd8", + "display_name": "dibbert.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.225Z", - "stale_timestamp": "2034-11-14T12:12:17.225Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.225Z", - "updated": "2024-11-14T12:12:17.225Z", + "culled_timestamp": "2034-12-07T09:30:08.240Z", + "stale_timestamp": "2034-11-23T09:30:08.240Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.240Z", + "updated": "2024-11-23T09:30:08.240Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "virtual", - "namespace": "bypassing" + "key": "hard drive", + "value": "online", + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "1080p", - "namespace": "overriding" + "key": "application", + "value": "online", + "namespace": "calculating" }, { - "key": "feed", - "value": "digital", - "namespace": "quantifying" + "key": "program", + "value": "primary", + "namespace": "transmitting" }, { - "key": "panel", - "value": "1080p", - "namespace": "transmitting" + "key": "transmitter", + "value": "back-end", + "namespace": "quantifying" }, { - "key": "feed", - "value": "open-source", - "namespace": "indexing" + "key": "pixel", + "value": "haptic", + "namespace": "calculating" } ], "type": "system", @@ -10022,39 +10023,39 @@ "os_minor_version": 0 }, { - "id": "6a1bcdf4-20a9-4031-85cf-2fe0ecf24568", - "display_name": "schaden-pagac.test", + "id": "4e5ab2ca-d144-4e9d-90fb-236bc98a5ae0", + "display_name": "gorczany.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.270Z", - "stale_timestamp": "2034-11-14T12:12:17.270Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.270Z", - "updated": "2024-11-14T12:12:17.270Z", + "culled_timestamp": "2034-12-07T09:30:08.182Z", + "stale_timestamp": "2034-11-23T09:30:08.182Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.182Z", + "updated": "2024-11-23T09:30:08.182Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "digital", - "namespace": "parsing" + "key": "system", + "value": "online", + "namespace": "bypassing" }, { - "key": "feed", - "value": "online", - "namespace": "calculating" + "key": "capacitor", + "value": "optical", + "namespace": "backing up" }, { - "key": "array", - "value": "redundant", + "key": "circuit", + "value": "digital", "namespace": "indexing" }, { - "key": "pixel", - "value": "open-source", - "namespace": "overriding" + "key": "monitor", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "alarm", - "value": "digital", - "namespace": "quantifying" + "key": "application", + "value": "online", + "namespace": "calculating" } ], "type": "system", @@ -10070,9 +10071,9 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/policies/720e75ed-5790-40b8-9ddb-7f5973e6723e/systems?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/policies/720e75ed-5790-40b8-9ddb-7f5973e6723e/systems?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/policies/720e75ed-5790-40b8-9ddb-7f5973e6723e/systems?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/policies/0d17f9ff-2b79-4a90-ad65-9851b899e142/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/0d17f9ff-2b79-4a90-ad65-9851b899e142/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/0d17f9ff-2b79-4a90-ad65-9851b899e142/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", @@ -10082,39 +10083,39 @@ "value": { "data": [ { - "id": "007fc59a-4499-4109-8466-9aefdf19e35f", - "display_name": "christiansen.example", + "id": "073920fd-6371-476b-9d94-59d365b2bf36", + "display_name": "jacobs.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.418Z", - "stale_timestamp": "2034-11-14T12:12:17.418Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.418Z", - "updated": "2024-11-14T12:12:17.418Z", + "culled_timestamp": "2034-12-07T09:30:08.355Z", + "stale_timestamp": "2034-11-23T09:30:08.355Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.355Z", + "updated": "2024-11-23T09:30:08.355Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "cross-platform", - "namespace": "parsing" + "key": "circuit", + "value": "virtual", + "namespace": "synthesizing" }, { - "key": "matrix", - "value": "primary", - "namespace": "navigating" + "key": "capacitor", + "value": "neural", + "namespace": "connecting" }, { - "key": "feed", - "value": "back-end", - "namespace": "generating" + "key": "array", + "value": "optical", + "namespace": "copying" }, { - "key": "protocol", + "key": "port", "value": "bluetooth", - "namespace": "hacking" + "namespace": "transmitting" }, { - "key": "microchip", - "value": "solid state", - "namespace": "indexing" + "key": "hard drive", + "value": "digital", + "namespace": "parsing" } ], "type": "system", @@ -10122,39 +10123,39 @@ "os_minor_version": 0 }, { - "id": "067c9c35-5662-4211-baa7-3f20d0a1fef5", - "display_name": "runte.example", + "id": "076877be-3449-468d-addc-73fe82453e08", + "display_name": "kuhn.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.409Z", - "stale_timestamp": "2034-11-14T12:12:17.409Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.409Z", - "updated": "2024-11-14T12:12:17.409Z", + "culled_timestamp": "2034-12-07T09:30:08.328Z", + "stale_timestamp": "2034-11-23T09:30:08.328Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.328Z", + "updated": "2024-11-23T09:30:08.328Z", "insights_id": null, "tags": [ { - "key": "hard drive", + "key": "sensor", "value": "auxiliary", - "namespace": "compressing" + "namespace": "bypassing" }, { - "key": "circuit", - "value": "back-end", - "namespace": "compressing" + "key": "bandwidth", + "value": "optical", + "namespace": "connecting" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "quantifying" + "key": "matrix", + "value": "bluetooth", + "namespace": "backing up" }, { - "key": "system", - "value": "wireless", - "namespace": "navigating" + "key": "port", + "value": "redundant", + "namespace": "backing up" }, { - "key": "bandwidth", - "value": "1080p", - "namespace": "overriding" + "key": "pixel", + "value": "primary", + "namespace": "transmitting" } ], "type": "system", @@ -10162,38 +10163,38 @@ "os_minor_version": 0 }, { - "id": "09ff46d8-61c3-4b4d-8126-69a0babb8fdb", - "display_name": "fritsch-kirlin.test", + "id": "0907bf45-b228-460b-989a-8414b7429f12", + "display_name": "kerluke-lowe.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.435Z", - "stale_timestamp": "2034-11-14T12:12:17.435Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.435Z", - "updated": "2024-11-14T12:12:17.435Z", + "culled_timestamp": "2034-12-07T09:30:08.285Z", + "stale_timestamp": "2034-11-23T09:30:08.285Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.285Z", + "updated": "2024-11-23T09:30:08.285Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "solid state", - "namespace": "calculating" + "key": "bandwidth", + "value": "primary", + "namespace": "transmitting" }, { - "key": "application", - "value": "online", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "redundant", + "namespace": "copying" }, { - "key": "protocol", - "value": "primary", - "namespace": "connecting" + "key": "monitor", + "value": "bluetooth", + "namespace": "compressing" }, { - "key": "driver", - "value": "primary", - "namespace": "indexing" + "key": "feed", + "value": "1080p", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "online", + "key": "alarm", + "value": "multi-byte", "namespace": "programming" } ], @@ -10202,39 +10203,39 @@ "os_minor_version": 0 }, { - "id": "1808c6a1-4c11-4b8a-8f19-b036d8cbb1dc", - "display_name": "huels.example", + "id": "24c8942c-00d6-4456-9a9b-a820336a52c9", + "display_name": "torp.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.377Z", - "stale_timestamp": "2034-11-14T12:12:17.377Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.377Z", - "updated": "2024-11-14T12:12:17.377Z", + "culled_timestamp": "2034-12-07T09:30:08.323Z", + "stale_timestamp": "2034-11-23T09:30:08.323Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.323Z", + "updated": "2024-11-23T09:30:08.323Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "online", - "namespace": "generating" + "key": "protocol", + "value": "mobile", + "namespace": "bypassing" }, { - "key": "interface", - "value": "auxiliary", - "namespace": "generating" + "key": "monitor", + "value": "virtual", + "namespace": "navigating" }, { - "key": "sensor", - "value": "back-end", - "namespace": "synthesizing" + "key": "application", + "value": "open-source", + "namespace": "calculating" }, { - "key": "interface", - "value": "redundant", - "namespace": "compressing" + "key": "program", + "value": "mobile", + "namespace": "parsing" }, { - "key": "port", - "value": "optical", - "namespace": "generating" + "key": "program", + "value": "solid state", + "namespace": "copying" } ], "type": "system", @@ -10242,39 +10243,39 @@ "os_minor_version": 0 }, { - "id": "1c816fe6-a96e-4128-a8b3-dc69ec2cdc21", - "display_name": "schaefer-crist.test", + "id": "2869e663-5458-4387-ba82-14befcac7f30", + "display_name": "schmitt.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.422Z", - "stale_timestamp": "2034-11-14T12:12:17.422Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.422Z", - "updated": "2024-11-14T12:12:17.422Z", + "culled_timestamp": "2034-12-07T09:30:08.339Z", + "stale_timestamp": "2034-11-23T09:30:08.339Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.339Z", + "updated": "2024-11-23T09:30:08.339Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "bluetooth", - "namespace": "overriding" + "key": "matrix", + "value": "multi-byte", + "namespace": "bypassing" }, { - "key": "firewall", - "value": "cross-platform", - "namespace": "programming" + "key": "panel", + "value": "1080p", + "namespace": "backing up" }, { - "key": "port", - "value": "neural", - "namespace": "programming" + "key": "alarm", + "value": "1080p", + "namespace": "generating" }, { "key": "firewall", - "value": "redundant", + "value": "auxiliary", "namespace": "indexing" }, { - "key": "application", - "value": "bluetooth", - "namespace": "backing up" + "key": "bus", + "value": "auxiliary", + "namespace": "synthesizing" } ], "type": "system", @@ -10282,39 +10283,39 @@ "os_minor_version": 0 }, { - "id": "1dc90305-b673-4991-90c3-8d44258b3439", - "display_name": "hirthe.test", + "id": "2d6e53b6-ccdf-438d-9459-e79110c96887", + "display_name": "thiel-rippin.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.451Z", - "stale_timestamp": "2034-11-14T12:12:17.451Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.451Z", - "updated": "2024-11-14T12:12:17.451Z", + "culled_timestamp": "2034-12-07T09:30:08.362Z", + "stale_timestamp": "2034-11-23T09:30:08.362Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.362Z", + "updated": "2024-11-23T09:30:08.362Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "haptic", - "namespace": "bypassing" + "key": "pixel", + "value": "neural", + "namespace": "copying" }, { - "key": "microchip", - "value": "digital", - "namespace": "connecting" + "key": "firewall", + "value": "online", + "namespace": "compressing" }, { - "key": "matrix", - "value": "bluetooth", - "namespace": "compressing" + "key": "transmitter", + "value": "virtual", + "namespace": "generating" }, { - "key": "alarm", - "value": "solid state", - "namespace": "synthesizing" + "key": "firewall", + "value": "online", + "namespace": "calculating" }, { - "key": "panel", - "value": "back-end", - "namespace": "connecting" + "key": "sensor", + "value": "virtual", + "namespace": "calculating" } ], "type": "system", @@ -10322,39 +10323,39 @@ "os_minor_version": 0 }, { - "id": "29244ad2-263f-4eaf-9940-5b4a1a14c945", - "display_name": "little-hegmann.test", + "id": "2d81ffc6-2013-4e0c-9567-b6cb64ffb2fe", + "display_name": "marvin.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.386Z", - "stale_timestamp": "2034-11-14T12:12:17.386Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.386Z", - "updated": "2024-11-14T12:12:17.386Z", + "culled_timestamp": "2034-12-07T09:30:08.415Z", + "stale_timestamp": "2034-11-23T09:30:08.415Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.415Z", + "updated": "2024-11-23T09:30:08.415Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "neural", - "namespace": "programming" + "key": "alarm", + "value": "multi-byte", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "neural", - "namespace": "calculating" + "key": "capacitor", + "value": "bluetooth", + "namespace": "transmitting" }, { - "key": "matrix", - "value": "bluetooth", - "namespace": "synthesizing" + "key": "transmitter", + "value": "redundant", + "namespace": "hacking" }, { - "key": "program", - "value": "haptic", - "namespace": "compressing" + "key": "array", + "value": "solid state", + "namespace": "bypassing" }, { - "key": "feed", - "value": "online", - "namespace": "backing up" + "key": "monitor", + "value": "cross-platform", + "namespace": "compressing" } ], "type": "system", @@ -10362,39 +10363,39 @@ "os_minor_version": 0 }, { - "id": "2b5aae4f-1b0f-4c1d-a1a9-4546e086df0b", - "display_name": "brakus.example", + "id": "2daafe25-9771-4f58-ac85-03c16a8c49d9", + "display_name": "hauck.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.359Z", - "stale_timestamp": "2034-11-14T12:12:17.359Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.359Z", - "updated": "2024-11-14T12:12:17.359Z", + "culled_timestamp": "2034-12-07T09:30:08.400Z", + "stale_timestamp": "2034-11-23T09:30:08.400Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.400Z", + "updated": "2024-11-23T09:30:08.400Z", "insights_id": null, "tags": [ - { - "key": "bandwidth", - "value": "redundant", - "namespace": "bypassing" - }, { "key": "protocol", - "value": "1080p", - "namespace": "compressing" + "value": "online", + "namespace": "navigating" }, { - "key": "panel", + "key": "capacitor", "value": "primary", - "namespace": "programming" + "namespace": "transmitting" }, { - "key": "array", - "value": "haptic", - "namespace": "synthesizing" + "key": "hard drive", + "value": "optical", + "namespace": "copying" }, { - "key": "driver", - "value": "optical", - "namespace": "generating" + "key": "application", + "value": "back-end", + "namespace": "transmitting" + }, + { + "key": "array", + "value": "primary", + "namespace": "connecting" } ], "type": "system", @@ -10402,39 +10403,39 @@ "os_minor_version": 0 }, { - "id": "2d543a1c-a362-495b-8a2c-85d31a3f6bd4", - "display_name": "zieme-trantow.test", + "id": "68c07652-be84-4c80-a9fa-76db6c07f620", + "display_name": "balistreri.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.439Z", - "stale_timestamp": "2034-11-14T12:12:17.439Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.439Z", - "updated": "2024-11-14T12:12:17.439Z", + "culled_timestamp": "2034-12-07T09:30:08.410Z", + "stale_timestamp": "2034-11-23T09:30:08.410Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.410Z", + "updated": "2024-11-23T09:30:08.410Z", "insights_id": null, "tags": [ { "key": "circuit", - "value": "multi-byte", - "namespace": "copying" + "value": "mobile", + "namespace": "hacking" }, { - "key": "protocol", + "key": "array", "value": "open-source", - "namespace": "synthesizing" + "namespace": "programming" }, { - "key": "card", - "value": "mobile", - "namespace": "synthesizing" + "key": "array", + "value": "solid state", + "namespace": "compressing" }, { - "key": "bus", - "value": "cross-platform", - "namespace": "overriding" + "key": "port", + "value": "digital", + "namespace": "indexing" }, { - "key": "panel", - "value": "bluetooth", - "namespace": "copying" + "key": "bus", + "value": "multi-byte", + "namespace": "calculating" } ], "type": "system", @@ -10442,39 +10443,39 @@ "os_minor_version": 0 }, { - "id": "457b10fa-1649-4ec8-a7ff-9d1904fc4981", - "display_name": "ruecker.test", + "id": "6c44b88e-f0a7-4a23-9083-12ac3be9d4ce", + "display_name": "goldner.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.446Z", - "stale_timestamp": "2034-11-14T12:12:17.446Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.446Z", - "updated": "2024-11-14T12:12:17.446Z", + "culled_timestamp": "2034-12-07T09:30:08.312Z", + "stale_timestamp": "2034-11-23T09:30:08.312Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.312Z", + "updated": "2024-11-23T09:30:08.312Z", "insights_id": null, "tags": [ { - "key": "system", + "key": "capacitor", "value": "back-end", - "namespace": "calculating" - }, - { - "key": "matrix", - "value": "open-source", - "namespace": "connecting" + "namespace": "copying" }, { - "key": "matrix", - "value": "haptic", - "namespace": "compressing" + "key": "capacitor", + "value": "primary", + "namespace": "copying" }, { - "key": "microchip", + "key": "card", "value": "cross-platform", - "namespace": "synthesizing" + "namespace": "programming" }, { "key": "transmitter", - "value": "cross-platform", - "namespace": "compressing" + "value": "solid state", + "namespace": "hacking" + }, + { + "key": "application", + "value": "1080p", + "namespace": "parsing" } ], "type": "system", @@ -10490,9 +10491,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/c1b81970-9513-40e5-9122-239c230cc1de/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/c1b81970-9513-40e5-9122-239c230cc1de/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", - "next": "/api/compliance/v2/policies/c1b81970-9513-40e5-9122-239c230cc1de/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" + "first": "/api/compliance/v2/policies/aff389b8-d1b9-4eb1-bd6b-8994902a1f99/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/aff389b8-d1b9-4eb1-bd6b-8994902a1f99/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/policies/aff389b8-d1b9-4eb1-bd6b-8994902a1f99/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -10591,39 +10592,39 @@ "value": { "data": [ { - "id": "02730877-191e-4ce0-8816-29583872a2f7", - "display_name": "rau.test", + "id": "234bf987-a93a-4f96-b63e-1226db6db875", + "display_name": "ruecker.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.910Z", - "stale_timestamp": "2034-11-14T12:12:17.910Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.910Z", - "updated": "2024-11-14T12:12:17.910Z", + "culled_timestamp": "2034-12-07T09:30:08.918Z", + "stale_timestamp": "2034-11-23T09:30:08.918Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.918Z", + "updated": "2024-11-23T09:30:08.918Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "1080p", + "key": "matrix", + "value": "bluetooth", "namespace": "synthesizing" }, { - "key": "alarm", - "value": "cross-platform", - "namespace": "hacking" + "key": "matrix", + "value": "wireless", + "namespace": "compressing" }, { - "key": "pixel", - "value": "primary", - "namespace": "programming" + "key": "bandwidth", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "interface", - "value": "primary", - "namespace": "bypassing" + "key": "microchip", + "value": "optical", + "namespace": "programming" }, { - "key": "alarm", - "value": "neural", - "namespace": "overriding" + "key": "panel", + "value": "solid state", + "namespace": "parsing" } ], "type": "system", @@ -10631,39 +10632,39 @@ "os_minor_version": 0 }, { - "id": "0447640d-95ce-4aa4-b979-a062b0c18b8d", - "display_name": "hodkiewicz.example", + "id": "319f1b3c-4b43-4c0e-9183-0fbbaf3f26b0", + "display_name": "toy.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.920Z", - "stale_timestamp": "2034-11-14T12:12:17.920Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.920Z", - "updated": "2024-11-14T12:12:17.920Z", + "culled_timestamp": "2034-12-07T09:30:08.905Z", + "stale_timestamp": "2034-11-23T09:30:08.905Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.905Z", + "updated": "2024-11-23T09:30:08.905Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "solid state", - "namespace": "programming" + "key": "hard drive", + "value": "multi-byte", + "namespace": "bypassing" }, { - "key": "system", - "value": "mobile", - "namespace": "quantifying" + "key": "feed", + "value": "auxiliary", + "namespace": "hacking" }, { - "key": "alarm", - "value": "back-end", - "namespace": "overriding" + "key": "interface", + "value": "online", + "namespace": "indexing" }, { - "key": "system", - "value": "auxiliary", - "namespace": "hacking" + "key": "microchip", + "value": "redundant", + "namespace": "quantifying" }, { "key": "interface", - "value": "redundant", - "namespace": "overriding" + "value": "open-source", + "namespace": "copying" } ], "type": "system", @@ -10671,39 +10672,39 @@ "os_minor_version": 0 }, { - "id": "0e9f3fb2-5c5b-45f6-8b4b-274955fee4dc", - "display_name": "fahey.example", + "id": "325c430d-01aa-4ea3-b60f-016262de9277", + "display_name": "franecki.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.921Z", - "stale_timestamp": "2034-11-14T12:12:17.921Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.921Z", - "updated": "2024-11-14T12:12:17.921Z", + "culled_timestamp": "2034-12-07T09:30:08.909Z", + "stale_timestamp": "2034-11-23T09:30:08.909Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.909Z", + "updated": "2024-11-23T09:30:08.909Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "optical", - "namespace": "calculating" + "key": "capacitor", + "value": "solid state", + "namespace": "compressing" }, { - "key": "matrix", - "value": "digital", - "namespace": "synthesizing" + "key": "transmitter", + "value": "haptic", + "namespace": "navigating" }, { - "key": "microchip", + "key": "sensor", "value": "digital", - "namespace": "compressing" + "namespace": "synthesizing" }, { - "key": "sensor", - "value": "haptic", - "namespace": "copying" + "key": "pixel", + "value": "cross-platform", + "namespace": "overriding" }, { - "key": "program", - "value": "cross-platform", - "namespace": "indexing" + "key": "monitor", + "value": "virtual", + "namespace": "overriding" } ], "type": "system", @@ -10711,39 +10712,39 @@ "os_minor_version": 0 }, { - "id": "13acbdda-0e5c-4712-9d72-7093d7bada53", - "display_name": "bailey.test", + "id": "3612cfbc-91ba-42a7-bf29-4b2d3d2a2448", + "display_name": "powlowski-hane.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.914Z", - "stale_timestamp": "2034-11-14T12:12:17.914Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.914Z", - "updated": "2024-11-14T12:12:17.914Z", + "culled_timestamp": "2034-12-07T09:30:08.908Z", + "stale_timestamp": "2034-11-23T09:30:08.908Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.908Z", + "updated": "2024-11-23T09:30:08.908Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "open-source", - "namespace": "parsing" + "key": "firewall", + "value": "solid state", + "namespace": "calculating" }, { - "key": "microchip", - "value": "back-end", - "namespace": "synthesizing" + "key": "interface", + "value": "neural", + "namespace": "overriding" }, { - "key": "circuit", - "value": "primary", - "namespace": "calculating" + "key": "interface", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "firewall", - "value": "neural", - "namespace": "synthesizing" + "key": "transmitter", + "value": "cross-platform", + "namespace": "parsing" }, { "key": "firewall", - "value": "auxiliary", - "namespace": "programming" + "value": "mobile", + "namespace": "indexing" } ], "type": "system", @@ -10751,39 +10752,39 @@ "os_minor_version": 0 }, { - "id": "1a7371a7-1749-4a86-b125-464966ef1087", - "display_name": "oconner.example", + "id": "425c8546-cc0c-46ad-bc85-d98af3a76b4c", + "display_name": "donnelly-fay.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.911Z", - "stale_timestamp": "2034-11-14T12:12:17.911Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.911Z", - "updated": "2024-11-14T12:12:17.911Z", + "culled_timestamp": "2034-12-07T09:30:08.899Z", + "stale_timestamp": "2034-11-23T09:30:08.899Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.899Z", + "updated": "2024-11-23T09:30:08.899Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "auxiliary", - "namespace": "indexing" + "key": "capacitor", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "bandwidth", + "key": "alarm", "value": "auxiliary", - "namespace": "navigating" + "namespace": "compressing" }, { - "key": "capacitor", - "value": "bluetooth", + "key": "transmitter", + "value": "haptic", "namespace": "transmitting" }, { "key": "port", - "value": "bluetooth", - "namespace": "parsing" + "value": "wireless", + "namespace": "navigating" }, { - "key": "monitor", - "value": "redundant", - "namespace": "bypassing" + "key": "bus", + "value": "optical", + "namespace": "overriding" } ], "type": "system", @@ -10791,39 +10792,39 @@ "os_minor_version": 0 }, { - "id": "466fbe9e-1cf5-40c8-ad15-c5cb17b6e697", - "display_name": "harris.example", + "id": "4ee76d1c-6965-4c43-8ec1-da5b681300f8", + "display_name": "block-nikolaus.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.900Z", - "stale_timestamp": "2034-11-14T12:12:17.900Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.900Z", - "updated": "2024-11-14T12:12:17.900Z", + "culled_timestamp": "2034-12-07T09:30:08.903Z", + "stale_timestamp": "2034-11-23T09:30:08.903Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.903Z", + "updated": "2024-11-23T09:30:08.903Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "primary", - "namespace": "programming" + "key": "bandwidth", + "value": "online", + "namespace": "indexing" }, { - "key": "protocol", - "value": "bluetooth", - "namespace": "quantifying" + "key": "bandwidth", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "alarm", - "value": "back-end", - "namespace": "indexing" + "key": "transmitter", + "value": "redundant", + "namespace": "backing up" }, { - "key": "matrix", - "value": "multi-byte", - "namespace": "bypassing" + "key": "sensor", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "bluetooth", - "namespace": "bypassing" + "key": "feed", + "value": "neural", + "namespace": "indexing" } ], "type": "system", @@ -10831,39 +10832,39 @@ "os_minor_version": 0 }, { - "id": "496ace30-950b-48a5-b874-37be77c71fb7", - "display_name": "erdman.example", + "id": "50d6bf18-fef8-4587-b918-9f94625c9016", + "display_name": "swaniawski-fadel.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.904Z", - "stale_timestamp": "2034-11-14T12:12:17.904Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.904Z", - "updated": "2024-11-14T12:12:17.904Z", + "culled_timestamp": "2034-12-07T09:30:08.901Z", + "stale_timestamp": "2034-11-23T09:30:08.901Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.901Z", + "updated": "2024-11-23T09:30:08.901Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "mobile", - "namespace": "backing up" + "key": "matrix", + "value": "multi-byte", + "namespace": "compressing" }, { - "key": "monitor", - "value": "mobile", - "namespace": "quantifying" + "key": "panel", + "value": "virtual", + "namespace": "connecting" }, { - "key": "array", - "value": "open-source", - "namespace": "bypassing" + "key": "firewall", + "value": "auxiliary", + "namespace": "calculating" }, { - "key": "port", + "key": "pixel", "value": "optical", - "namespace": "quantifying" + "namespace": "generating" }, { - "key": "matrix", - "value": "cross-platform", - "namespace": "indexing" + "key": "port", + "value": "back-end", + "namespace": "bypassing" } ], "type": "system", @@ -10871,39 +10872,39 @@ "os_minor_version": 0 }, { - "id": "77cefe07-0a4f-47c6-95f8-4388196f972d", - "display_name": "ryan-mccullough.example", + "id": "51090cae-8688-4404-ba0f-56f06098d8c6", + "display_name": "quitzon.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.908Z", - "stale_timestamp": "2034-11-14T12:12:17.908Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.908Z", - "updated": "2024-11-14T12:12:17.908Z", + "culled_timestamp": "2034-12-07T09:30:08.912Z", + "stale_timestamp": "2034-11-23T09:30:08.912Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.912Z", + "updated": "2024-11-23T09:30:08.912Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "1080p", + "key": "port", + "value": "multi-byte", "namespace": "transmitting" }, { - "key": "transmitter", - "value": "digital", - "namespace": "backing up" + "key": "circuit", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "system", - "value": "multi-byte", - "namespace": "compressing" + "key": "bus", + "value": "open-source", + "namespace": "backing up" }, { - "key": "sensor", - "value": "auxiliary", - "namespace": "programming" + "key": "pixel", + "value": "optical", + "namespace": "calculating" }, { - "key": "sensor", - "value": "online", - "namespace": "hacking" + "key": "port", + "value": "neural", + "namespace": "generating" } ], "type": "system", @@ -10911,39 +10912,39 @@ "os_minor_version": 0 }, { - "id": "86bcf00f-68f5-4e28-80f8-cbd7c16f9b8f", - "display_name": "reilly-bergstrom.example", + "id": "52e6d50d-dc26-42bb-af23-eed0eb4a0e41", + "display_name": "lemke-labadie.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.902Z", - "stale_timestamp": "2034-11-14T12:12:17.902Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.902Z", - "updated": "2024-11-14T12:12:17.902Z", + "culled_timestamp": "2034-12-07T09:30:08.905Z", + "stale_timestamp": "2034-11-23T09:30:08.905Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.905Z", + "updated": "2024-11-23T09:30:08.905Z", "insights_id": null, "tags": [ + { + "key": "matrix", + "value": "neural", + "namespace": "synthesizing" + }, { "key": "microchip", - "value": "open-source", - "namespace": "bypassing" + "value": "digital", + "namespace": "transmitting" }, { - "key": "protocol", - "value": "optical", - "namespace": "overriding" + "key": "firewall", + "value": "haptic", + "namespace": "copying" }, { - "key": "protocol", + "key": "program", "value": "virtual", - "namespace": "calculating" + "namespace": "compressing" }, { "key": "pixel", - "value": "mobile", - "namespace": "parsing" - }, - { - "key": "microchip", - "value": "multi-byte", - "namespace": "copying" + "value": "wireless", + "namespace": "transmitting" } ], "type": "system", @@ -10951,39 +10952,39 @@ "os_minor_version": 0 }, { - "id": "88af878c-f19a-4705-af87-228b696c9255", - "display_name": "casper.test", + "id": "57b0da00-cf2f-4017-a502-6b5e555d4182", + "display_name": "hudson.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:17.918Z", - "stale_timestamp": "2034-11-14T12:12:17.918Z", - "stale_warning_timestamp": "2034-11-21T12:12:17.918Z", - "updated": "2024-11-14T12:12:17.918Z", + "culled_timestamp": "2034-12-07T09:30:08.913Z", + "stale_timestamp": "2034-11-23T09:30:08.913Z", + "stale_warning_timestamp": "2034-11-30T09:30:08.913Z", + "updated": "2024-11-23T09:30:08.913Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "neural", + "key": "port", + "value": "auxiliary", "namespace": "hacking" }, { - "key": "pixel", + "key": "monitor", "value": "auxiliary", - "namespace": "backing up" + "namespace": "calculating" }, { - "key": "array", - "value": "open-source", - "namespace": "backing up" + "key": "alarm", + "value": "1080p", + "namespace": "quantifying" }, { - "key": "transmitter", - "value": "back-end", - "namespace": "parsing" + "key": "circuit", + "value": "solid state", + "namespace": "calculating" }, { - "key": "driver", - "value": "open-source", - "namespace": "compressing" + "key": "application", + "value": "bluetooth", + "namespace": "copying" } ], "type": "system", @@ -10998,9 +10999,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/660705fb-806b-48cc-a175-7e8a966ef8cd/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/660705fb-806b-48cc-a175-7e8a966ef8cd/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/660705fb-806b-48cc-a175-7e8a966ef8cd/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/f6e5c572-f161-4900-9882-2d360d592c60/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/f6e5c572-f161-4900-9882-2d360d592c60/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/f6e5c572-f161-4900-9882-2d360d592c60/systems?limit=10&offset=10" } }, "summary": "", @@ -11043,7 +11044,7 @@ "items": { "type": "string", "examples": [ - "e86cfd1e-7ec8-41ce-a3d7-28ca5ad39cb0" + "e7de0701-d540-4bd2-a898-00df28c7dbf5" ] } } @@ -11148,7 +11149,7 @@ "tags": [ "Policies" ], - "description": "Assigns a System to a Policy", + "description": "Assign a specific system to a specific policy.", "operationId": "AssignSystem", "responses": { "202": { @@ -11159,39 +11160,39 @@ "Assigns a System to a Policy": { "value": { "data": { - "id": "4819bc38-ad2a-4c8f-a4ef-311b7c3c80d8", - "display_name": "kohler.test", + "id": "8e6496f7-1fc3-4a88-abce-0da3c0b1a671", + "display_name": "towne.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.105Z", - "stale_timestamp": "2034-11-14T12:12:18.105Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.105Z", - "updated": "2024-11-14T12:12:18.106Z", + "culled_timestamp": "2034-12-07T09:30:09.114Z", + "stale_timestamp": "2034-11-23T09:30:09.114Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.114Z", + "updated": "2024-11-23T09:30:09.114Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "primary", - "namespace": "programming" + "key": "monitor", + "value": "back-end", + "namespace": "compressing" }, { - "key": "system", - "value": "auxiliary", - "namespace": "quantifying" + "key": "microchip", + "value": "redundant", + "namespace": "parsing" }, { - "key": "monitor", - "value": "haptic", - "namespace": "indexing" + "key": "transmitter", + "value": "back-end", + "namespace": "compressing" }, { - "key": "application", - "value": "optical", - "namespace": "transmitting" + "key": "array", + "value": "online", + "namespace": "navigating" }, { - "key": "circuit", - "value": "open-source", - "namespace": "bypassing" + "key": "bus", + "value": "solid state", + "namespace": "compressing" } ], "type": "system", @@ -11227,7 +11228,7 @@ "Assigns a System to a Policy": { "value": { "errors": [ - "V2::System not found with ID 9886180b-b90e-4e69-bd42-0c7a981b8a53" + "V2::System not found with ID 305bef61-48d5-4639-b5c9-f086bc3f5dc0" ] }, "summary": "", @@ -11273,7 +11274,7 @@ "tags": [ "Policies" ], - "description": "Unassigns a System from a Policy", + "description": "Remove a specific system from a specific policy.", "operationId": "UnassignSystem", "responses": { "202": { @@ -11284,39 +11285,39 @@ "Unassigns a System from a Policy": { "value": { "data": { - "id": "77505349-e8c0-4fca-a931-f52c29605a80", - "display_name": "kuvalis.example", + "id": "98c0f7c4-3e06-4c46-aa08-07033a535285", + "display_name": "wilkinson-price.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.168Z", - "stale_timestamp": "2034-11-14T12:12:18.168Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.168Z", - "updated": "2024-11-14T12:12:18.168Z", + "culled_timestamp": "2034-12-07T09:30:09.164Z", + "stale_timestamp": "2034-11-23T09:30:09.164Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.164Z", + "updated": "2024-11-23T09:30:09.164Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "multi-byte", - "namespace": "generating" + "key": "monitor", + "value": "cross-platform", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "mobile", - "namespace": "backing up" + "key": "monitor", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "feed", - "value": "virtual", - "namespace": "calculating" + "key": "program", + "value": "online", + "namespace": "connecting" }, { - "key": "protocol", - "value": "mobile", - "namespace": "synthesizing" + "key": "card", + "value": "digital", + "namespace": "calculating" }, { - "key": "microchip", - "value": "back-end", - "namespace": "bypassing" + "key": "interface", + "value": "solid state", + "namespace": "transmitting" } ], "type": "system", @@ -11352,7 +11353,7 @@ "Description of an error when unassigning a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 0d7d182f-bc41-421c-bdce-fa0d44e274c0" + "V2::System not found with ID d8f0f8e9-ed18-43e6-88f4-15ce22a7a379" ] }, "summary": "", @@ -11470,7 +11471,7 @@ "tags": [ "Reports" ], - "description": "Lists Systems assigned to a Report", + "description": "Retrieve all of the systems for a specific report.", "operationId": "ReportSystems", "responses": { "200": { @@ -11482,39 +11483,39 @@ "value": { "data": [ { - "id": "01da74b9-c63e-4aa1-8903-15bd4017a20a", - "display_name": "homenick.test", + "id": "096d854b-982a-432d-a24a-5cff42b956ee", + "display_name": "hirthe.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.428Z", - "stale_timestamp": "2034-11-14T12:12:18.428Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.428Z", - "updated": "2024-11-14T12:12:18.428Z", + "culled_timestamp": "2034-12-07T09:30:09.478Z", + "stale_timestamp": "2034-11-23T09:30:09.478Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.478Z", + "updated": "2024-11-23T09:30:09.478Z", "insights_id": null, "tags": [ { "key": "panel", - "value": "optical", - "namespace": "connecting" + "value": "1080p", + "namespace": "overriding" }, { - "key": "card", - "value": "auxiliary", - "namespace": "connecting" + "key": "protocol", + "value": "mobile", + "namespace": "quantifying" }, { - "key": "microchip", + "key": "alarm", "value": "primary", - "namespace": "navigating" + "namespace": "calculating" }, { - "key": "bus", - "value": "multi-byte", - "namespace": "copying" + "key": "port", + "value": "virtual", + "namespace": "backing up" }, { - "key": "feed", - "value": "primary", - "namespace": "synthesizing" + "key": "panel", + "value": "auxiliary", + "namespace": "backing up" } ], "type": "system", @@ -11522,45 +11523,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "2c946902-b643-4f1b-802e-80bd76781df0", - "display_name": "feeney.example", + "id": "0ba6e3bd-0dfc-4919-a355-d9bf118cddcd", + "display_name": "block-heidenreich.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.480Z", - "stale_timestamp": "2034-11-14T12:12:18.480Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.480Z", - "updated": "2024-11-14T12:12:18.480Z", + "culled_timestamp": "2034-12-07T09:30:09.431Z", + "stale_timestamp": "2034-11-23T09:30:09.431Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.431Z", + "updated": "2024-11-23T09:30:09.431Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "cross-platform", - "namespace": "bypassing" + "key": "microchip", + "value": "back-end", + "namespace": "quantifying" }, { - "key": "circuit", - "value": "cross-platform", + "key": "application", + "value": "solid state", "namespace": "generating" }, { - "key": "hard drive", - "value": "online", - "namespace": "calculating" + "key": "feed", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "circuit", - "value": "digital", - "namespace": "compressing" + "key": "bandwidth", + "value": "primary", + "namespace": "navigating" }, { - "key": "card", - "value": "open-source", - "namespace": "overriding" + "key": "port", + "value": "auxiliary", + "namespace": "bypassing" } ], "type": "system", @@ -11568,45 +11569,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "349b67e6-0c7c-42a4-a6cf-22c24d5bf34d", - "display_name": "schimmel.test", + "id": "13a038ff-aecf-4b6a-8f4c-a3f7849d33b1", + "display_name": "mcglynn.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.485Z", - "stale_timestamp": "2034-11-14T12:12:18.485Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.485Z", - "updated": "2024-11-14T12:12:18.485Z", + "culled_timestamp": "2034-12-07T09:30:09.407Z", + "stale_timestamp": "2034-11-23T09:30:09.407Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.407Z", + "updated": "2024-11-23T09:30:09.407Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "1080p", - "namespace": "synthesizing" + "key": "matrix", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "circuit", - "value": "primary", - "namespace": "quantifying" + "key": "card", + "value": "bluetooth", + "namespace": "calculating" }, { - "key": "port", - "value": "open-source", - "namespace": "compressing" + "key": "bandwidth", + "value": "wireless", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "mobile", - "namespace": "copying" + "key": "matrix", + "value": "auxiliary", + "namespace": "overriding" }, { - "key": "firewall", - "value": "neural", - "namespace": "compressing" + "key": "protocol", + "value": "auxiliary", + "namespace": "hacking" } ], "type": "system", @@ -11614,45 +11615,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "34c11e6c-e0cf-4ba0-b9e4-4c188730cc78", - "display_name": "crooks.test", + "id": "31826589-a557-47fa-a680-f8d9df92211b", + "display_name": "hoppe.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.448Z", - "stale_timestamp": "2034-11-14T12:12:18.448Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.448Z", - "updated": "2024-11-14T12:12:18.448Z", + "culled_timestamp": "2034-12-07T09:30:09.396Z", + "stale_timestamp": "2034-11-23T09:30:09.396Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.396Z", + "updated": "2024-11-23T09:30:09.396Z", "insights_id": null, "tags": [ { - "key": "firewall", + "key": "sensor", "value": "online", - "namespace": "hacking" + "namespace": "overriding" }, { - "key": "panel", - "value": "solid state", - "namespace": "overriding" + "key": "system", + "value": "1080p", + "namespace": "indexing" }, { - "key": "card", - "value": "virtual", - "namespace": "generating" + "key": "panel", + "value": "bluetooth", + "namespace": "synthesizing" }, { - "key": "sensor", - "value": "1080p", - "namespace": "connecting" + "key": "hard drive", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "driver", - "value": "bluetooth", - "namespace": "navigating" + "key": "transmitter", + "value": "1080p", + "namespace": "quantifying" } ], "type": "system", @@ -11660,45 +11661,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "44b525cf-312d-4bc0-9de8-ea4dbb13a434", - "display_name": "lynch-lowe.test", + "id": "3a77c6ce-a7dc-4a63-b654-07fbce88e52d", + "display_name": "bode.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.457Z", - "stale_timestamp": "2034-11-14T12:12:18.457Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.457Z", - "updated": "2024-11-14T12:12:18.457Z", + "culled_timestamp": "2034-12-07T09:30:09.460Z", + "stale_timestamp": "2034-11-23T09:30:09.460Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.460Z", + "updated": "2024-11-23T09:30:09.460Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "optical", - "namespace": "bypassing" + "key": "interface", + "value": "virtual", + "namespace": "generating" }, { - "key": "sensor", - "value": "back-end", - "namespace": "compressing" + "key": "array", + "value": "solid state", + "namespace": "programming" }, { - "key": "sensor", - "value": "optical", - "namespace": "compressing" + "key": "bus", + "value": "mobile", + "namespace": "navigating" }, { - "key": "array", - "value": "solid state", - "namespace": "indexing" + "key": "driver", + "value": "multi-byte", + "namespace": "transmitting" }, { - "key": "capacitor", - "value": "online", - "namespace": "connecting" + "key": "driver", + "value": "mobile", + "namespace": "synthesizing" } ], "type": "system", @@ -11706,45 +11707,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "45829dd0-ba4c-46eb-acf7-e2174f943362", - "display_name": "quitzon.test", + "id": "470e53cd-2ed4-4a85-a4f0-21de25ed736f", + "display_name": "berge.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.498Z", - "stale_timestamp": "2034-11-14T12:12:18.498Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.498Z", - "updated": "2024-11-14T12:12:18.498Z", + "culled_timestamp": "2034-12-07T09:30:09.412Z", + "stale_timestamp": "2034-11-23T09:30:09.412Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.412Z", + "updated": "2024-11-23T09:30:09.412Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "online", - "namespace": "transmitting" - }, - { - "key": "panel", - "value": "online", + "key": "program", + "value": "mobile", "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "neural", + "key": "interface", + "value": "wireless", "namespace": "navigating" }, { - "key": "hard drive", - "value": "haptic", - "namespace": "connecting" + "key": "capacitor", + "value": "optical", + "namespace": "generating" }, { - "key": "system", - "value": "1080p", - "namespace": "calculating" + "key": "capacitor", + "value": "neural", + "namespace": "quantifying" + }, + { + "key": "driver", + "value": "multi-byte", + "namespace": "connecting" } ], "type": "system", @@ -11752,45 +11753,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "473b2b9c-ad0c-477b-9e23-a39377ae0962", - "display_name": "hamill.test", + "id": "58e2c86a-f725-45cc-b7c0-cf197d701dcd", + "display_name": "corkery.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.453Z", - "stale_timestamp": "2034-11-14T12:12:18.453Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.453Z", - "updated": "2024-11-14T12:12:18.453Z", + "culled_timestamp": "2034-12-07T09:30:09.520Z", + "stale_timestamp": "2034-11-23T09:30:09.520Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.520Z", + "updated": "2024-11-23T09:30:09.520Z", "insights_id": null, "tags": [ { - "key": "bandwidth", + "key": "card", "value": "wireless", - "namespace": "synthesizing" + "namespace": "quantifying" }, { - "key": "sensor", - "value": "redundant", - "namespace": "overriding" + "key": "driver", + "value": "virtual", + "namespace": "compressing" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "indexing" + "key": "circuit", + "value": "open-source", + "namespace": "parsing" }, { - "key": "array", + "key": "capacitor", "value": "primary", - "namespace": "connecting" + "namespace": "programming" }, { - "key": "sensor", - "value": "bluetooth", - "namespace": "parsing" + "key": "transmitter", + "value": "haptic", + "namespace": "quantifying" } ], "type": "system", @@ -11798,45 +11799,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "515d761e-dfe2-43c7-a349-e35a5243fa49", - "display_name": "littel-nolan.test", + "id": "5b5c5138-fa2b-43d3-b4c5-cce4abb7aaca", + "display_name": "lang.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.517Z", - "stale_timestamp": "2034-11-14T12:12:18.517Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.517Z", - "updated": "2024-11-14T12:12:18.517Z", + "culled_timestamp": "2034-12-07T09:30:09.499Z", + "stale_timestamp": "2034-11-23T09:30:09.499Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.499Z", + "updated": "2024-11-23T09:30:09.499Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "redundant", - "namespace": "calculating" + "key": "bus", + "value": "virtual", + "namespace": "programming" }, { - "key": "array", + "key": "pixel", "value": "primary", - "namespace": "hacking" + "namespace": "connecting" }, { - "key": "sensor", - "value": "mobile", - "namespace": "transmitting" + "key": "panel", + "value": "virtual", + "namespace": "calculating" }, { - "key": "application", - "value": "haptic", - "namespace": "programming" + "key": "interface", + "value": "neural", + "namespace": "indexing" }, { - "key": "protocol", - "value": "open-source", - "namespace": "programming" + "key": "matrix", + "value": "back-end", + "namespace": "indexing" } ], "type": "system", @@ -11844,45 +11845,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "5288c9c2-7dde-44f7-a807-42f95054a51b", - "display_name": "feil.example", + "id": "5bff40c5-0771-46d5-8c36-b54f00593963", + "display_name": "denesik.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.432Z", - "stale_timestamp": "2034-11-14T12:12:18.432Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.432Z", - "updated": "2024-11-14T12:12:18.432Z", + "culled_timestamp": "2034-12-07T09:30:09.426Z", + "stale_timestamp": "2034-11-23T09:30:09.426Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.426Z", + "updated": "2024-11-23T09:30:09.426Z", "insights_id": null, "tags": [ { "key": "driver", - "value": "neural", + "value": "wireless", "namespace": "navigating" }, { - "key": "application", - "value": "multi-byte", - "namespace": "overriding" + "key": "alarm", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "array", - "value": "bluetooth", - "namespace": "programming" + "key": "interface", + "value": "redundant", + "namespace": "generating" }, { - "key": "panel", - "value": "optical", - "namespace": "backing up" + "key": "microchip", + "value": "bluetooth", + "namespace": "compressing" }, { - "key": "pixel", - "value": "1080p", - "namespace": "parsing" + "key": "monitor", + "value": "multi-byte", + "namespace": "transmitting" } ], "type": "system", @@ -11890,45 +11891,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] }, { - "id": "77d4d842-9f31-4811-b68b-062607e3362a", - "display_name": "lang.test", + "id": "5ff276fc-f901-4b9d-b68c-483b03c0277b", + "display_name": "glover-sanford.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.502Z", - "stale_timestamp": "2034-11-14T12:12:18.502Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.502Z", - "updated": "2024-11-14T12:12:18.502Z", + "culled_timestamp": "2034-12-07T09:30:09.525Z", + "stale_timestamp": "2034-11-23T09:30:09.525Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.525Z", + "updated": "2024-11-23T09:30:09.525Z", "insights_id": null, "tags": [ - { - "key": "transmitter", - "value": "mobile", - "namespace": "hacking" - }, { "key": "program", - "value": "cross-platform", - "namespace": "connecting" + "value": "primary", + "namespace": "overriding" }, { - "key": "microchip", + "key": "capacitor", "value": "optical", - "namespace": "bypassing" + "namespace": "generating" }, { - "key": "pixel", + "key": "protocol", "value": "wireless", - "namespace": "calculating" + "namespace": "backing up" }, { - "key": "transmitter", - "value": "haptic", - "namespace": "indexing" + "key": "application", + "value": "neural", + "namespace": "backing up" + }, + { + "key": "driver", + "value": "back-end", + "namespace": "quantifying" } ], "type": "system", @@ -11936,8 +11937,8 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "c6712af8-9707-4036-8242-adab3e58f4ec", + "title": "Excepturi rem sed et." } ] } @@ -11949,9 +11950,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/46cfcf5a-4a9a-4049-9b3a-99810c2eeaad/systems?limit=10&offset=0", - "last": "/api/compliance/v2/reports/46cfcf5a-4a9a-4049-9b3a-99810c2eeaad/systems?limit=10&offset=20", - "next": "/api/compliance/v2/reports/46cfcf5a-4a9a-4049-9b3a-99810c2eeaad/systems?limit=10&offset=10" + "first": "/api/compliance/v2/reports/c6712af8-9707-4036-8242-adab3e58f4ec/systems?limit=10&offset=0", + "last": "/api/compliance/v2/reports/c6712af8-9707-4036-8242-adab3e58f4ec/systems?limit=10&offset=20", + "next": "/api/compliance/v2/reports/c6712af8-9707-4036-8242-adab3e58f4ec/systems?limit=10&offset=10" } }, "summary": "", @@ -11961,39 +11962,39 @@ "value": { "data": [ { - "id": "07006905-6191-49fc-9e5c-9c86367eb92c", - "display_name": "lehner-bernhard.example", + "id": "00b6ed52-0069-4137-a562-0e2cc978591c", + "display_name": "bogan.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.902Z", - "stale_timestamp": "2034-11-14T12:12:18.902Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.902Z", - "updated": "2024-11-14T12:12:18.902Z", + "culled_timestamp": "2034-12-07T09:30:09.868Z", + "stale_timestamp": "2034-11-23T09:30:09.868Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.868Z", + "updated": "2024-11-23T09:30:09.868Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "redundant", - "namespace": "programming" - }, - { - "key": "transmitter", - "value": "back-end", - "namespace": "compressing" + "key": "program", + "value": "virtual", + "namespace": "copying" }, { - "key": "feed", + "key": "microchip", "value": "neural", "namespace": "copying" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "connecting" + "key": "port", + "value": "1080p", + "namespace": "backing up" }, { - "key": "capacitor", - "value": "redundant", - "namespace": "backing up" + "key": "program", + "value": "back-end", + "namespace": "bypassing" + }, + { + "key": "firewall", + "value": "online", + "namespace": "hacking" } ], "type": "system", @@ -12001,45 +12002,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "07c81bdd-5092-47eb-962c-4a154a8acaa7", - "display_name": "terry-parisian.test", + "id": "09dc7cb8-f91f-41db-a572-82abe57652c1", + "display_name": "reilly.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.803Z", - "stale_timestamp": "2034-11-14T12:12:18.803Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.803Z", - "updated": "2024-11-14T12:12:18.803Z", + "culled_timestamp": "2034-12-07T09:30:09.812Z", + "stale_timestamp": "2034-11-23T09:30:09.812Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.812Z", + "updated": "2024-11-23T09:30:09.812Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "solid state", - "namespace": "backing up" + "key": "firewall", + "value": "haptic", + "namespace": "navigating" }, { - "key": "sensor", - "value": "virtual", - "namespace": "bypassing" + "key": "bandwidth", + "value": "neural", + "namespace": "calculating" }, { - "key": "bus", + "key": "transmitter", "value": "1080p", - "namespace": "generating" + "namespace": "copying" }, { - "key": "feed", - "value": "online", + "key": "system", + "value": "digital", "namespace": "backing up" }, { - "key": "alarm", - "value": "auxiliary", - "namespace": "compressing" + "key": "transmitter", + "value": "virtual", + "namespace": "hacking" } ], "type": "system", @@ -12047,45 +12048,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "0f659b4b-97a5-4ee4-adf6-f71bbb8cb808", - "display_name": "kuhlman-beatty.test", + "id": "2b4a6b25-3076-4f0e-9915-7e1dc10fec47", + "display_name": "weimann.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.770Z", - "stale_timestamp": "2034-11-14T12:12:18.770Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.770Z", - "updated": "2024-11-14T12:12:18.770Z", + "culled_timestamp": "2034-12-07T09:30:09.836Z", + "stale_timestamp": "2034-11-23T09:30:09.836Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.836Z", + "updated": "2024-11-23T09:30:09.836Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "mobile", - "namespace": "programming" + "key": "card", + "value": "cross-platform", + "namespace": "indexing" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "navigating" + "key": "system", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "matrix", - "value": "multi-byte", - "namespace": "hacking" + "key": "protocol", + "value": "solid state", + "namespace": "navigating" }, { - "key": "panel", - "value": "open-source", - "namespace": "navigating" + "key": "matrix", + "value": "virtual", + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "auxiliary", - "namespace": "copying" + "key": "monitor", + "value": "wireless", + "namespace": "backing up" } ], "type": "system", @@ -12093,45 +12094,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "17683605-7604-403d-8261-020f01eee67b", - "display_name": "sporer.example", + "id": "3e877517-ab2c-464b-8dbe-2b1dde4f94dc", + "display_name": "erdman.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.897Z", - "stale_timestamp": "2034-11-14T12:12:18.897Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.897Z", - "updated": "2024-11-14T12:12:18.897Z", + "culled_timestamp": "2034-12-07T09:30:09.771Z", + "stale_timestamp": "2034-11-23T09:30:09.771Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.771Z", + "updated": "2024-11-23T09:30:09.771Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "bluetooth", + "key": "alarm", + "value": "solid state", "namespace": "quantifying" }, { - "key": "driver", - "value": "auxiliary", - "namespace": "programming" + "key": "matrix", + "value": "digital", + "namespace": "transmitting" }, { - "key": "application", - "value": "redundant", - "namespace": "hacking" + "key": "pixel", + "value": "back-end", + "namespace": "quantifying" }, { - "key": "capacitor", - "value": "primary", - "namespace": "indexing" + "key": "card", + "value": "multi-byte", + "namespace": "copying" }, { - "key": "hard drive", - "value": "back-end", - "namespace": "copying" + "key": "microchip", + "value": "open-source", + "namespace": "indexing" } ], "type": "system", @@ -12139,45 +12140,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "1d8bf7a3-b24e-4bcd-b509-35cc42bd52a9", - "display_name": "reilly.test", + "id": "4a9619d7-67a9-44dc-a606-7bde18a355cc", + "display_name": "emard.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.838Z", - "stale_timestamp": "2034-11-14T12:12:18.838Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.838Z", - "updated": "2024-11-14T12:12:18.838Z", + "culled_timestamp": "2034-12-07T09:30:09.807Z", + "stale_timestamp": "2034-11-23T09:30:09.807Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.807Z", + "updated": "2024-11-23T09:30:09.807Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "multi-byte", - "namespace": "compressing" - }, - { - "key": "monitor", - "value": "mobile", - "namespace": "compressing" + "key": "interface", + "value": "digital", + "namespace": "transmitting" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "calculating" + "key": "interface", + "value": "open-source", + "namespace": "hacking" }, { - "key": "panel", - "value": "redundant", + "key": "feed", + "value": "mobile", "namespace": "connecting" }, { - "key": "hard drive", + "key": "transmitter", "value": "online", - "namespace": "compressing" + "namespace": "parsing" + }, + { + "key": "program", + "value": "virtual", + "namespace": "synthesizing" } ], "type": "system", @@ -12185,45 +12186,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "30203aea-7566-40d4-a474-f6f62fafd866", - "display_name": "medhurst-paucek.example", + "id": "4d7262ed-4e8e-42fe-9b4f-b50db73afff1", + "display_name": "ferry-ziemann.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.883Z", - "stale_timestamp": "2034-11-14T12:12:18.883Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.883Z", - "updated": "2024-11-14T12:12:18.883Z", + "culled_timestamp": "2034-12-07T09:30:09.852Z", + "stale_timestamp": "2034-11-23T09:30:09.852Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.852Z", + "updated": "2024-11-23T09:30:09.852Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "back-end", + "key": "driver", + "value": "auxiliary", "namespace": "hacking" }, { - "key": "panel", - "value": "haptic", - "namespace": "calculating" + "key": "application", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "bus", - "value": "optical", - "namespace": "overriding" + "key": "microchip", + "value": "online", + "namespace": "backing up" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "copying" + "key": "port", + "value": "1080p", + "namespace": "synthesizing" }, { - "key": "port", - "value": "neural", - "namespace": "overriding" + "key": "panel", + "value": "1080p", + "namespace": "connecting" } ], "type": "system", @@ -12231,45 +12232,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "3352df28-21bb-4e0e-abd2-1512e5593f65", - "display_name": "damore-johns.test", + "id": "5995781c-1c5b-4253-850f-b2286c240f4d", + "display_name": "oconner.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.874Z", - "stale_timestamp": "2034-11-14T12:12:18.874Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.874Z", - "updated": "2024-11-14T12:12:18.874Z", + "culled_timestamp": "2034-12-07T09:30:09.820Z", + "stale_timestamp": "2034-11-23T09:30:09.820Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.820Z", + "updated": "2024-11-23T09:30:09.820Z", "insights_id": null, "tags": [ { - "key": "bus", + "key": "program", "value": "virtual", - "namespace": "transmitting" + "namespace": "backing up" }, { - "key": "pixel", - "value": "online", - "namespace": "generating" + "key": "panel", + "value": "back-end", + "namespace": "programming" }, { - "key": "interface", - "value": "open-source", - "namespace": "navigating" + "key": "application", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "alarm", - "value": "1080p", - "namespace": "navigating" + "key": "microchip", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "parsing" + "key": "transmitter", + "value": "multi-byte", + "namespace": "navigating" } ], "type": "system", @@ -12277,45 +12278,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "3c2b367c-e425-489e-a468-b4e8626762b1", - "display_name": "wisozk.test", + "id": "5b7f6975-d75a-46c2-b3eb-0d7eedd21fbb", + "display_name": "littel.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.742Z", - "stale_timestamp": "2034-11-14T12:12:18.742Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.742Z", - "updated": "2024-11-14T12:12:18.742Z", + "culled_timestamp": "2034-12-07T09:30:09.802Z", + "stale_timestamp": "2034-11-23T09:30:09.802Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.802Z", + "updated": "2024-11-23T09:30:09.802Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "solid state", - "namespace": "compressing" + "key": "system", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "bluetooth", - "namespace": "quantifying" + "key": "array", + "value": "open-source", + "namespace": "programming" }, { - "key": "microchip", + "key": "driver", "value": "redundant", "namespace": "generating" }, { - "key": "bandwidth", - "value": "mobile", - "namespace": "navigating" + "key": "bus", + "value": "cross-platform", + "namespace": "bypassing" }, { "key": "monitor", - "value": "optical", - "namespace": "bypassing" + "value": "neural", + "namespace": "backing up" } ], "type": "system", @@ -12323,45 +12324,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "3ca61730-3e9b-4374-bcef-b1a38eb6ac40", - "display_name": "walsh.example", + "id": "6250b19b-ec87-4f72-8a47-c42dcdc77148", + "display_name": "wilkinson.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.761Z", - "stale_timestamp": "2034-11-14T12:12:18.761Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.761Z", - "updated": "2024-11-14T12:12:18.761Z", + "culled_timestamp": "2034-12-07T09:30:09.781Z", + "stale_timestamp": "2034-11-23T09:30:09.781Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.781Z", + "updated": "2024-11-23T09:30:09.781Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "multi-byte", - "namespace": "programming" + "key": "panel", + "value": "optical", + "namespace": "navigating" }, { - "key": "protocol", - "value": "cross-platform", - "namespace": "overriding" + "key": "circuit", + "value": "haptic", + "namespace": "connecting" }, { - "key": "port", - "value": "cross-platform", - "namespace": "navigating" + "key": "system", + "value": "bluetooth", + "namespace": "compressing" }, { - "key": "system", - "value": "online", - "namespace": "backing up" + "key": "driver", + "value": "cross-platform", + "namespace": "calculating" }, { - "key": "sensor", - "value": "back-end", - "namespace": "transmitting" + "key": "array", + "value": "solid state", + "namespace": "overriding" } ], "type": "system", @@ -12369,44 +12370,44 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] }, { - "id": "3f32c2a0-1c2e-4777-94b1-daeb75f295e1", - "display_name": "roberts.test", + "id": "6372f602-02e7-43b8-9c47-82bf72d3d485", + "display_name": "rutherford.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:18.724Z", - "stale_timestamp": "2034-11-14T12:12:18.724Z", - "stale_warning_timestamp": "2034-11-21T12:12:18.724Z", - "updated": "2024-11-14T12:12:18.724Z", + "culled_timestamp": "2034-12-07T09:30:09.760Z", + "stale_timestamp": "2034-11-23T09:30:09.760Z", + "stale_warning_timestamp": "2034-11-30T09:30:09.760Z", + "updated": "2024-11-23T09:30:09.760Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "auxiliary", - "namespace": "hacking" + "key": "application", + "value": "solid state", + "namespace": "navigating" }, { - "key": "array", - "value": "optical", - "namespace": "indexing" + "key": "alarm", + "value": "virtual", + "namespace": "transmitting" }, { - "key": "card", - "value": "back-end", - "namespace": "parsing" + "key": "hard drive", + "value": "auxiliary", + "namespace": "synthesizing" }, { - "key": "panel", - "value": "mobile", - "namespace": "generating" + "key": "feed", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "port", - "value": "redundant", + "key": "alarm", + "value": "optical", "namespace": "connecting" } ], @@ -12415,8 +12416,8 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9", + "title": "Voluptas quo et et." } ] } @@ -12429,9 +12430,9 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/reports/03f87dec-2804-4e1f-bbd9-6101573e2cee/systems?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/reports/03f87dec-2804-4e1f-bbd9-6101573e2cee/systems?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/reports/03f87dec-2804-4e1f-bbd9-6101573e2cee/systems?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/reports/6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/reports/6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/reports/6195cb2e-e9d2-432a-84ef-0d1a06bbe6b9/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", @@ -12441,39 +12442,39 @@ "value": { "data": [ { - "id": "0578e565-b727-42cf-bf68-8a4d7d5c1fa7", - "display_name": "legros-turcotte.example", + "id": "0e03f58e-d3a1-4c82-b63f-8925b8d35591", + "display_name": "jakubowski.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.137Z", - "stale_timestamp": "2034-11-14T12:12:19.137Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.137Z", - "updated": "2024-11-14T12:12:19.137Z", + "culled_timestamp": "2034-12-07T09:30:10.140Z", + "stale_timestamp": "2034-11-23T09:30:10.140Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.140Z", + "updated": "2024-11-23T09:30:10.140Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "haptic", - "namespace": "backing up" + "key": "port", + "value": "digital", + "namespace": "programming" }, { - "key": "protocol", - "value": "virtual", - "namespace": "programming" + "key": "transmitter", + "value": "online", + "namespace": "navigating" }, { - "key": "port", - "value": "solid state", - "namespace": "backing up" + "key": "feed", + "value": "wireless", + "namespace": "copying" }, { - "key": "system", - "value": "bluetooth", - "namespace": "parsing" + "key": "bus", + "value": "online", + "namespace": "calculating" }, { - "key": "sensor", - "value": "optical", - "namespace": "parsing" + "key": "port", + "value": "redundant", + "namespace": "transmitting" } ], "type": "system", @@ -12481,45 +12482,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "1e4f2f36-30d1-4c2d-8196-300e405ad9f9", - "display_name": "feil.test", + "id": "125f3ec3-c124-4ea3-87bb-48d3be95af55", + "display_name": "pacocha.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.166Z", - "stale_timestamp": "2034-11-14T12:12:19.166Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.166Z", - "updated": "2024-11-14T12:12:19.166Z", + "culled_timestamp": "2034-12-07T09:30:10.190Z", + "stale_timestamp": "2034-11-23T09:30:10.190Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.190Z", + "updated": "2024-11-23T09:30:10.190Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "virtual", - "namespace": "overriding" + "key": "transmitter", + "value": "wireless", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "mobile", - "namespace": "programming" + "key": "capacitor", + "value": "cross-platform", + "namespace": "connecting" }, { - "key": "circuit", - "value": "auxiliary", - "namespace": "quantifying" + "key": "bandwidth", + "value": "mobile", + "namespace": "backing up" }, { - "key": "firewall", - "value": "solid state", - "namespace": "overriding" + "key": "array", + "value": "auxiliary", + "namespace": "parsing" }, { - "key": "bus", - "value": "open-source", - "namespace": "connecting" + "key": "port", + "value": "digital", + "namespace": "synthesizing" } ], "type": "system", @@ -12527,45 +12528,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "2ee8080b-2552-4ce4-96c2-225d0df60535", - "display_name": "spencer-heidenreich.example", + "id": "134d9516-76c5-42fb-bf98-44bb9647c761", + "display_name": "kling.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.209Z", - "stale_timestamp": "2034-11-14T12:12:19.209Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.209Z", - "updated": "2024-11-14T12:12:19.209Z", + "culled_timestamp": "2034-12-07T09:30:10.103Z", + "stale_timestamp": "2034-11-23T09:30:10.103Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.103Z", + "updated": "2024-11-23T09:30:10.103Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "neural", - "namespace": "generating" + "key": "application", + "value": "virtual", + "namespace": "copying" }, { - "key": "circuit", - "value": "solid state", - "namespace": "compressing" + "key": "bandwidth", + "value": "online", + "namespace": "navigating" }, { - "key": "protocol", - "value": "solid state", - "namespace": "generating" + "key": "panel", + "value": "bluetooth", + "namespace": "parsing" }, { - "key": "matrix", - "value": "open-source", - "namespace": "programming" + "key": "program", + "value": "digital", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "redundant", - "namespace": "bypassing" + "key": "application", + "value": "wireless", + "namespace": "compressing" } ], "type": "system", @@ -12573,45 +12574,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "378066ab-4eb3-4f90-bac4-30da504acbc3", - "display_name": "lubowitz-fisher.example", + "id": "160ed158-d158-4ac0-bd57-d4b5add69dbb", + "display_name": "armstrong-gusikowski.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.155Z", - "stale_timestamp": "2034-11-14T12:12:19.155Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.155Z", - "updated": "2024-11-14T12:12:19.155Z", + "culled_timestamp": "2034-12-07T09:30:10.178Z", + "stale_timestamp": "2034-11-23T09:30:10.178Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.178Z", + "updated": "2024-11-23T09:30:10.178Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "solid state", - "namespace": "navigating" + "key": "program", + "value": "virtual", + "namespace": "hacking" }, { - "key": "circuit", - "value": "redundant", - "namespace": "parsing" + "key": "monitor", + "value": "1080p", + "namespace": "connecting" }, { - "key": "matrix", - "value": "multi-byte", + "key": "port", + "value": "cross-platform", "namespace": "generating" }, { - "key": "circuit", - "value": "neural", - "namespace": "parsing" + "key": "microchip", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "hard drive", - "value": "haptic", - "namespace": "indexing" + "key": "matrix", + "value": "virtual", + "namespace": "quantifying" } ], "type": "system", @@ -12619,45 +12620,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "59b9219c-bb1f-48b7-8543-7d76f23d8801", - "display_name": "dickens.test", + "id": "2093a57f-6a51-436e-90f1-2a36011e0f6e", + "display_name": "ratke.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.117Z", - "stale_timestamp": "2034-11-14T12:12:19.117Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.117Z", - "updated": "2024-11-14T12:12:19.117Z", + "culled_timestamp": "2034-12-07T09:30:10.205Z", + "stale_timestamp": "2034-11-23T09:30:10.205Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.205Z", + "updated": "2024-11-23T09:30:10.205Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "primary", - "namespace": "hacking" + "key": "feed", + "value": "cross-platform", + "namespace": "overriding" }, { - "key": "transmitter", - "value": "redundant", - "namespace": "parsing" + "key": "pixel", + "value": "neural", + "namespace": "compressing" }, { - "key": "matrix", - "value": "mobile", - "namespace": "navigating" + "key": "alarm", + "value": "primary", + "namespace": "quantifying" }, { "key": "card", - "value": "bluetooth", - "namespace": "copying" + "value": "neural", + "namespace": "backing up" }, { - "key": "microchip", - "value": "cross-platform", - "namespace": "bypassing" + "key": "array", + "value": "open-source", + "namespace": "parsing" } ], "type": "system", @@ -12665,45 +12666,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "5e85b61a-0a54-4cac-9617-b6799c3cbeb8", - "display_name": "fay.test", + "id": "25e1ae6a-08cf-4ea4-bace-141f78fef090", + "display_name": "king-ondricka.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.176Z", - "stale_timestamp": "2034-11-14T12:12:19.176Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.176Z", - "updated": "2024-11-14T12:12:19.176Z", + "culled_timestamp": "2034-12-07T09:30:10.113Z", + "stale_timestamp": "2034-11-23T09:30:10.113Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.113Z", + "updated": "2024-11-23T09:30:10.113Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "digital", - "namespace": "transmitting" + "key": "application", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "program", - "value": "cross-platform", - "namespace": "indexing" + "key": "interface", + "value": "1080p", + "namespace": "calculating" }, { - "key": "monitor", - "value": "auxiliary", - "namespace": "bypassing" + "key": "feed", + "value": "wireless", + "namespace": "programming" }, { - "key": "program", - "value": "virtual", - "namespace": "generating" + "key": "alarm", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "panel", - "value": "1080p", - "namespace": "synthesizing" + "key": "protocol", + "value": "cross-platform", + "namespace": "parsing" } ], "type": "system", @@ -12711,45 +12712,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "6e4801a0-a293-4523-bb6a-7876181fa6ac", - "display_name": "goyette.example", + "id": "2ac6f939-4be5-483b-a99d-02912efb02c9", + "display_name": "okeefe.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.111Z", - "stale_timestamp": "2034-11-14T12:12:19.111Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.111Z", - "updated": "2024-11-14T12:12:19.111Z", + "culled_timestamp": "2034-12-07T09:30:10.249Z", + "stale_timestamp": "2034-11-23T09:30:10.249Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.249Z", + "updated": "2024-11-23T09:30:10.249Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "optical", - "namespace": "hacking" + "key": "hard drive", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "transmitter", - "value": "virtual", - "namespace": "overriding" + "key": "system", + "value": "haptic", + "namespace": "programming" }, { - "key": "array", - "value": "auxiliary", - "namespace": "bypassing" + "key": "card", + "value": "optical", + "namespace": "backing up" }, { - "key": "microchip", - "value": "back-end", - "namespace": "generating" + "key": "bandwidth", + "value": "redundant", + "namespace": "quantifying" }, { - "key": "sensor", - "value": "open-source", - "namespace": "bypassing" + "key": "panel", + "value": "wireless", + "namespace": "connecting" } ], "type": "system", @@ -12757,45 +12758,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "70b4ccc3-3e2e-45bc-a817-e067cb01a4ec", - "display_name": "flatley.test", + "id": "2bd9e065-70b2-4503-99dc-5394c5bca3bd", + "display_name": "tillman-sporer.example", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.123Z", - "stale_timestamp": "2034-11-14T12:12:19.123Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.123Z", - "updated": "2024-11-14T12:12:19.123Z", + "culled_timestamp": "2034-12-07T09:30:10.244Z", + "stale_timestamp": "2034-11-23T09:30:10.244Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.244Z", + "updated": "2024-11-23T09:30:10.244Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "1080p", - "namespace": "transmitting" + "key": "monitor", + "value": "neural", + "namespace": "backing up" }, { - "key": "array", - "value": "primary", - "namespace": "copying" + "key": "interface", + "value": "wireless", + "namespace": "compressing" }, { - "key": "panel", - "value": "digital", - "namespace": "copying" + "key": "transmitter", + "value": "cross-platform", + "namespace": "backing up" }, { - "key": "sensor", - "value": "open-source", - "namespace": "programming" + "key": "bus", + "value": "back-end", + "namespace": "overriding" }, { - "key": "program", - "value": "open-source", - "namespace": "calculating" + "key": "system", + "value": "cross-platform", + "namespace": "backing up" } ], "type": "system", @@ -12803,45 +12804,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "77f76316-2a97-4fa0-b2a2-227eef4257e3", - "display_name": "zemlak.test", + "id": "374e6319-15e1-49c6-813b-a59562c6eab7", + "display_name": "hammes.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.200Z", - "stale_timestamp": "2034-11-14T12:12:19.200Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.200Z", - "updated": "2024-11-14T12:12:19.200Z", + "culled_timestamp": "2034-12-07T09:30:10.225Z", + "stale_timestamp": "2034-11-23T09:30:10.225Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.225Z", + "updated": "2024-11-23T09:30:10.225Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "1080p", - "namespace": "calculating" + "key": "protocol", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "circuit", - "value": "cross-platform", - "namespace": "programming" + "key": "bus", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "interface", - "value": "auxiliary", - "namespace": "compressing" + "key": "system", + "value": "online", + "namespace": "programming" }, { - "key": "matrix", - "value": "haptic", - "namespace": "overriding" + "key": "system", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "bus", - "value": "back-end", - "namespace": "parsing" + "key": "system", + "value": "solid state", + "namespace": "compressing" } ], "type": "system", @@ -12849,45 +12850,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] }, { - "id": "7baa35d0-9d09-4fbc-9ff0-f69b2ae89d35", - "display_name": "runte.example", + "id": "3e2fa67e-73e3-41f6-88e0-85617055ac95", + "display_name": "bahringer.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:19.101Z", - "stale_timestamp": "2034-11-14T12:12:19.101Z", - "stale_warning_timestamp": "2034-11-21T12:12:19.101Z", - "updated": "2024-11-14T12:12:19.101Z", + "culled_timestamp": "2034-12-07T09:30:10.119Z", + "stale_timestamp": "2034-11-23T09:30:10.119Z", + "stale_warning_timestamp": "2034-11-30T09:30:10.119Z", + "updated": "2024-11-23T09:30:10.119Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "multi-byte", - "namespace": "generating" + "key": "driver", + "value": "back-end", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "solid state", - "namespace": "synthesizing" + "key": "sensor", + "value": "redundant", + "namespace": "calculating" }, { - "key": "feed", + "key": "firewall", "value": "mobile", - "namespace": "overriding" + "namespace": "indexing" }, { - "key": "panel", - "value": "mobile", - "namespace": "copying" + "key": "protocol", + "value": "multi-byte", + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "redundant", - "namespace": "compressing" + "key": "alarm", + "value": "digital", + "namespace": "navigating" } ], "type": "system", @@ -12895,8 +12896,8 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "ad88dd46-2e61-49de-b3f0-48ca26f5e2bb", + "title": "Quibusdam aut ut facere." } ] } @@ -12909,9 +12910,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/7061f267-cff8-45e2-a2b3-d3e7cf716b6b/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/7061f267-cff8-45e2-a2b3-d3e7cf716b6b/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", - "next": "/api/compliance/v2/reports/7061f267-cff8-45e2-a2b3-d3e7cf716b6b/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" + "first": "/api/compliance/v2/reports/ad88dd46-2e61-49de-b3f0-48ca26f5e2bb/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/ad88dd46-2e61-49de-b3f0-48ca26f5e2bb/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/reports/ad88dd46-2e61-49de-b3f0-48ca26f5e2bb/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -13069,7 +13070,7 @@ "tags": [ "Reports" ], - "description": "Returns a System under a Report", + "description": "Retrieve a specific system from a specific report.", "operationId": "ReportSystem", "responses": { "200": { @@ -13080,39 +13081,39 @@ "Returns a System under a Report": { "value": { "data": { - "id": "2016e398-a531-4aa2-a0bf-2fb584b3c46a", - "display_name": "vonrueden.example", + "id": "5d183edd-f32c-4e64-846e-95e666d5b724", + "display_name": "weimann-stroman.test", "groups": [], - "culled_timestamp": "2034-11-28T12:12:20.435Z", - "stale_timestamp": "2034-11-14T12:12:20.435Z", - "stale_warning_timestamp": "2034-11-21T12:12:20.435Z", - "updated": "2024-11-14T12:12:20.435Z", + "culled_timestamp": "2034-12-07T09:30:11.531Z", + "stale_timestamp": "2034-11-23T09:30:11.531Z", + "stale_warning_timestamp": "2034-11-30T09:30:11.531Z", + "updated": "2024-11-23T09:30:11.531Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "neural", - "namespace": "overriding" + "key": "sensor", + "value": "primary", + "namespace": "navigating" }, { - "key": "circuit", + "key": "capacitor", "value": "auxiliary", "namespace": "parsing" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "backing up" + "key": "driver", + "value": "wireless", + "namespace": "parsing" }, { - "key": "program", - "value": "1080p", + "key": "matrix", + "value": "open-source", "namespace": "transmitting" }, { - "key": "application", - "value": "primary", - "namespace": "navigating" + "key": "pixel", + "value": "bluetooth", + "namespace": "indexing" } ], "type": "system", @@ -13120,8 +13121,8 @@ "os_minor_version": 0, "policies": [ { - "id": "b20e903a-d4cb-490a-b256-af8333d3e68f", - "title": "Ad qui sed sunt." + "id": "460d0879-f0ef-462f-a4b2-ee7d975d6c6f", + "title": "Voluptatum voluptatem veritatis cupiditate." } ] } @@ -13154,7 +13155,7 @@ "Description of an error when requesting a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 98fa8844-c368-4a73-b94f-7062c0a5ee39" + "V2::System not found with ID ae13ba2c-39ec-49ac-b80f-824e7ac93dfb" ] }, "summary": "", @@ -13251,7 +13252,7 @@ "tags": [ "Policies" ], - "description": "Lists Tailorings", + "description": "Retrieve a list of all tailorings.", "operationId": "Tailorings", "responses": { "200": { @@ -13263,104 +13264,104 @@ "value": { "data": [ { - "id": "017218fa-d895-40b3-8329-dfbddca8eb73", - "profile_id": "1298b97a-91f0-4367-9c46-038f4cc632d7", - "os_minor_version": 6, + "id": "06ef057f-dfcd-4fe9-8a9c-49c8ac01ef64", + "profile_id": "a6f68007-4c3a-49b8-98f6-6bed3e334a6e", + "os_minor_version": 11, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "99c834c8-65c7-4268-832e-2732c73aa469", - "security_guide_version": "100.96.39" + "security_guide_id": "a5f536b2-9c3d-430c-b376-ea8ffae2d765", + "security_guide_version": "100.95.40" }, { - "id": "01fb5803-2799-4afe-b660-811afcbbb883", - "profile_id": "a11697a6-4fc7-4780-b49a-db1ac8140990", - "os_minor_version": 23, + "id": "1225d382-59aa-47ef-aecb-57def034532e", + "profile_id": "6e2120b1-cb78-4b9a-82dd-f13073e5b52b", + "os_minor_version": 6, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "58adc797-d0e3-428f-9377-4a518b729942", - "security_guide_version": "100.97.6" + "security_guide_id": "08331e69-dbb3-4fcc-9612-4fb7333c9ece", + "security_guide_version": "100.95.35" }, { - "id": "03860750-850c-49e5-8f6d-75c4e8696740", - "profile_id": "6d8e7267-d1c6-47a2-8b93-5743a2bb9098", - "os_minor_version": 8, + "id": "1c735705-03cf-4c39-95b8-92c3b8816375", + "profile_id": "dca56ed4-b608-495c-b9e5-826f9e62c608", + "os_minor_version": 17, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "b64b00ab-f09e-498c-84eb-39524c5f4549", - "security_guide_version": "100.96.41" + "security_guide_id": "bd32c197-94ae-4042-8278-304934511ae1", + "security_guide_version": "100.95.46" }, { - "id": "24f31a2e-2b97-4175-a42d-62add283dc42", - "profile_id": "f10c17bb-4b56-4f6b-a830-3f1f66ad0e2a", - "os_minor_version": 24, + "id": "24c62cd0-51ef-4c66-8c5b-7a47992e9584", + "profile_id": "94d1984d-a446-44df-a3ac-6cf6733e5618", + "os_minor_version": 2, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "0473c8af-9509-44ed-a906-4f55db667c74", - "security_guide_version": "100.97.7" + "security_guide_id": "847d53d8-a04c-4460-99b2-61e8adfa5297", + "security_guide_version": "100.95.31" }, { - "id": "2ef0149d-4752-4f4f-8800-2334c9933c01", - "profile_id": "a60f9749-adc7-4c2e-8a90-dd4555b4f8b7", - "os_minor_version": 20, + "id": "393bbad5-fb80-4fc6-aace-939b469443a1", + "profile_id": "5e5d60f2-21c0-4922-9c8b-e9bb5f0ae8e0", + "os_minor_version": 10, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "4da7d3b7-89e9-4d69-8861-e8d5ab87e0f9", - "security_guide_version": "100.97.3" + "security_guide_id": "541a0cac-0b6f-4b4b-b27a-dccce90cc2f9", + "security_guide_version": "100.95.39" }, { - "id": "5d392a68-4016-4054-aad0-b7e4db65caf1", - "profile_id": "8f30fbdd-9311-454f-a707-11a759cacf6c", - "os_minor_version": 4, + "id": "3aad6a6d-6ddd-42d8-98aa-d6943fc4cdfb", + "profile_id": "315e2821-4631-487d-b455-60d832b8b7b3", + "os_minor_version": 22, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "a790b84d-068d-4619-83db-52e69a4a77ee", - "security_guide_version": "100.96.37" + "security_guide_id": "3f87045e-0907-4fa5-9cb7-373ae80775ed", + "security_guide_version": "100.96.1" }, { - "id": "641842ac-69b0-4f68-bde1-0e83c830ed9f", - "profile_id": "be6b155a-e89b-45e1-8fa1-2caede8858ee", - "os_minor_version": 12, + "id": "419e5279-78f8-47c7-9115-8a622e0e6ce5", + "profile_id": "c72f3d78-b5b4-4d6e-8e02-48059b7748db", + "os_minor_version": 20, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "4e462b29-cc0c-4007-95e0-dfa57bd5be2d", - "security_guide_version": "100.96.45" + "security_guide_id": "6a2f865d-7b17-426b-9691-b1cef5629f33", + "security_guide_version": "100.95.49" }, { - "id": "6e560df1-972f-4d48-949d-985c8319e5eb", - "profile_id": "78801fe3-9833-45cd-ac60-c94f80a3ecd3", - "os_minor_version": 21, + "id": "43fbf0b3-9da5-4e6c-a5c3-80aa2b6089b6", + "profile_id": "fb5b1528-49a0-4f05-8116-f8db491ab9a9", + "os_minor_version": 14, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "26e6a22b-2d52-4837-9109-3a14cf625177", - "security_guide_version": "100.97.4" + "security_guide_id": "acb08f51-d82a-4dc0-9739-8e3841e21666", + "security_guide_version": "100.95.43" }, { - "id": "7153ef50-aaca-40f2-acd9-50703fd6f118", - "profile_id": "81ac7d16-fcec-4fc8-b8d3-1891d3ab2b1b", - "os_minor_version": 13, + "id": "47ea3104-464d-45d5-a1d5-8f8343caa71f", + "profile_id": "9b0c2b59-c737-4475-8ba7-2a285a970cb2", + "os_minor_version": 9, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "3a256c26-5e51-4fb2-a397-d5d1051aa9af", - "security_guide_version": "100.96.46" + "security_guide_id": "3962e625-f3a2-43fb-9833-861fc1b829c9", + "security_guide_version": "100.95.38" }, { - "id": "71582a03-aabd-4eae-87ef-899b8bf20bb7", - "profile_id": "c6821719-28da-4c23-b5c6-d9640213ac24", - "os_minor_version": 2, + "id": "4983d5af-ae27-470a-a0d4-5a7b9013384d", + "profile_id": "c8bc23e9-1bad-4f54-8ca5-321724a7c39b", + "os_minor_version": 23, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "8453c6be-562c-42c7-a39d-6f7e7ded3500", - "security_guide_version": "100.96.35" + "security_guide_id": "11deebb9-f9a8-4189-b2ee-a36950258ac2", + "security_guide_version": "100.96.2" } ], "meta": { @@ -13369,9 +13370,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/def3c0d9-cff6-4ec2-bfb4-d76d7a2e7ec6/tailorings?limit=10&offset=0", - "last": "/api/compliance/v2/policies/def3c0d9-cff6-4ec2-bfb4-d76d7a2e7ec6/tailorings?limit=10&offset=20", - "next": "/api/compliance/v2/policies/def3c0d9-cff6-4ec2-bfb4-d76d7a2e7ec6/tailorings?limit=10&offset=10" + "first": "/api/compliance/v2/policies/3b9a7430-27eb-4a17-b70c-8554e08f5529/tailorings?limit=10&offset=0", + "last": "/api/compliance/v2/policies/3b9a7430-27eb-4a17-b70c-8554e08f5529/tailorings?limit=10&offset=20", + "next": "/api/compliance/v2/policies/3b9a7430-27eb-4a17-b70c-8554e08f5529/tailorings?limit=10&offset=10" } }, "summary": "", @@ -13381,104 +13382,104 @@ "value": { "data": [ { - "id": "c5248f8f-c20d-4bb0-b5a8-7baa036c37ed", - "profile_id": "600e600c-9d31-42e6-81b5-2ab1c91f728f", + "id": "37fd4b8a-420a-4b1a-b14f-9c204c92cd77", + "profile_id": "642edda3-39b6-4b07-81f1-f266ea978cfe", "os_minor_version": 0, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "fb88a50f-91c0-4e1c-96d6-c86c4f031b6c", - "security_guide_version": "100.97.8" + "security_guide_id": "bd109768-9740-4a3a-8b46-fafb85cf9599", + "security_guide_version": "100.96.4" }, { - "id": "d2824ada-e333-47fa-bd25-58e545038963", - "profile_id": "c5dfa7bb-70fa-42ce-849e-81679f1e4be2", + "id": "2a070360-059e-4a68-998e-69f17a1410ac", + "profile_id": "6416018b-5f8b-4633-b729-ebe7618d4bd7", "os_minor_version": 1, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "0c143e18-d008-4f9d-a95e-7097a12143bb", - "security_guide_version": "100.97.9" + "security_guide_id": "5b8fd4d8-5ee0-4cec-a30b-a17130f777c9", + "security_guide_version": "100.96.5" }, { - "id": "b8276519-2191-4074-9bc3-7a8904f02c2d", - "profile_id": "470ee156-5a72-4135-809e-34a808e7692b", + "id": "23cf8afa-ea43-4ba8-9a1d-d34cf8b12e6e", + "profile_id": "6ddbf3a8-6a2d-47a6-bf5c-b00a82496960", "os_minor_version": 2, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "dbf84579-0ce3-4fd0-baa5-8d063757364a", - "security_guide_version": "100.97.10" + "security_guide_id": "a0c8d62d-2295-4ca0-a55a-7d4e24937869", + "security_guide_version": "100.96.6" }, { - "id": "7d094131-2571-4016-81cf-d8ccf5ff835a", - "profile_id": "787ea0f0-0962-4b16-ac2c-db5c07c5fddc", + "id": "85620130-ae3d-4e05-9dd5-2f366d55230d", + "profile_id": "63449913-37bb-4caa-9c2a-617b25b6302d", "os_minor_version": 3, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "accfaa35-a1f4-4fc0-9925-f34344b255ae", - "security_guide_version": "100.97.11" + "security_guide_id": "b5a12b24-9d9e-40df-ad0b-892ac49bf0dd", + "security_guide_version": "100.96.7" }, { - "id": "f8e75944-23c4-445a-82c7-2ae8db133600", - "profile_id": "d55cab9a-504f-4c9b-a3dd-4cbe9b951e20", + "id": "042dcdb1-e7fc-4f08-b8d0-72756587c11a", + "profile_id": "35b87893-7dbd-4b9f-8a31-be584f858983", "os_minor_version": 4, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "1643192a-d84d-46b2-ba32-9824a8465163", - "security_guide_version": "100.97.12" + "security_guide_id": "94f1de5e-dd29-4008-9a6c-a212101fba81", + "security_guide_version": "100.96.8" }, { - "id": "e549eac4-3bdd-4740-a62e-760456a3d408", - "profile_id": "722e247c-817d-4191-a53d-788c6ec6ea94", + "id": "4e924eae-17b2-4fca-aff6-5925d0e81612", + "profile_id": "e6fb4fd8-cf76-4a48-9e71-0078f20fb458", "os_minor_version": 5, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "3a70e13e-3814-45b6-af67-5a7c484014ac", - "security_guide_version": "100.97.13" + "security_guide_id": "efa516c9-445e-41f2-933d-748f56367ba1", + "security_guide_version": "100.96.9" }, { - "id": "1765a63a-d61b-4217-a2e1-5f96c516a1f7", - "profile_id": "6c1d35df-2c98-471c-9296-0536395e7bfc", + "id": "c9fccca6-1a13-45c8-ba12-1ec4a41f93b0", + "profile_id": "22bf2cbc-6510-4c79-bf83-ef7dc767c932", "os_minor_version": 6, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "32a2ea90-225b-4f68-b1b7-1e24939c07bd", - "security_guide_version": "100.97.14" + "security_guide_id": "7d0f293e-4b4e-4a4a-b10c-74bae82030f3", + "security_guide_version": "100.96.10" }, { - "id": "f006c6d1-84eb-421d-abcd-cf6d0fd84249", - "profile_id": "9d464962-f99d-4605-b028-234df26761d8", + "id": "864f3ed1-664e-4af4-8a48-27fb5a98ef9f", + "profile_id": "364b70d6-9bc2-44e5-90cf-8509c8d4034d", "os_minor_version": 7, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "0b9ebb02-52c2-4029-be0e-55fce094f062", - "security_guide_version": "100.97.15" + "security_guide_id": "713a91f6-7c09-49f4-9d73-92984b5c2c6e", + "security_guide_version": "100.96.11" }, { - "id": "a3626185-432a-4bd5-b37f-48637a47da17", - "profile_id": "908ccd80-772a-4fe3-ba1f-91873afeed9c", + "id": "e334658d-739a-49dd-9dab-00f83d5be0cd", + "profile_id": "f93f7f24-e56c-47c3-865c-198d6787aa39", "os_minor_version": 8, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "9e1319f0-28cc-40e8-9668-75fa09c9d145", - "security_guide_version": "100.97.16" + "security_guide_id": "647e70d0-aa2c-407c-b1e0-e444a4222c51", + "security_guide_version": "100.96.12" }, { - "id": "c2dafe91-647e-458a-bb8a-51f91a991a4b", - "profile_id": "317cbc1a-05bd-421b-b1b5-dcd937d10016", + "id": "b1551fe1-c020-46b2-be77-bbd0291a5ce1", + "profile_id": "fdd66a43-fa59-4336-a0a8-23800a33c63d", "os_minor_version": 9, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "aa98f9c6-0fd4-4b3a-bacf-708038845f63", - "security_guide_version": "100.97.17" + "security_guide_id": "fdb0d3d8-5890-46e9-a8f2-149f9f0bedae", + "security_guide_version": "100.96.13" } ], "meta": { @@ -13488,37 +13489,37 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/policies/a334f66e-668e-4637-8406-ef351ed6bf94/tailorings?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/policies/a334f66e-668e-4637-8406-ef351ed6bf94/tailorings?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/policies/a334f66e-668e-4637-8406-ef351ed6bf94/tailorings?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/policies/0c9432e5-b693-46b3-8a3f-640d433b16c6/tailorings?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/0c9432e5-b693-46b3-8a3f-640d433b16c6/tailorings?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/0c9432e5-b693-46b3-8a3f-640d433b16c6/tailorings?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", "description": "" }, - "List of Tailorings filtered by '(os_minor_version=23)'": { + "List of Tailorings filtered by '(os_minor_version=18)'": { "value": { "data": [ { - "id": "142816cd-bb3a-4d0b-b6b4-48182ac446c6", - "profile_id": "0528a1c5-b0b7-4008-8e7e-c85142fc3f5a", - "os_minor_version": 23, + "id": "21b09b11-06b0-49ee-a2b3-ab8f79eed544", + "profile_id": "9b08e719-ce6f-4aae-b8df-8001abfb6552", + "os_minor_version": 18, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "b45815f6-4d35-492e-9351-92d7878a358a", - "security_guide_version": "100.98.6" + "security_guide_id": "3a47d5f0-20ac-4ff4-8175-820a006dcd2a", + "security_guide_version": "100.96.47" } ], "meta": { "total": 1, - "filter": "(os_minor_version=23)", + "filter": "(os_minor_version=18)", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/a2c04bb1-aae2-4bd5-963e-425350c4381e/tailorings?filter=%28os_minor_version%3D23%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/a2c04bb1-aae2-4bd5-963e-425350c4381e/tailorings?filter=%28os_minor_version%3D23%29&limit=10&offset=0" + "first": "/api/compliance/v2/policies/fcada9d2-165d-4bed-8997-e102c9cf299c/tailorings?filter=%28os_minor_version%3D18%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/fcada9d2-165d-4bed-8997-e102c9cf299c/tailorings?filter=%28os_minor_version%3D18%29&limit=10&offset=0" } }, "summary": "", @@ -13616,14 +13617,14 @@ "Response example": { "value": { "data": { - "id": "a5d88fa7-0644-4622-8088-dc882866e33f", - "profile_id": "ce79966d-72b5-4caa-ac0d-7fd5fed9d4f8", + "id": "b87f00a2-2fa6-4df5-a9fa-1e7f3b49df08", + "profile_id": "98befc9a-572b-46aa-b127-76b66edf2c20", "os_minor_version": 1, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "caf5dabe-810e-40b0-a580-20b427fc0015", - "security_guide_version": "100.99.8" + "security_guide_id": "4e44b6c3-c36e-41e8-9a50-ddf3ec73c312", + "security_guide_version": "100.98.4" } }, "summary": "", @@ -13691,7 +13692,7 @@ "tags": [ "Policies" ], - "description": "Returns a Tailoring", + "description": "Retrieve a specific tailoring.", "operationId": "Tailoring", "responses": { "200": { @@ -13702,14 +13703,14 @@ "Returns a Tailoring": { "value": { "data": { - "id": "466fdc4b-fd64-44eb-a5f4-63a19842a1f1", - "profile_id": "b7819284-73e6-4749-aad4-fb732592ce8e", + "id": "14c41d27-8857-4f15-b765-77f56dc7d731", + "profile_id": "b93c7d11-0bde-43d7-a128-5a55e2027804", "os_minor_version": 1, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "7f7b7205-8165-4ede-839d-0827c1bb073d", - "security_guide_version": "100.99.9" + "security_guide_id": "028806a9-05b5-40fa-8cb5-34f8a8e9d886", + "security_guide_version": "100.98.5" } }, "summary": "", @@ -13740,7 +13741,7 @@ "Description of an error when requesting a non-existing Tailoring": { "value": { "errors": [ - "V2::Tailoring not found with ID 25e7c0bb-8a96-47ca-bacd-fd6096da0281" + "V2::Tailoring not found with ID 6d14bf0f-72e5-4a59-994f-95cabfab2702" ] }, "summary": "", @@ -13787,7 +13788,7 @@ "tags": [ "Policies" ], - "description": "Updates a Tailoring with the provided value_overrides", + "description": "Edit or update an existing tailoring.", "operationId": "UpdateTailoring", "responses": { "202": { @@ -13798,16 +13799,16 @@ "Returns the updated Tailoring": { "value": { "data": { - "id": "9a83b88d-f9aa-4c1b-b1c0-3fe1d3dff83b", - "profile_id": "502656ce-77eb-499e-91d8-8a41f4ed5ccc", + "id": "5bfebb5f-112e-4fee-ac1a-8556b782a7b7", + "profile_id": "aa64cda3-9c2d-4b22-b034-349552ced71c", "os_minor_version": 1, "value_overrides": { - "43423f44-68bf-4151-bdd5-e0769ffcef6b": "123" + "87660867-d806-4ddd-8795-8947c51849b4": "123" }, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "a0eb03b0-543f-472b-8af3-be0bc76aeb35", - "security_guide_version": "100.99.10" + "security_guide_id": "891ae942-519e-4141-a2b9-e475119041ef", + "security_guide_version": "100.98.6" } }, "summary": "", @@ -13874,7 +13875,7 @@ "tags": [ "Policies" ], - "description": "Returns the Rule Tree of a Tailoring", + "description": "Returns rule tree of a tailoring.", "operationId": "TailoringRuleTree", "deprecated": true, "responses": { @@ -13886,101 +13887,101 @@ "Returns the Rule Tree of a Tailoring": { "value": [ { - "id": "408b231f-d476-45da-95a9-991746aa58bf", + "id": "2b286d51-b026-4196-b1fe-f587a1203eea", "type": "rule_group", "children": [ { - "id": "1e71c2f9-03e3-4fde-8713-7458393da8eb", + "id": "410524f4-1c41-4702-b156-d48126ad9bf1", "type": "rule" } ] }, { - "id": "3f0f286f-2347-4ab6-b3ae-1e9ee0e4f699", + "id": "b125f721-3a99-43d4-8948-405c5b332a29", "type": "rule_group", "children": [ { - "id": "cf072a23-40d1-4178-9f4d-4cd110062e81", + "id": "2cf28d23-c4fd-4f7c-afa9-857587ad6e83", "type": "rule" } ] }, { - "id": "c80afd10-6eaf-4bc5-8630-c04c89b159ff", + "id": "90b94b4d-8cfe-46da-84b4-1235e455e64e", "type": "rule_group", "children": [ { - "id": "3f4ea1ce-9cf6-4144-8458-639a0fe9bc80", + "id": "43225e31-51f6-487b-b4f2-06132f5ae3a7", "type": "rule" } ] }, { - "id": "0cab704d-beef-4182-b282-52a70660c35f", + "id": "d52b0b32-88c5-4f8e-9312-77cf3f563fb0", "type": "rule_group", "children": [ { - "id": "3e557c38-e98d-415a-9e98-85927140a9e6", + "id": "9daf859f-9cd9-4e94-928f-4a600522bf48", "type": "rule" } ] }, { - "id": "6d5931b7-55f3-4f6b-8a23-266e83993f87", + "id": "296daa93-7d77-43a0-846f-bdb3cf5eaf88", "type": "rule_group", "children": [ { - "id": "532b1ba7-4cbc-4304-b1d6-1ac85ba55d91", + "id": "5484ef57-0de5-404a-9587-eb1e552b2e08", "type": "rule" } ] }, { - "id": "f4be9eb4-3f07-4b61-aaa6-efd03a520b13", + "id": "e5a3b13e-6dc4-47e7-b0e1-4fca15bbfd1c", "type": "rule_group", "children": [ { - "id": "3116408d-f26d-45a4-bc14-2921a58134e0", + "id": "8810c953-e48a-4138-abf9-2ea917820ccd", "type": "rule" } ] }, { - "id": "9e5c485b-adf1-4b78-a3d2-eb339c992555", + "id": "dc51660b-deab-4cb5-9cde-1165e1137794", "type": "rule_group", "children": [ { - "id": "dcac6001-94c8-4577-9898-555356645237", + "id": "4efb0ed5-2525-4136-975f-564e0beb69b6", "type": "rule" } ] }, { - "id": "78f29873-263c-486d-b016-fb6634240d04", + "id": "9682df8d-7984-43ca-a151-5d53439febc1", "type": "rule_group", "children": [ { - "id": "3d495a4c-0550-4630-be3d-70b635bac60a", + "id": "4b02ccdb-cbc5-4a8d-8c13-fc33226b6c86", "type": "rule" } ] }, { - "id": "5d723e5a-a898-445c-a481-62fbb987ef48", + "id": "d0171699-ab26-4cba-929a-6125ba5ad1e4", "type": "rule_group", "children": [ { - "id": "e69209f5-e143-4b0e-b98c-daa334666e74", + "id": "e546b2db-8a6a-4f37-bb37-f531da2ebcdc", "type": "rule" } ] }, { - "id": "f2e23f4b-e03e-41fb-be61-5eb7732a305b", + "id": "0b1be316-3c74-4b42-a36d-495569a1a745", "type": "rule_group", "children": [ { - "id": "8617b7e7-f022-4f87-b2f7-73301829bb2d", + "id": "0e8fb956-1f1f-48e5-832b-0bc45717cbb1", "type": "rule" } ] @@ -14004,7 +14005,7 @@ "Description of an error when requesting a non-existing Tailoring": { "value": { "errors": [ - "V2::Tailoring not found with ID ecf3edcc-80b2-4889-b0c6-52cdf68f71fd" + "V2::Tailoring not found with ID 605c5ca9-3a1b-4c79-a042-ac6cdc0499a9" ] }, "summary": "", @@ -14053,7 +14054,7 @@ "tags": [ "Policies" ], - "description": "Returns a Tailoring File", + "description": "Retrieve a tailoring file of a specific tailoring.", "operationId": "TailoringFile", "responses": { "200": { @@ -14065,16 +14066,16 @@ "value": { "profiles": [ { - "id": "xccdf_org.ssgproject.content_profile_7c77240c8a3e6302586d8f87e46f17c1", - "title": "Eius tempore dignissimos explicabo.", + "id": "xccdf_org.ssgproject.content_profile_3ef60d9b5f3e2ff14447e08eaab3d25b", + "title": "Ut quis dolorem quo.", "groups": {}, "rules": {}, "variables": { - "foo_value_253f58ce-de29-40dc-95ae-877ef0d83b96": { - "value": "531970" + "foo_value_04828135-013c-43f0-aebd-ee19df3253d1": { + "value": "405716" }, - "foo_value_807cf1a3-150f-4bf0-aae0-8d8c6ff5e572": { - "value": "530019" + "foo_value_dcc8625a-333e-45ef-be39-08ff6b0bd23a": { + "value": "146232" } } } @@ -14201,7 +14202,7 @@ "tags": [ "Reports" ], - "description": "Lists Test Results under a Report", + "description": "Retrieve all of the test results for a specific report.", "operationId": "ReportTestResults", "responses": { "200": { @@ -14213,424 +14214,424 @@ "value": { "data": [ { - "id": "0c95d9f4-63aa-4e08-8fdb-33cfc5468f0f", - "end_time": "2024-11-14T12:11:22.340Z", + "id": "056dcc55-fc43-4f5d-88d9-85312d6e2db1", + "end_time": "2024-11-23T09:29:13.471Z", "failed_rule_count": 0, "supported": true, - "score": 12.9133372308315, + "score": 63.38656323684226, "type": "test_result", - "display_name": "kris.test", + "display_name": "koss.example", "groups": [], "tags": [ { - "key": "protocol", - "value": "online", - "namespace": "backing up" + "key": "matrix", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "card", - "value": "open-source", - "namespace": "calculating" + "key": "program", + "value": "cross-platform", + "namespace": "synthesizing" }, { - "key": "card", - "value": "primary", - "namespace": "quantifying" + "key": "panel", + "value": "digital", + "namespace": "bypassing" }, { - "key": "system", - "value": "mobile", - "namespace": "backing up" + "key": "circuit", + "value": "wireless", + "namespace": "quantifying" }, { - "key": "interface", - "value": "primary", - "namespace": "indexing" + "key": "hard drive", + "value": "digital", + "namespace": "connecting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "c793642f-9347-48cf-934c-26a6a74dfe93", - "security_guide_version": "100.101.31" + "system_id": "76fb0776-657f-43b0-b91a-0fdb295acda9", + "security_guide_version": "100.100.23" }, { - "id": "14af3f41-38ee-4661-85c1-5434a87df3ca", - "end_time": "2024-11-14T12:11:22.322Z", + "id": "24deee50-0551-43bb-bdeb-5ac7df118510", + "end_time": "2024-11-23T09:29:13.476Z", "failed_rule_count": 0, "supported": true, - "score": 70.74461592383477, + "score": 50.89076594183962, "type": "test_result", - "display_name": "waelchi.test", + "display_name": "heidenreich-bechtelar.test", "groups": [], "tags": [ { - "key": "bus", - "value": "back-end", - "namespace": "bypassing" + "key": "monitor", + "value": "optical", + "namespace": "transmitting" }, { - "key": "sensor", - "value": "virtual", - "namespace": "calculating" + "key": "capacitor", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "application", - "value": "mobile", - "namespace": "compressing" + "key": "port", + "value": "online", + "namespace": "generating" }, { - "key": "application", - "value": "back-end", - "namespace": "quantifying" + "key": "program", + "value": "solid state", + "namespace": "navigating" }, { - "key": "port", - "value": "open-source", - "namespace": "hacking" + "key": "capacitor", + "value": "multi-byte", + "namespace": "compressing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "ebaa02ca-d14f-4b98-821c-7aa88f35b2b0", - "security_guide_version": "100.101.31" + "system_id": "41bc2faa-07f7-43d2-9a14-3b4ec1d23ee9", + "security_guide_version": "100.100.23" }, { - "id": "1f15765c-c430-41eb-9d90-b002c61f3358", - "end_time": "2024-11-14T12:11:22.308Z", + "id": "3520cdf1-8a99-4330-aa87-bb4ec21ee433", + "end_time": "2024-11-23T09:29:13.608Z", "failed_rule_count": 0, "supported": true, - "score": 50.82618716631207, + "score": 75.96307955214992, "type": "test_result", - "display_name": "price.example", + "display_name": "wolff.test", "groups": [], "tags": [ { - "key": "bus", - "value": "back-end", - "namespace": "connecting" - }, - { - "key": "program", - "value": "multi-byte", - "namespace": "compressing" + "key": "pixel", + "value": "virtual", + "namespace": "copying" }, { - "key": "matrix", - "value": "back-end", - "namespace": "copying" + "key": "microchip", + "value": "solid state", + "namespace": "programming" }, { - "key": "card", - "value": "back-end", - "namespace": "overriding" + "key": "application", + "value": "neural", + "namespace": "indexing" }, { - "key": "monitor", + "key": "alarm", "value": "auxiliary", "namespace": "backing up" + }, + { + "key": "feed", + "value": "multi-byte", + "namespace": "calculating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "ac90e75d-edef-49fd-a639-b67881bb27a8", - "security_guide_version": "100.101.31" + "system_id": "2c52ef9f-a19d-4b2f-b10d-fd1f97ecb401", + "security_guide_version": "100.100.23" }, { - "id": "208eb43b-77c6-4668-86ab-6babf4a0990e", - "end_time": "2024-11-14T12:11:22.385Z", + "id": "37f25749-9428-407e-b545-61d377e376ff", + "end_time": "2024-11-23T09:29:13.544Z", "failed_rule_count": 0, "supported": true, - "score": 67.40866902110365, + "score": 56.01902024349224, "type": "test_result", - "display_name": "brakus.test", + "display_name": "kunde.test", "groups": [], "tags": [ { - "key": "card", - "value": "auxiliary", - "namespace": "quantifying" + "key": "pixel", + "value": "solid state", + "namespace": "generating" }, { - "key": "monitor", - "value": "wireless", - "namespace": "programming" + "key": "interface", + "value": "open-source", + "namespace": "navigating" }, { - "key": "panel", - "value": "multi-byte", - "namespace": "transmitting" + "key": "application", + "value": "optical", + "namespace": "compressing" }, { "key": "driver", - "value": "virtual", - "namespace": "compressing" + "value": "primary", + "namespace": "hacking" }, { - "key": "application", - "value": "bluetooth", - "namespace": "compressing" + "key": "pixel", + "value": "redundant", + "namespace": "quantifying" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "e048341b-b291-4ab5-9d80-25672f6001b3", - "security_guide_version": "100.101.31" + "system_id": "6d939a6a-18fa-4a83-9391-924ff7d0008a", + "security_guide_version": "100.100.23" }, { - "id": "2524e3bb-ed3c-4f88-8cb8-9ac0887873dc", - "end_time": "2024-11-14T12:11:22.351Z", + "id": "39c959f7-6033-4ac4-bfa6-1dcc29e5c287", + "end_time": "2024-11-23T09:29:13.494Z", "failed_rule_count": 0, "supported": true, - "score": 8.950532411403566, + "score": 42.29670226418916, "type": "test_result", - "display_name": "cremin-hayes.test", + "display_name": "tromp.test", "groups": [], "tags": [ { - "key": "array", - "value": "primary", + "key": "transmitter", + "value": "virtual", + "namespace": "synthesizing" + }, + { + "key": "application", + "value": "online", "namespace": "bypassing" }, { - "key": "feed", - "value": "virtual", + "key": "card", + "value": "multi-byte", "namespace": "parsing" }, { "key": "feed", - "value": "bluetooth", - "namespace": "synthesizing" - }, - { - "key": "firewall", "value": "back-end", - "namespace": "backing up" + "namespace": "compressing" }, { - "key": "transmitter", - "value": "multi-byte", - "namespace": "hacking" + "key": "matrix", + "value": "online", + "namespace": "parsing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "84d53640-e46c-48c1-8be3-bfec5e864e58", - "security_guide_version": "100.101.31" + "system_id": "fce2d362-d3a7-4652-805b-7d31a4d8fece", + "security_guide_version": "100.100.23" }, { - "id": "298509bc-9ac7-4a04-93d9-08fc52846c1a", - "end_time": "2024-11-14T12:11:22.269Z", + "id": "46baf15d-32d5-4a05-a5de-a221f1c5cc70", + "end_time": "2024-11-23T09:29:13.507Z", "failed_rule_count": 0, "supported": true, - "score": 29.02026610741167, + "score": 70.20547946561567, "type": "test_result", - "display_name": "bogisich.test", + "display_name": "cremin-pollich.example", "groups": [], "tags": [ { "key": "protocol", - "value": "redundant", - "namespace": "parsing" + "value": "digital", + "namespace": "bypassing" }, { - "key": "firewall", - "value": "bluetooth", - "namespace": "copying" + "key": "protocol", + "value": "wireless", + "namespace": "indexing" }, { "key": "matrix", - "value": "back-end", - "namespace": "programming" + "value": "virtual", + "namespace": "overriding" }, { - "key": "bus", - "value": "bluetooth", + "key": "array", + "value": "primary", "namespace": "connecting" }, { - "key": "hard drive", - "value": "wireless", - "namespace": "synthesizing" + "key": "application", + "value": "open-source", + "namespace": "connecting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "acdb0b65-b1fe-4f61-9172-cd43a70c031e", - "security_guide_version": "100.101.31" + "system_id": "4f1461ed-a66f-4888-9133-6fa90e769d47", + "security_guide_version": "100.100.23" }, { - "id": "2ef06a23-53dd-4fdf-812f-6f02479db5b5", - "end_time": "2024-11-14T12:11:22.303Z", + "id": "49eac2cf-4f9d-4a54-a9ab-4f848d6becbd", + "end_time": "2024-11-23T09:29:13.576Z", "failed_rule_count": 0, "supported": true, - "score": 26.73628702891804, + "score": 11.92583487962368, "type": "test_result", - "display_name": "kohler.example", + "display_name": "hoeger.test", "groups": [], "tags": [ { "key": "feed", - "value": "virtual", - "namespace": "generating" + "value": "digital", + "namespace": "backing up" }, { - "key": "program", - "value": "wireless", - "namespace": "backing up" + "key": "microchip", + "value": "haptic", + "namespace": "indexing" }, { - "key": "bandwidth", + "key": "hard drive", "value": "back-end", - "namespace": "backing up" + "namespace": "parsing" }, { - "key": "matrix", - "value": "digital", - "namespace": "programming" + "key": "card", + "value": "1080p", + "namespace": "compressing" }, { - "key": "program", - "value": "mobile", - "namespace": "bypassing" + "key": "capacitor", + "value": "digital", + "namespace": "calculating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "97d7b35c-8819-4fc7-80da-4e962b093975", - "security_guide_version": "100.101.31" + "system_id": "136c0b55-8c42-4cca-b405-f55e32ed1316", + "security_guide_version": "100.100.23" }, { - "id": "45796db9-098d-4e90-a3b4-c44a9383afb0", - "end_time": "2024-11-14T12:11:22.316Z", + "id": "6257c2ee-5232-4932-b98a-0bc9824fe1ec", + "end_time": "2024-11-23T09:29:13.570Z", "failed_rule_count": 0, "supported": true, - "score": 60.20046351478584, + "score": 57.5815230941054, "type": "test_result", - "display_name": "thompson-ohara.test", + "display_name": "bayer-cruickshank.test", "groups": [], "tags": [ { - "key": "interface", - "value": "primary", - "namespace": "parsing" + "key": "protocol", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "programming" + "key": "matrix", + "value": "back-end", + "namespace": "compressing" }, { - "key": "pixel", - "value": "online", - "namespace": "compressing" + "key": "alarm", + "value": "digital", + "namespace": "indexing" }, { - "key": "pixel", - "value": "wireless", - "namespace": "generating" + "key": "sensor", + "value": "optical", + "namespace": "hacking" }, { - "key": "microchip", - "value": "multi-byte", - "namespace": "backing up" + "key": "application", + "value": "online", + "namespace": "copying" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "37b08573-c02b-4d77-95a2-d323c163cad7", - "security_guide_version": "100.101.31" + "system_id": "17d82d56-0c82-416a-abcd-811eabd587c4", + "security_guide_version": "100.100.23" }, { - "id": "4606b7fa-bc4d-44c9-b951-050d04cecf1e", - "end_time": "2024-11-14T12:11:22.258Z", + "id": "627b34cb-d52d-4936-8f26-0f32881f21c5", + "end_time": "2024-11-23T09:29:13.482Z", "failed_rule_count": 0, "supported": true, - "score": 3.016392543304624, + "score": 28.60286633233848, "type": "test_result", - "display_name": "fritsch.example", + "display_name": "schmidt.test", "groups": [], "tags": [ { - "key": "sensor", - "value": "online", - "namespace": "navigating" + "key": "bandwidth", + "value": "primary", + "namespace": "calculating" }, { - "key": "sensor", - "value": "open-source", - "namespace": "transmitting" + "key": "microchip", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "alarm", - "value": "online", - "namespace": "compressing" + "key": "bandwidth", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "microchip", - "value": "mobile", - "namespace": "hacking" + "key": "system", + "value": "wireless", + "namespace": "backing up" }, { - "key": "circuit", - "value": "redundant", - "namespace": "backing up" + "key": "transmitter", + "value": "1080p", + "namespace": "overriding" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "e5e480d0-4783-4210-ab8a-8a4b523f6784", - "security_guide_version": "100.101.31" + "system_id": "9fcd948f-b67d-46d1-89d6-dca78e177b2a", + "security_guide_version": "100.100.23" }, { - "id": "55707c45-84e5-4d46-a8e4-fec2e189e974", - "end_time": "2024-11-14T12:11:22.362Z", + "id": "717ba712-f991-4340-872e-1db7699c9b9d", + "end_time": "2024-11-23T09:29:13.589Z", "failed_rule_count": 0, "supported": true, - "score": 68.08139419780311, + "score": 4.715833120124535, "type": "test_result", - "display_name": "spinka.test", + "display_name": "hoppe-king.example", "groups": [], "tags": [ { - "key": "capacitor", - "value": "neural", - "namespace": "synthesizing" + "key": "port", + "value": "digital", + "namespace": "hacking" }, { - "key": "driver", - "value": "bluetooth", - "namespace": "indexing" + "key": "microchip", + "value": "mobile", + "namespace": "overriding" }, { - "key": "hard drive", - "value": "optical", - "namespace": "parsing" + "key": "program", + "value": "wireless", + "namespace": "connecting" }, { - "key": "array", - "value": "virtual", - "namespace": "generating" + "key": "monitor", + "value": "mobile", + "namespace": "compressing" }, { - "key": "protocol", - "value": "haptic", + "key": "hard drive", + "value": "back-end", "namespace": "synthesizing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "d0a32995-3ef0-4b03-a36a-8c2868a8ad44", - "security_guide_version": "100.101.31" + "system_id": "660d9e54-6c7f-432f-baa9-a6f16ad181d5", + "security_guide_version": "100.100.23" } ], "meta": { @@ -14640,9 +14641,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/00ac295c-c768-46b2-a112-4dbe0b313ba3/test_results?limit=10&offset=0", - "last": "/api/compliance/v2/reports/00ac295c-c768-46b2-a112-4dbe0b313ba3/test_results?limit=10&offset=20", - "next": "/api/compliance/v2/reports/00ac295c-c768-46b2-a112-4dbe0b313ba3/test_results?limit=10&offset=10" + "first": "/api/compliance/v2/reports/98b123cb-a64b-4850-b947-40d43658a90d/test_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/98b123cb-a64b-4850-b947-40d43658a90d/test_results?limit=10&offset=20", + "next": "/api/compliance/v2/reports/98b123cb-a64b-4850-b947-40d43658a90d/test_results?limit=10&offset=10" } }, "summary": "", @@ -14652,424 +14653,424 @@ "value": { "data": [ { - "id": "3029f2d8-cdaa-4d66-9af3-1741a99c81ee", - "end_time": "2024-11-14T12:11:22.772Z", + "id": "f63feb03-8348-446a-a9c2-25b286ee0217", + "end_time": "2024-11-23T09:29:13.989Z", "failed_rule_count": 0, "supported": true, - "score": 1.540058734495675, + "score": 12.42807800105265, "type": "test_result", - "display_name": "sauer.example", + "display_name": "murphy.example", "groups": [], "tags": [ { - "key": "sensor", - "value": "online", - "namespace": "bypassing" + "key": "card", + "value": "cross-platform", + "namespace": "hacking" }, { - "key": "card", - "value": "redundant", - "namespace": "connecting" + "key": "application", + "value": "digital", + "namespace": "parsing" }, { - "key": "array", - "value": "1080p", - "namespace": "connecting" + "key": "protocol", + "value": "mobile", + "namespace": "overriding" }, { - "key": "program", - "value": "digital", - "namespace": "calculating" + "key": "capacitor", + "value": "solid state", + "namespace": "synthesizing" }, { - "key": "firewall", - "value": "haptic", - "namespace": "programming" + "key": "microchip", + "value": "1080p", + "namespace": "overriding" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "ac959250-65c3-47ab-a8b6-2cdfe21abf02", - "security_guide_version": "100.102.41" + "system_id": "18523e7e-56c5-43fb-a901-be6c1e846958", + "security_guide_version": "100.101.40" }, { - "id": "7f80afcd-7ef8-4c59-9562-17c5117ca827", - "end_time": "2024-11-14T12:11:22.798Z", + "id": "a085c374-867d-416e-a0ce-e6d5a5ae8138", + "end_time": "2024-11-23T09:29:13.995Z", "failed_rule_count": 0, "supported": true, - "score": 5.972276671378762, + "score": 16.777458265505, "type": "test_result", - "display_name": "abshire-bednar.test", + "display_name": "sporer.example", "groups": [], "tags": [ { - "key": "driver", - "value": "digital", - "namespace": "synthesizing" + "key": "system", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "application", - "value": "neural", - "namespace": "synthesizing" + "key": "panel", + "value": "online", + "namespace": "backing up" }, { - "key": "monitor", - "value": "redundant", - "namespace": "generating" + "key": "sensor", + "value": "optical", + "namespace": "backing up" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "quantifying" + "key": "transmitter", + "value": "1080p", + "namespace": "calculating" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "navigating" + "key": "microchip", + "value": "wireless", + "namespace": "transmitting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "b6936296-a57c-4f4c-82be-e16a37422dd6", - "security_guide_version": "100.102.41" + "system_id": "8cf4ebb8-8394-41c8-bfc7-f3adf16554c2", + "security_guide_version": "100.101.40" }, { - "id": "d4a4ab09-98e1-4ec9-8fa8-a3c6d211d66c", - "end_time": "2024-11-14T12:11:22.754Z", + "id": "ad7a36f6-0651-406b-8fd2-2d05abed6d96", + "end_time": "2024-11-23T09:29:13.889Z", "failed_rule_count": 0, "supported": true, - "score": 7.020926051189457, + "score": 23.684712022929, "type": "test_result", - "display_name": "greenfelder-bernier.example", + "display_name": "lynch.example", "groups": [], "tags": [ { - "key": "protocol", - "value": "redundant", - "namespace": "programming" + "key": "capacitor", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "circuit", - "value": "online", - "namespace": "navigating" + "key": "feed", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "hard drive", - "value": "redundant", - "namespace": "transmitting" + "key": "array", + "value": "multi-byte", + "namespace": "bypassing" }, { - "key": "pixel", - "value": "back-end", - "namespace": "transmitting" + "key": "firewall", + "value": "virtual", + "namespace": "overriding" }, { - "key": "matrix", - "value": "primary", - "namespace": "synthesizing" + "key": "firewall", + "value": "back-end", + "namespace": "quantifying" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "0eb7dd05-38c1-4fd6-b5a3-7d50d148201a", - "security_guide_version": "100.102.41" + "system_id": "8a88890d-e770-4fb5-b266-b65006885e7c", + "security_guide_version": "100.101.40" }, { - "id": "e26c07ab-45d5-4c52-9716-d328c6bacb83", - "end_time": "2024-11-14T12:11:22.766Z", + "id": "0273fbbe-8212-44b7-aedb-e8f6b8a9764a", + "end_time": "2024-11-23T09:29:13.972Z", "failed_rule_count": 0, "supported": true, - "score": 9.348092977041544, + "score": 26.04523395370187, "type": "test_result", - "display_name": "kassulke-dooley.test", + "display_name": "lemke.example", "groups": [], "tags": [ { "key": "matrix", - "value": "multi-byte", - "namespace": "hacking" + "value": "mobile", + "namespace": "parsing" }, { - "key": "bus", - "value": "online", + "key": "interface", + "value": "solid state", "namespace": "parsing" }, { "key": "array", - "value": "solid state", - "namespace": "copying" + "value": "1080p", + "namespace": "programming" }, { - "key": "monitor", - "value": "haptic", - "namespace": "hacking" + "key": "system", + "value": "virtual", + "namespace": "calculating" }, { - "key": "sensor", - "value": "1080p", - "namespace": "synthesizing" + "key": "interface", + "value": "primary", + "namespace": "indexing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "2834ab5a-acf3-4480-a710-f74aa8b8d17b", - "security_guide_version": "100.102.41" + "system_id": "66ac55b9-3987-40fe-a7b0-567f2a2e803b", + "security_guide_version": "100.101.40" }, { - "id": "56883183-f575-42ec-9c05-a2479a1e83d0", - "end_time": "2024-11-14T12:11:22.622Z", + "id": "181e66f7-8eab-4124-8aff-41605fed4445", + "end_time": "2024-11-23T09:29:13.954Z", "failed_rule_count": 0, "supported": true, - "score": 12.08279348774866, + "score": 36.68994556658671, "type": "test_result", - "display_name": "kutch.example", + "display_name": "hartmann.example", "groups": [], "tags": [ { - "key": "driver", + "key": "circuit", "value": "cross-platform", - "namespace": "transmitting" + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "bluetooth", - "namespace": "parsing" + "key": "panel", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "port", - "value": "optical", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "solid state", + "namespace": "hacking" }, { - "key": "panel", + "key": "sensor", "value": "open-source", - "namespace": "backing up" + "namespace": "navigating" }, { - "key": "alarm", - "value": "redundant", - "namespace": "copying" + "key": "system", + "value": "auxiliary", + "namespace": "backing up" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "e6a505e3-94e9-4502-9efd-7bfd6bd86510", - "security_guide_version": "100.102.41" + "system_id": "8e90858d-b7eb-4ebf-be2a-c8318a57ca51", + "security_guide_version": "100.101.40" }, { - "id": "abbb2a02-8130-4a90-8c77-073b5e3f3a06", - "end_time": "2024-11-14T12:11:22.702Z", + "id": "2c3aa043-5e1e-4249-9bd0-057dbc0edba5", + "end_time": "2024-11-23T09:29:13.901Z", "failed_rule_count": 0, "supported": true, - "score": 27.2755784567125, + "score": 38.90242262261728, "type": "test_result", - "display_name": "ullrich.test", + "display_name": "crooks.example", "groups": [], "tags": [ { - "key": "firewall", - "value": "wireless", - "namespace": "navigating" + "key": "panel", + "value": "bluetooth", + "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "mobile", - "namespace": "bypassing" + "key": "alarm", + "value": "optical", + "namespace": "transmitting" }, { - "key": "application", + "key": "sensor", "value": "primary", - "namespace": "generating" + "namespace": "hacking" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "indexing" + "key": "sensor", + "value": "multi-byte", + "namespace": "backing up" }, { - "key": "hard drive", - "value": "online", - "namespace": "hacking" + "key": "interface", + "value": "optical", + "namespace": "connecting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "d61efc09-34f8-4b56-98ac-908ddb553659", - "security_guide_version": "100.102.41" + "system_id": "c5643bce-bca4-4e25-aa07-f164e7ac4ec2", + "security_guide_version": "100.101.40" }, { - "id": "1d61af86-4507-49e5-8c1b-360ae3a07eae", - "end_time": "2024-11-14T12:11:22.657Z", + "id": "93939589-9339-4473-a65b-c7a0ddad7c18", + "end_time": "2024-11-23T09:29:13.931Z", "failed_rule_count": 0, "supported": true, - "score": 27.58047727361587, + "score": 41.06830190615271, "type": "test_result", - "display_name": "mcdermott-thompson.test", + "display_name": "rodriguez-gulgowski.test", "groups": [], "tags": [ { - "key": "feed", - "value": "online", - "namespace": "transmitting" + "key": "capacitor", + "value": "auxiliary", + "namespace": "synthesizing" }, { - "key": "panel", - "value": "bluetooth", - "namespace": "bypassing" + "key": "hard drive", + "value": "wireless", + "namespace": "navigating" }, { - "key": "transmitter", - "value": "back-end", - "namespace": "overriding" + "key": "circuit", + "value": "bluetooth", + "namespace": "navigating" }, { - "key": "matrix", - "value": "redundant", - "namespace": "copying" + "key": "system", + "value": "primary", + "namespace": "backing up" }, { - "key": "feed", - "value": "virtual", - "namespace": "indexing" + "key": "circuit", + "value": "back-end", + "namespace": "programming" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "b1b889e2-69c2-4986-9dd4-0d1da251cf50", - "security_guide_version": "100.102.41" + "system_id": "99ab16d8-0da5-4df6-bad5-b56000ba4932", + "security_guide_version": "100.101.40" }, { - "id": "5086816c-e9a4-4429-a445-a1c47407d7a3", - "end_time": "2024-11-14T12:11:22.626Z", + "id": "8183e5e0-9060-444d-8168-061b5745c092", + "end_time": "2024-11-23T09:29:13.914Z", "failed_rule_count": 0, "supported": true, - "score": 32.43491081461354, + "score": 44.58820890076775, "type": "test_result", - "display_name": "kulas.test", + "display_name": "bednar-harber.test", "groups": [], "tags": [ { - "key": "protocol", - "value": "neural", - "namespace": "hacking" + "key": "matrix", + "value": "optical", + "namespace": "connecting" }, { - "key": "firewall", - "value": "mobile", - "namespace": "navigating" + "key": "interface", + "value": "multi-byte", + "namespace": "synthesizing" }, { "key": "capacitor", - "value": "primary", - "namespace": "programming" + "value": "virtual", + "namespace": "transmitting" }, { - "key": "monitor", - "value": "solid state", - "namespace": "backing up" + "key": "circuit", + "value": "virtual", + "namespace": "bypassing" }, { - "key": "feed", - "value": "optical", - "namespace": "navigating" + "key": "port", + "value": "auxiliary", + "namespace": "generating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "d9900d3b-e6be-4b13-bc84-c2c3d66c5fc9", - "security_guide_version": "100.102.41" + "system_id": "93b8a3e8-c7d5-41dd-94e5-7d091a7d2583", + "security_guide_version": "100.101.40" }, { - "id": "2fe248a5-a859-4468-a5c4-71cb5d8d7b61", - "end_time": "2024-11-14T12:11:22.792Z", + "id": "27f90cc7-14b5-4bbd-b2cf-2be0f45c86ae", + "end_time": "2024-11-23T09:29:13.977Z", "failed_rule_count": 0, "supported": true, - "score": 33.82463620559125, + "score": 44.79751689283131, "type": "test_result", - "display_name": "kling.test", + "display_name": "marks.example", "groups": [], "tags": [ { - "key": "microchip", - "value": "haptic", - "namespace": "calculating" + "key": "circuit", + "value": "open-source", + "namespace": "parsing" }, { - "key": "hard drive", + "key": "port", "value": "primary", - "namespace": "generating" + "namespace": "quantifying" }, { - "key": "firewall", + "key": "bus", "value": "solid state", - "namespace": "quantifying" + "namespace": "overriding" }, { - "key": "array", - "value": "primary", - "namespace": "parsing" + "key": "microchip", + "value": "open-source", + "namespace": "backing up" }, { - "key": "port", - "value": "online", - "namespace": "synthesizing" + "key": "program", + "value": "multi-byte", + "namespace": "backing up" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "142450ae-8d51-4b1f-b201-5154f8ca0988", - "security_guide_version": "100.102.41" + "system_id": "23c36f20-2c9b-4ecb-a3ba-82c7ed8864dd", + "security_guide_version": "100.101.40" }, { - "id": "c024ae23-846b-4a50-9b64-f07cbc0615d6", - "end_time": "2024-11-14T12:11:22.785Z", + "id": "4fade579-4125-403f-81b8-20c86993efba", + "end_time": "2024-11-23T09:29:13.877Z", "failed_rule_count": 0, "supported": true, - "score": 34.77100911240797, + "score": 46.00489454546969, "type": "test_result", - "display_name": "barton-wolff.test", + "display_name": "rice-gislason.example", "groups": [], "tags": [ { - "key": "transmitter", - "value": "wireless", - "namespace": "generating" + "key": "circuit", + "value": "mobile", + "namespace": "overriding" }, { - "key": "application", - "value": "redundant", - "namespace": "connecting" + "key": "matrix", + "value": "solid state", + "namespace": "calculating" }, { - "key": "application", - "value": "haptic", - "namespace": "indexing" + "key": "card", + "value": "wireless", + "namespace": "backing up" }, { - "key": "transmitter", - "value": "mobile", - "namespace": "programming" + "key": "capacitor", + "value": "virtual", + "namespace": "overriding" }, { - "key": "interface", - "value": "primary", - "namespace": "compressing" + "key": "monitor", + "value": "open-source", + "namespace": "generating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "c65b1f98-3a54-4ebc-9fde-a00dc636bd75", - "security_guide_version": "100.102.41" + "system_id": "cd6aec4c-6fdf-442e-b024-60a3d3545157", + "security_guide_version": "100.101.40" } ], "meta": { @@ -15080,9 +15081,9 @@ "sort_by": "score" }, "links": { - "first": "/api/compliance/v2/reports/888d741c-1bb0-4e60-be20-85909d38e898/test_results?limit=10&offset=0&sort_by=score", - "last": "/api/compliance/v2/reports/888d741c-1bb0-4e60-be20-85909d38e898/test_results?limit=10&offset=20&sort_by=score", - "next": "/api/compliance/v2/reports/888d741c-1bb0-4e60-be20-85909d38e898/test_results?limit=10&offset=10&sort_by=score" + "first": "/api/compliance/v2/reports/c3d7f4b2-db2d-4646-b49f-473053956f43/test_results?limit=10&offset=0&sort_by=score", + "last": "/api/compliance/v2/reports/c3d7f4b2-db2d-4646-b49f-473053956f43/test_results?limit=10&offset=20&sort_by=score", + "next": "/api/compliance/v2/reports/c3d7f4b2-db2d-4646-b49f-473053956f43/test_results?limit=10&offset=10&sort_by=score" } }, "summary": "", @@ -15099,8 +15100,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/141a598b-4a5f-403f-8246-5ff408b4f816/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/141a598b-4a5f-403f-8246-5ff408b4f816/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0" + "first": "/api/compliance/v2/reports/1cd3a25b-469e-4f67-b703-2f5b38441b72/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/1cd3a25b-469e-4f67-b703-2f5b38441b72/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0" } }, "summary": "", @@ -15261,7 +15262,7 @@ "examples": { "List of available Security Guide versions": { "value": [ - "100.109.1" + "100.107.39" ], "summary": "", "description": "" @@ -15311,7 +15312,7 @@ "tags": [ "Reports" ], - "description": "Returns a Test Result under a Report", + "description": "Retrieve a specific test result for a specific report.", "operationId": "ReportTestResult", "responses": { "200": { @@ -15322,46 +15323,46 @@ "Returns a Test Result under a Report": { "value": { "data": { - "id": "67a893e9-1be0-4396-8296-5a24ab82e1a8", - "end_time": "2024-11-14T12:11:24.680Z", + "id": "5674063f-8bb2-4453-b04b-f0732d60be33", + "end_time": "2024-11-23T09:29:16.147Z", "failed_rule_count": 0, "supported": true, - "score": 9.975277134915117, + "score": 97.76381952384386, "type": "test_result", - "display_name": "johnston.test", + "display_name": "rutherford.example", "groups": [], "tags": [ { - "key": "circuit", - "value": "haptic", - "namespace": "calculating" + "key": "array", + "value": "1080p", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "wireless", + "key": "driver", + "value": "multi-byte", "namespace": "indexing" }, { - "key": "pixel", - "value": "multi-byte", - "namespace": "bypassing" + "key": "transmitter", + "value": "primary", + "namespace": "generating" }, { - "key": "alarm", - "value": "bluetooth", - "namespace": "generating" + "key": "microchip", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "bandwidth", - "value": "mobile", - "namespace": "indexing" + "key": "application", + "value": "wireless", + "namespace": "hacking" } ], "os_major_version": 8, "os_minor_version": 0, - "compliant": false, - "system_id": "3ba6ef8d-c8d3-438b-9c27-210677e98c95", - "security_guide_version": "100.110.17" + "compliant": true, + "system_id": "75b0119e-fa3b-4f0d-8909-51778bd9c4a6", + "security_guide_version": "100.109.16" } }, "summary": "", @@ -15392,7 +15393,7 @@ "Description of an error when requesting a non-existing Test Result": { "value": { "errors": [ - "V2::TestResult not found with ID 48725bdb-ca58-4268-98a1-b1aad845ce2e" + "V2::TestResult not found with ID a579c721-9b43-4647-9f9d-c39086e3a386" ] }, "summary": "", @@ -15489,7 +15490,7 @@ "tags": [ "Content" ], - "description": "Lists Value Definitions", + "description": "Retrieve a list of the fields which can be edited within a profile.", "operationId": "ValueDefinitions", "responses": { "200": { @@ -15501,93 +15502,93 @@ "value": { "data": [ { - "id": "01a89cae-9470-4776-836d-f462e7842b3d", - "ref_id": "foo_value_6b9cfca4-4f0a-447f-8da2-d351fadb2f24", - "title": "Sint cupiditate est voluptatum.", - "description": "Aut corporis doloremque. Similique iste nobis. Expedita cumque sunt.", + "id": "0144b187-7082-42cd-a8c1-d69e989f0023", + "ref_id": "foo_value_703f790d-21d9-47e5-b218-aeb58feda781", + "title": "Enim voluptatem nisi maiores.", + "description": "Non quibusdam fugiat. Quia itaque aut. Quia quisquam velit.", "value_type": "number", - "default_value": "0.46183725289148514", + "default_value": "0.4412923014454486", "type": "value_definition" }, { - "id": "083874eb-1976-4358-b7dc-0bc176b4be78", - "ref_id": "foo_value_6af08995-7ff1-49c1-a181-d606f702d447", - "title": "Quidem eveniet aut labore.", - "description": "Dolorem ipsa cumque. Quis a et. Itaque quaerat commodi.", + "id": "0b4bf39d-5029-4424-bbd8-ee6b5fa6829c", + "ref_id": "foo_value_40f50a85-b3ae-4fe7-8904-1b3061443606", + "title": "Ad ipsam qui vitae.", + "description": "Qui in fugit. Molestias asperiores error. Temporibus est ipsum.", "value_type": "number", - "default_value": "0.4731278274625662", + "default_value": "0.24361512180720002", "type": "value_definition" }, { - "id": "19e82c01-a77e-4ea6-8e99-b1ecd852ac84", - "ref_id": "foo_value_8e28106b-dfbb-4b44-bdf7-171a960ab53b", - "title": "Impedit eius deleniti possimus.", - "description": "Optio laudantium excepturi. Sed praesentium excepturi. Iusto nulla at.", + "id": "122d3788-5764-45b0-961f-49037a791109", + "ref_id": "foo_value_01849eb3-3d05-4f30-a82e-07fbdb1a8a18", + "title": "Ex culpa quisquam voluptas.", + "description": "Laborum eum eum. Non quis vel. Quia dolor tempore.", "value_type": "number", - "default_value": "0.0360667747414134", + "default_value": "0.0015693353714830716", "type": "value_definition" }, { - "id": "1ea823c3-a47d-4ba8-ae43-ced61053c375", - "ref_id": "foo_value_92d6bc7e-92c1-4232-b697-704e9400d4b3", - "title": "Quia modi in voluptatem.", - "description": "Beatae excepturi est. Minus veritatis omnis. Recusandae facere molestiae.", + "id": "1790177b-3dfe-4568-bedc-13675ff36149", + "ref_id": "foo_value_3085b250-28d7-49f5-bb36-7f6df9e1d0c2", + "title": "Unde culpa est dolor.", + "description": "Nesciunt non repellat. Maxime iusto itaque. Cupiditate earum inventore.", "value_type": "number", - "default_value": "0.8393024464198549", + "default_value": "0.923845517299785", "type": "value_definition" }, { - "id": "1ff32509-c221-4ef0-a849-6405782065ef", - "ref_id": "foo_value_fd849742-9e90-4caf-85ef-2a629316d0c6", - "title": "Distinctio molestias qui quis.", - "description": "Ipsum repudiandae et. Earum ea ipsa. Voluptas perspiciatis adipisci.", + "id": "2184a316-62f0-4386-9654-c84cf64c653c", + "ref_id": "foo_value_43d08c5a-9a90-49d3-8757-5642ed9468bd", + "title": "Vero adipisci at dolor.", + "description": "Sed sint eum. Praesentium porro tempora. Quas nostrum suscipit.", "value_type": "number", - "default_value": "0.20653753436453526", + "default_value": "0.2819857708605198", "type": "value_definition" }, { - "id": "210ad8ad-9fc5-4ded-9a3c-bcdf7e93d775", - "ref_id": "foo_value_a097e9de-fe40-4150-8119-f77bbc191142", - "title": "Modi ipsam iste reiciendis.", - "description": "Minima est officiis. Dignissimos maxime aliquam. Sapiente quis sed.", + "id": "58d141d2-424d-4aeb-930b-2e1746ecce9d", + "ref_id": "foo_value_fb3b9aa6-46d3-44c9-8445-3cb5413a32de", + "title": "Excepturi est velit et.", + "description": "Ut similique praesentium. Eos minima repudiandae. Doloribus esse eveniet.", "value_type": "number", - "default_value": "0.49041127569466003", + "default_value": "0.3281505693203356", "type": "value_definition" }, { - "id": "272c7461-a258-459e-b236-c65b121ef2b3", - "ref_id": "foo_value_2af420e2-0c33-4785-af76-9f9a8f5df4be", - "title": "Sunt commodi placeat sed.", - "description": "Dignissimos dolorem debitis. Optio nesciunt ea. Aut consequatur ipsam.", + "id": "59a70d65-4b29-4f42-ad3a-789a7327c01f", + "ref_id": "foo_value_ef701b6a-aa67-4029-b9e9-f86f379b3e25", + "title": "Eum tenetur voluptates nobis.", + "description": "Deserunt molestias voluptatum. Alias sit eum. Aut harum voluptatem.", "value_type": "number", - "default_value": "0.22538016464817057", + "default_value": "0.6344440411128011", "type": "value_definition" }, { - "id": "2838626a-9f66-4505-815e-635cb87d84d9", - "ref_id": "foo_value_9e079396-76a6-4358-9d02-19bde2f052e9", - "title": "Est sint quidem et.", - "description": "Quia sit sunt. Et hic commodi. Nisi perferendis perspiciatis.", + "id": "6782c485-b61e-41cc-a88d-e5a796334f4e", + "ref_id": "foo_value_a86375c8-41f7-4459-a030-4ca08d6d9987", + "title": "Et nihil libero in.", + "description": "Magnam aut quo. Et unde distinctio. A ut dolorem.", "value_type": "number", - "default_value": "0.6394214040047392", + "default_value": "0.4692000812174909", "type": "value_definition" }, { - "id": "2ebdfe25-d925-48d8-b81d-a146a38e884d", - "ref_id": "foo_value_fa2cfcbf-30b6-4488-ac12-c69a2b7ddde0", - "title": "Et qui enim enim.", - "description": "Dicta perspiciatis iure. Blanditiis sint in. Quam accusantium expedita.", + "id": "6d8aa609-b0fd-4d5e-88f8-851850c4e032", + "ref_id": "foo_value_e1ac4f39-9302-46e9-8373-f83c488fab84", + "title": "Ratione qui ad ea.", + "description": "Voluptas eum ad. Repellat ut rerum. Quos et dolorem.", "value_type": "number", - "default_value": "0.13035805981086968", + "default_value": "0.7159694341190964", "type": "value_definition" }, { - "id": "44117a63-4e4f-40e6-bcec-2d2d15256a53", - "ref_id": "foo_value_3006b2fa-5ca5-4f0d-a406-47eb8363f612", - "title": "Et eligendi ut itaque.", - "description": "Odio officia rerum. Necessitatibus porro voluptatem. Possimus unde laborum.", + "id": "7b9f8c80-db8a-4a58-b9a0-c8844893dd17", + "ref_id": "foo_value_0bcf3fa2-a719-40c0-aa10-c36abbbef3f7", + "title": "Non molestiae in qui.", + "description": "Et ut quam. Qui ut sit. Corrupti voluptatibus officia.", "value_type": "number", - "default_value": "0.14766503638699824", + "default_value": "0.8940229538931513", "type": "value_definition" } ], @@ -15597,9 +15598,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/ed414818-7091-4f39-ab50-dc999e5a396d/value_definitions?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/ed414818-7091-4f39-ab50-dc999e5a396d/value_definitions?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/ed414818-7091-4f39-ab50-dc999e5a396d/value_definitions?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/c484f239-e357-47cf-b71a-5318c33ab9a7/value_definitions?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/c484f239-e357-47cf-b71a-5318c33ab9a7/value_definitions?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/c484f239-e357-47cf-b71a-5318c33ab9a7/value_definitions?limit=10&offset=10" } }, "summary": "", @@ -15609,93 +15610,93 @@ "value": { "data": [ { - "id": "76948a47-4b27-4bdf-9509-ed4f2d9df374", - "ref_id": "foo_value_6113af1f-ea99-46f3-81f6-4ec2e845f8e4", - "title": "Atque sunt corporis aut.", - "description": "Voluptatem soluta sit. Ipsam sint repudiandae. Aut quidem eos.", + "id": "734be4ad-6fb8-4266-8f21-2c8f32d6d51c", + "ref_id": "foo_value_28a12b81-8231-4b29-a94d-a3fc5af44fb3", + "title": "Asperiores odit et facere.", + "description": "In adipisci tenetur. Quis consectetur minus. Expedita nihil consequatur.", "value_type": "number", - "default_value": "0.9356452690118262", + "default_value": "0.9213639674723846", "type": "value_definition" }, { - "id": "77b003c1-37f0-4b55-9de6-f0302dd135e0", - "ref_id": "foo_value_6acd65db-594f-4c5b-938f-ad2d1d04ead9", - "title": "Consequatur nisi nemo repellat.", - "description": "Blanditiis quae qui. Tempore voluptatibus dignissimos. Et porro fuga.", + "id": "04d06218-6dd3-4e36-977b-c286a77c2a2e", + "ref_id": "foo_value_e6892e6d-f35c-4f74-98da-95fa828360f4", + "title": "Consequatur deserunt quo modi.", + "description": "Accusamus maiores cum. Accusantium ratione explicabo. Odit fuga facilis.", "value_type": "number", - "default_value": "0.4756454997509203", + "default_value": "0.9810592055325207", "type": "value_definition" }, { - "id": "1430dae5-f413-4c6f-b2cc-6f38af248355", - "ref_id": "foo_value_31708cb8-dea0-40a2-9d17-d30492126867", - "title": "Eum atque facere culpa.", - "description": "Explicabo et aut. Praesentium vitae adipisci. Reprehenderit sint praesentium.", + "id": "86af1497-9a18-4078-bcb5-8538158ff143", + "ref_id": "foo_value_1ded6319-73e1-485a-a6b3-ab3b6d9a5c04", + "title": "Corrupti laborum praesentium doloremque.", + "description": "Aut repellendus ut. Tempore dignissimos eligendi. Dolor facilis et.", "value_type": "number", - "default_value": "0.3506275660085497", + "default_value": "0.6899939092037719", "type": "value_definition" }, { - "id": "487dbbb0-ea54-4c5f-a6cc-a3b9520c397f", - "ref_id": "foo_value_5771a42f-8b96-4056-8ed4-e65318bce831", - "title": "Eum unde repellendus quo.", - "description": "Et neque quaerat. Veniam saepe eaque. Est debitis voluptas.", + "id": "7a7c6011-e408-4992-99ec-164691bc2324", + "ref_id": "foo_value_bbe38d5a-276b-406b-a751-b061a5297fd3", + "title": "Dolor deserunt sed est.", + "description": "Temporibus fugiat officia. Et doloremque eos. Quidem provident tenetur.", "value_type": "number", - "default_value": "0.9734886232778274", + "default_value": "0.20198143459335627", "type": "value_definition" }, { - "id": "4d02a3eb-6b5e-41b9-bb01-480c30d64323", - "ref_id": "foo_value_177b69e9-9091-4e3b-b214-467a00362888", - "title": "Fuga hic quisquam distinctio.", - "description": "Et voluptatem id. Saepe commodi vero. Repellendus aut est.", + "id": "185da6ad-331d-4c65-9387-7abf4e240c0e", + "ref_id": "foo_value_69ca3fd1-bb6d-4596-a74a-1afd7c16f27a", + "title": "Dolor nihil odio asperiores.", + "description": "Numquam natus quos. Quia accusantium et. Autem perspiciatis consequuntur.", "value_type": "number", - "default_value": "0.5357189259065366", + "default_value": "0.028141406552997683", "type": "value_definition" }, { - "id": "60280d69-8078-4c4b-8386-d4ab0fa9a040", - "ref_id": "foo_value_4d53ae94-c43b-4589-a3e7-8c449bc337e9", - "title": "In illo amet fugiat.", - "description": "Fugit porro amet. Perspiciatis ipsa facilis. Natus sapiente repudiandae.", + "id": "700a65e6-3836-4bec-b856-4aec7e19ac9c", + "ref_id": "foo_value_875177f7-cb46-46ab-accc-e057e0f78f02", + "title": "Dolorem ad rerum quas.", + "description": "Ut consequatur qui. Eos ab inventore. Nihil ut vel.", "value_type": "number", - "default_value": "0.4038867303700415", + "default_value": "0.36162502651171646", "type": "value_definition" }, { - "id": "a3e8e29b-4dd2-496a-896e-e97eed0a5353", - "ref_id": "foo_value_753fc2a3-5c7b-43fe-9372-376163a35540", - "title": "Ipsum non possimus odit.", - "description": "Labore magni voluptatum. Qui dolore voluptas. Incidunt quasi vero.", + "id": "c337074e-9239-40a9-9991-9356c19d8454", + "ref_id": "foo_value_482a20f4-0096-42d9-a26b-dafda2b3a424", + "title": "Dolores doloremque nisi est.", + "description": "Non consequuntur mollitia. Architecto laborum omnis. Non velit eius.", "value_type": "number", - "default_value": "0.4827035039362456", + "default_value": "0.7413582245498793", "type": "value_definition" }, { - "id": "d084dea5-5143-4e60-bf5e-c21a82f2238b", - "ref_id": "foo_value_1a76e466-f057-4b06-8edc-b015de836e5b", - "title": "Modi non quod sunt.", - "description": "Eos magnam eligendi. Ut nostrum tempore. Facere placeat commodi.", + "id": "16d91cd0-fe17-42ed-b366-73a147539ba2", + "ref_id": "foo_value_61be5f07-4e9c-4593-8957-e84c4f8a70ce", + "title": "Ducimus et sed ipsam.", + "description": "Quia libero itaque. Vitae sed et. Et omnis dolor.", "value_type": "number", - "default_value": "0.3719251356108413", + "default_value": "0.24290272346421216", "type": "value_definition" }, { - "id": "a11ab96b-ad08-48ce-b1bc-b8c57fb115e0", - "ref_id": "foo_value_d67c3099-423b-491e-a4ca-55a71e19508f", - "title": "Non rem consequatur natus.", - "description": "Omnis cum laboriosam. Tempore soluta ratione. Sed soluta ex.", + "id": "e1ef2ceb-c700-43b5-bae4-098072059fdc", + "ref_id": "foo_value_d22cd7a1-8c0a-4c43-8c61-c3d0b0b7aa7b", + "title": "Ducimus voluptates quae pariatur.", + "description": "Qui ex sed. Nulla aut esse. Autem qui error.", "value_type": "number", - "default_value": "0.2592610387958234", + "default_value": "0.36950427644205264", "type": "value_definition" }, { - "id": "ed3f63aa-f157-44f3-87f4-c1f695f477f3", - "ref_id": "foo_value_923c74ea-6dc2-4492-b5a2-e95e52b0ecca", - "title": "Omnis itaque dolore eius.", - "description": "Molestiae fugiat dignissimos. Et ipsa reiciendis. Qui enim sed.", + "id": "5c7becca-1f71-4c73-918e-954f8e0fb5bf", + "ref_id": "foo_value_4d071a47-783b-44db-992a-9ed59adaa13f", + "title": "Eius voluptas illum suscipit.", + "description": "Quas fuga omnis. Dolores vel expedita. Autem est debitis.", "value_type": "number", - "default_value": "0.10662876184039705", + "default_value": "0.49777502604910806", "type": "value_definition" } ], @@ -15706,36 +15707,36 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/7ed00f2d-dea0-4f5d-9fff-0deebb23a7a3/value_definitions?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/7ed00f2d-dea0-4f5d-9fff-0deebb23a7a3/value_definitions?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/7ed00f2d-dea0-4f5d-9fff-0deebb23a7a3/value_definitions?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/7657b710-2fcd-43d2-864d-9adde43d6664/value_definitions?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/7657b710-2fcd-43d2-864d-9adde43d6664/value_definitions?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/7657b710-2fcd-43d2-864d-9adde43d6664/value_definitions?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Value Definitions filtered by '(title=Iusto cumque libero quo.)'": { + "List of Value Definitions filtered by '(title=Sit aspernatur ea quod.)'": { "value": { "data": [ { - "id": "05b8eb61-4b64-4fc1-8d70-7dee55991aed", - "ref_id": "foo_value_a6302f38-d3e5-4d7d-9ec5-97a2c104c4c5", - "title": "Iusto cumque libero quo.", - "description": "Qui ad qui. Quos aliquam fugiat. Iure molestiae veritatis.", + "id": "00bce4f8-5c39-489f-9d91-dbf9fef80b92", + "ref_id": "foo_value_714adaca-f594-4154-8348-4f79d82a862f", + "title": "Sit aspernatur ea quod.", + "description": "Quasi et repudiandae. Blanditiis praesentium quo. Repudiandae alias quis.", "value_type": "number", - "default_value": "0.2201059934462225", + "default_value": "0.4946603344230176", "type": "value_definition" } ], "meta": { "total": 1, - "filter": "(title=\"Iusto cumque libero quo.\")", + "filter": "(title=\"Sit aspernatur ea quod.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/54e19bcd-a676-4a07-8175-fb33fe35de72/value_definitions?filter=%28title%3D%22Iusto+cumque+libero+quo.%22%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/54e19bcd-a676-4a07-8175-fb33fe35de72/value_definitions?filter=%28title%3D%22Iusto+cumque+libero+quo.%22%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/82daa9a5-3b2a-48ae-bad9-ab32d4e1c935/value_definitions?filter=%28title%3D%22Sit+aspernatur+ea+quod.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/82daa9a5-3b2a-48ae-bad9-ab32d4e1c935/value_definitions?filter=%28title%3D%22Sit+aspernatur+ea+quod.%22%29&limit=10&offset=0" } }, "summary": "", @@ -15831,7 +15832,7 @@ "tags": [ "Content" ], - "description": "Returns a Value Definition", + "description": "Retrieve a specific value definition.", "operationId": "ValueDefinition", "responses": { "200": { @@ -15842,12 +15843,12 @@ "Returns a Value Definition": { "value": { "data": { - "id": "32c0321d-e8e0-4c39-96e7-a72dcea75461", - "ref_id": "foo_value_cfc94288-0bb1-440a-8a88-cb23394e3c6d", - "title": "Autem quia quis pariatur.", - "description": "Iste rem dolor. Est exercitationem consectetur. Atque quam non.", + "id": "cd45edac-8f3a-4c4a-8ff6-216f6b3d2625", + "ref_id": "foo_value_4b9c72ed-aef4-420b-b2f9-ab5567d3fbe6", + "title": "Minus dignissimos qui praesentium.", + "description": "Ut ut minima. Fuga rerum totam. Non quia enim.", "value_type": "number", - "default_value": "0.9034230648585917", + "default_value": "0.45874239642045966", "type": "value_definition" } }, @@ -15879,7 +15880,7 @@ "Description of an error when requesting a non-existing Value Definition": { "value": { "errors": [ - "V2::ValueDefinition not found with ID 964889f7-a9fb-43eb-9256-801883fe2cd7" + "V2::ValueDefinition not found with ID f9e06c27-f9e3-4cbe-95fc-45e529c06ff8" ] }, "summary": "", @@ -17035,9 +17036,9 @@ "description": "Pair of keys and values for Value Definition customizations", "examples": [ { - "7b734516-23f7-4886-b78c-d1b25b2f7c28": "foo", - "f12a57b6-f867-46af-a9eb-0e6960f49e3a": "123", - "7c4fe1eb-a348-44df-91a8-3e0db27fe7e7": "false" + "5d249a75-52b5-46b5-8c63-48584e8fb287": "foo", + "76e7a222-d6a1-415e-ae2d-8a412d844d9a": "123", + "5755ab37-cbbd-453b-a0d8-cb3dd50110ee": "false" } ] }