From a02219a2ea15262c433355932da17ae933ef0eb1 Mon Sep 17 00:00:00 2001 From: Roman Blanco Date: Thu, 21 Nov 2024 20:43:40 +0000 Subject: [PATCH] docs(APIv2): RHINENG-14358 spec documentation --- spec/api/v2/openapi.rb | 2 - spec/integration/v2/policies_spec.rb | 13 +- spec/integration/v2/profiles_spec.rb | 4 +- spec/integration/v2/reports_spec.rb | 8 +- spec/integration/v2/rule_groups_spec.rb | 4 +- spec/integration/v2/rule_results_spec.rb | 2 +- spec/integration/v2/rules_spec.rb | 15 +- spec/integration/v2/security_guides_spec.rb | 6 +- .../integration/v2/supported_profiles_spec.rb | 2 +- spec/integration/v2/systems_spec.rb | 16 +- spec/integration/v2/tailorings_spec.rb | 8 +- spec/integration/v2/test_results_spec.rb | 4 +- spec/integration/v2/value_definitions_spec.rb | 4 +- swagger/v2/openapi.json | 9508 ++++++++--------- 14 files changed, 4798 insertions(+), 4798 deletions(-) diff --git a/spec/api/v2/openapi.rb b/spec/api/v2/openapi.rb index 1770b9d52..b8f36d589 100644 --- a/spec/api/v2/openapi.rb +++ b/spec/api/v2/openapi.rb @@ -46,8 +46,6 @@ 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/]' \ diff --git a/spec/integration/v2/policies_spec.rb b/spec/integration/v2/policies_spec.rb index 08c6c78ac..8239eead8 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 5f8e2bf2e..46de6ea44 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..91d615449 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,8 @@ get 'Request Rules assigned to a Tailoring' do v2_auth_header tags 'Policies' - description 'Lists Rules assigned to a Tailoring' + description 'Use this to get a list of rules relating to specific tailorings. '\ + 'Tailorings are customizations of rules.' operationId 'TailoringRules' content_types pagination_params_v2 @@ -318,7 +319,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 +356,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..43b0e15a2 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 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,7 +127,7 @@ 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 the Rule Tree of a Security Guide' # FIXME: Get the security guide rule tree operationId 'SecurityGuideRuleTree' content_types 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 48b563d4c..90b063330 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 @@ -75,7 +75,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 @@ -97,7 +97,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 @@ -147,7 +147,7 @@ get 'Request Systems assigned to a Policy' do v2_auth_header tags 'Policies' - description 'Lists Systems assigned to a Policy' + description 'This is a list of all systems assigned to a specific policy.' operationId 'PolicySystems' content_types tags_params @@ -299,7 +299,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 @@ -338,7 +338,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 @@ -390,7 +390,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 @@ -506,7 +506,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..ba8bfb4a3 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 @@ -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 ee211ae57..7387601da 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": "01d95439-9545-44b3-8b89-36de998f5ec5", + "title": "Voluptate quas consectetur sint.", + "description": "Consequatur deserunt sed. Veniam corrupti non. Recusandae perspiciatis velit.", "business_objective": null, - "compliance_threshold": 48.0, + "compliance_threshold": 26.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": "Excepturi dolores quis animi.", + "ref_id": "xccdf_org.ssgproject.content_profile_d73c4dd9dc85ff629055e9e671fae167" }, { - "id": "2895b784-1d7e-4252-beba-d00de5bfa92b", - "title": "Tenetur voluptatem nihil blanditiis.", - "description": "Aliquam perferendis enim. Ipsum quae alias. Voluptas error alias.", + "id": "0ad4ffff-6477-4614-b914-090a054708b2", + "title": "Repellat velit quae ipsum.", + "description": "Sit quia corporis. Beatae quis ipsa. Qui vero sint.", "business_objective": null, - "compliance_threshold": 34.0, + "compliance_threshold": 35.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": "Dolorem fugiat veritatis ipsa.", + "ref_id": "xccdf_org.ssgproject.content_profile_7be6ac2013473d6b917bc0bc01ca0b71" }, { - "id": "331c9db6-260a-463a-b4e7-4b8f0fc59be7", - "title": "Voluptas id aspernatur quia.", - "description": "Vel ea repellat. Dolorem ut consequuntur. Labore magni aut.", + "id": "0b54b1ba-88d4-4af2-bfea-c1c1987d8b25", + "title": "Tenetur vitae est occaecati.", + "description": "Explicabo unde voluptas. Quod quasi eum. Odit soluta mollitia.", "business_objective": null, - "compliance_threshold": 67.0, + "compliance_threshold": 61.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": "Possimus aperiam omnis aspernatur.", + "ref_id": "xccdf_org.ssgproject.content_profile_8feed1869000f26ac8301aef95304564" }, { - "id": "39ad5051-89e6-4561-a349-c058f19449c4", - "title": "Ipsam quas quo a.", - "description": "Ducimus recusandae aut. Cupiditate eum vel. Totam eum earum.", + "id": "16c0d5cc-21e3-44a2-a95e-98d8b3d02788", + "title": "Voluptate velit velit voluptas.", + "description": "Nihil ut nisi. Alias vitae incidunt. Enim maxime quia.", "business_objective": null, - "compliance_threshold": 19.0, + "compliance_threshold": 48.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": "Sequi amet perferendis commodi.", + "ref_id": "xccdf_org.ssgproject.content_profile_a58b541e88be37fce34ec32b58974705" }, { - "id": "4922dec9-6143-4592-9fef-97f5db65aa7e", - "title": "Ut molestiae possimus qui.", - "description": "Totam saepe facilis. Aut vel non. Eius est aut.", + "id": "27e22347-fbde-443c-b686-2cec69cbef2c", + "title": "Molestiae est blanditiis in.", + "description": "Reprehenderit facere eos. Maiores dolor laboriosam. Odio esse laudantium.", "business_objective": null, - "compliance_threshold": 83.0, + "compliance_threshold": 72.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": "Nemo quia nam voluptatum.", + "ref_id": "xccdf_org.ssgproject.content_profile_3677a3c7d75933c2c807c360ea5e3822" }, { - "id": "52dd1d8c-587f-4a1c-8eeb-12ec199e72f4", - "title": "Iste labore ut sunt.", - "description": "Magnam perferendis sapiente. Nihil nihil sed. Rerum eum dicta.", + "id": "3a370e7d-53a7-4199-a6d0-c81155841567", + "title": "Quia odio voluptas saepe.", + "description": "Enim nobis repellat. Facilis nisi similique. Iure quam eaque.", "business_objective": null, - "compliance_threshold": 81.0, + "compliance_threshold": 56.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": "Vel qui maiores facilis.", + "ref_id": "xccdf_org.ssgproject.content_profile_d78a1e655ade184f0cef7fbbd884b8fb" }, { - "id": "59c96dcb-39d1-4ca1-93d7-4f6f65d88c77", - "title": "Officiis explicabo ab tempora.", - "description": "Fugit necessitatibus est. Odit ut aperiam. Enim et rerum.", + "id": "5a91b854-381b-4661-b33a-a2426e42103f", + "title": "Commodi sed vero odit.", + "description": "Eveniet aliquid soluta. Debitis repellendus rem. Est ratione aut.", "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": "Quod ab aliquid maiores.", + "ref_id": "xccdf_org.ssgproject.content_profile_ae1b03b963478e13454a9a75340d9154" }, { - "id": "66e9584d-3e45-4775-9a4e-33079cf7a679", - "title": "Nesciunt sequi debitis est.", - "description": "Facilis voluptatem quos. Corporis rerum qui. Dolorem vitae molestias.", + "id": "60bb74c6-4802-4705-a4dd-391432bd062f", + "title": "Consequatur dolores dolorem omnis.", + "description": "Quia porro dolorem. Qui itaque sunt. Rerum et aut.", "business_objective": null, - "compliance_threshold": 90.0, + "compliance_threshold": 76.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": "Commodi iusto enim doloremque.", + "ref_id": "xccdf_org.ssgproject.content_profile_aeea871877c06fe73787a975455801e4" }, { - "id": "705bb0f5-2d19-4a8e-a9d3-698f54bc9b3e", - "title": "Eos distinctio adipisci accusantium.", - "description": "Quos natus nisi. Illo et sunt. Esse id ducimus.", + "id": "6b3afecc-340e-47e5-ae04-0ecc280e9bc2", + "title": "Modi qui molestiae eligendi.", + "description": "Qui architecto voluptas. Adipisci est veniam. Nam non aliquam.", "business_objective": null, - "compliance_threshold": 29.0, + "compliance_threshold": 33.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": "Mollitia vel culpa quidem.", + "ref_id": "xccdf_org.ssgproject.content_profile_75030cbb348da1b96639e55b5b03be25" }, { - "id": "716c0bc9-3f08-4f90-883f-095070f5b6a8", - "title": "Quae molestiae voluptas et.", - "description": "Qui magni quam. Qui natus dolorum. Ipsam quam architecto.", + "id": "6dbbda0f-64fd-4307-9c13-3699607c3b51", + "title": "Rem ut odio placeat.", + "description": "Ut voluptates non. Eum eius fugiat. Amet possimus ab.", "business_objective": null, - "compliance_threshold": 38.0, + "compliance_threshold": 30.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": "Temporibus provident aut aliquid.", + "ref_id": "xccdf_org.ssgproject.content_profile_6ee752c76c58c6040aab7f67150624c5" } ], "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": "11cc50b9-dcb1-4d35-876e-512466edda09", + "title": "Enim dolorem atque quo.", + "description": "Esse exercitationem suscipit. Placeat eaque quam. Alias consequatur a.", "business_objective": null, - "compliance_threshold": 87.0, + "compliance_threshold": 60.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": "Incidunt natus et expedita.", + "ref_id": "xccdf_org.ssgproject.content_profile_8ab29872ebc59ae4982baf58770b9ead" }, { - "id": "08730d58-c0e3-4512-8851-91db229cbe07", - "title": "Soluta nihil harum praesentium.", - "description": "Vel veritatis quo. Quia necessitatibus aut. Modi error ratione.", + "id": "1336d3bb-be37-423a-aabe-7ab8167768cb", + "title": "Nesciunt vel nam est.", + "description": "Exercitationem quisquam est. Aut ea ullam. Quia enim atque.", "business_objective": null, - "compliance_threshold": 49.0, + "compliance_threshold": 15.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": "Distinctio et exercitationem voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_8411233e479c8f7fae642e5de29db85a" }, { - "id": "2173ca8f-5873-495f-a961-f28eb9ce312b", - "title": "Quasi ex sed et.", - "description": "Eius nobis consequuntur. Qui voluptatum perspiciatis. Et quam quia.", + "id": "1dc43e96-0627-4d96-bdf7-0f5331b35849", + "title": "Quas atque quam aut.", + "description": "Eos et dolores. Accusamus voluptate veniam. Nobis qui quis.", "business_objective": null, - "compliance_threshold": 96.0, + "compliance_threshold": 22.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": "Voluptatem optio neque et.", + "ref_id": "xccdf_org.ssgproject.content_profile_14c0357501d30ca470ca00841848b3f0" }, { - "id": "26f8f367-6c5c-4ecf-b405-9290612bc090", - "title": "Quia sed beatae provident.", - "description": "Officia quis repellat. Sunt eum hic. Voluptas assumenda et.", + "id": "1fd4b1bb-202f-47fe-be6a-3b60f1c106e3", + "title": "Distinctio consequatur sint alias.", + "description": "Perspiciatis quis odit. Quia dolor ipsam. Molestias consequatur exercitationem.", "business_objective": null, - "compliance_threshold": 32.0, + "compliance_threshold": 15.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": "Laudantium nobis ullam et.", + "ref_id": "xccdf_org.ssgproject.content_profile_353f9079e50329b9f2283b800f59d53d" }, { - "id": "2a3e4b4d-e3df-4398-bfea-6175f9729949", - "title": "Et ut consectetur ut.", - "description": "Dignissimos et expedita. Blanditiis laudantium voluptas. Accusantium iusto esse.", + "id": "21a0c409-1e55-4404-b322-e09860ecb295", + "title": "Cumque nisi suscipit expedita.", + "description": "Aut fugit numquam. Inventore aliquam amet. Doloribus qui non.", "business_objective": null, - "compliance_threshold": 13.0, + "compliance_threshold": 51.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": "Consequatur animi ad voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_bef5c17ec346eba57ffb37715eeae76f" }, { - "id": "2c0ab18b-e453-4f8c-bc0c-05df0f1f165a", - "title": "Aut quod ea quibusdam.", - "description": "Tempore qui perferendis. Voluptates maiores ab. Totam sint dolorem.", + "id": "24106479-1747-4766-b0bd-7ce11d222e05", + "title": "Nemo fugit hic rem.", + "description": "Tempore nesciunt laudantium. Sit ut iure. Autem nulla possimus.", "business_objective": null, - "compliance_threshold": 7.0, + "compliance_threshold": 62.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": "Consequatur eos voluptatum doloribus.", + "ref_id": "xccdf_org.ssgproject.content_profile_4595c8fffb17bad0cf3b9bd6ce119236" }, { - "id": "35db7ec9-0d4f-45da-9a06-57e1571a64f4", - "title": "Minus nesciunt et pariatur.", - "description": "Nisi voluptatem minus. Commodi est impedit. Voluptatem accusamus sed.", + "id": "25e6087b-ba9b-4150-a68f-ea98be6ef090", + "title": "Nesciunt sunt expedita est.", + "description": "Ut qui quae. Non ut iure. Culpa rerum et.", "business_objective": null, - "compliance_threshold": 68.0, + "compliance_threshold": 1.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": "Sed dolor sit et.", + "ref_id": "xccdf_org.ssgproject.content_profile_3841d7d95928241bac7e7ec5d5602c41" }, { - "id": "3ef1e4ea-a755-46f7-8419-30e6281df112", - "title": "Reiciendis quam necessitatibus eos.", - "description": "Illum totam provident. Atque minima officia. Nobis ut occaecati.", + "id": "30749f48-0108-42ea-a55f-9c2b13f4def5", + "title": "Magnam tempore et quia.", + "description": "Ab aut minus. Tenetur repellat cumque. Aut magni doloribus.", "business_objective": null, - "compliance_threshold": 93.0, + "compliance_threshold": 27.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": "Eos inventore nobis ut.", + "ref_id": "xccdf_org.ssgproject.content_profile_b8bca3e7e3de58f46fa0c208e3801a46" }, { - "id": "426a4bea-e527-4de8-b885-a8196bef663a", - "title": "Impedit et nemo veritatis.", - "description": "Non hic molestiae. Quis non et. Quis laborum dignissimos.", + "id": "325d6b81-8c54-4d3a-8da9-6ab9ee6ac629", + "title": "Deleniti molestiae similique dolor.", + "description": "Laboriosam cupiditate eaque. Nihil rem voluptatem. Voluptas officiis quia.", "business_objective": null, - "compliance_threshold": 31.0, + "compliance_threshold": 0.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": "Sint eligendi tempore dicta.", + "ref_id": "xccdf_org.ssgproject.content_profile_f567ca4f96e4bd961b9e7c081ba0f7d5" }, { - "id": "5346fc85-ac53-4deb-a5a5-8bc52bb942e1", - "title": "Occaecati molestiae dolorem accusamus.", - "description": "Accusantium temporibus quisquam. Molestiae asperiores veniam. Enim nemo deleniti.", + "id": "40175598-ded0-446d-bd3e-05c76ab7a265", + "title": "Aspernatur porro perspiciatis culpa.", + "description": "Accusantium sed deserunt. Ut cum corrupti. Corrupti eum inventore.", "business_objective": null, - "compliance_threshold": 33.0, + "compliance_threshold": 64.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": "Asperiores dolores aspernatur animi.", + "ref_id": "xccdf_org.ssgproject.content_profile_9495f9f4bc23bbccf2030cb92e99554c" } ], "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": "cf991bf1-c48d-4d6c-8862-a5047d27e7d8", "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": "Enim nihil temporibus qui.", + "ref_id": "xccdf_org.ssgproject.content_profile_2c4cfeb2dd24a4a66e8ac99c372a4fae" } }, "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": "1fb8afe6-d053-45ab-bdbd-8741d18518c1", + "title": "Voluptatem placeat voluptate eos.", + "description": "Rerum consequatur omnis. Hic qui veritatis. Explicabo modi quis.", "business_objective": null, - "compliance_threshold": 90.0, + "compliance_threshold": 50.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": "Ab quis et quos.", + "ref_id": "xccdf_org.ssgproject.content_profile_a0e2d30b4722c81dc7da111174d204b3" } }, "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 bb8de885-e0f4-4fb6-9871-b3f5ca9a43d2" ] }, "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": "37ea092f-fd77-4251-97a9-17fb9df6f5bc", + "title": "A eos deserunt eveniet.", + "description": "Autem et quis. Vel magni explicabo. Fugiat aut et.", "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": "Similique enim sed non.", + "ref_id": "xccdf_org.ssgproject.content_profile_52edc7104d86672d77db73f41962dc35" } }, "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": "fbc09f45-c47e-4d38-8655-dbbfe3ea6de6", + "title": "Dolorum sunt et maxime.", + "description": "Suscipit labore laborum. Blanditiis sunt consectetur. Quaerat praesentium eaque.", "business_objective": null, - "compliance_threshold": 3.0, + "compliance_threshold": 67.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": "Cum sed nemo itaque.", + "ref_id": "xccdf_org.ssgproject.content_profile_0add597cf8e7c145d8308130cf8f6afa" } }, "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": "0124bd8a-83b6-4459-8f64-e6b3c55f4b78", + "title": "Et ullam totam tenetur.", + "description": "Ea pariatur dolores. Voluptatibus labore consequatur. Sed a aliquid.", "business_objective": null, - "compliance_threshold": 31.0, + "compliance_threshold": 5.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": "Vitae velit exercitationem consectetur.", + "ref_id": "xccdf_org.ssgproject.content_profile_c0efe938a2876db39d51bfdb3a37ffdb" }, { - "id": "0e8263c8-80f3-40c1-941c-34c62650b385", - "title": "Eius nostrum eum nihil.", - "description": "Iusto sed quidem. Et sapiente commodi. Sunt qui accusantium.", + "id": "038c7a19-98ea-454e-93e4-ba650b19defe", + "title": "Quod necessitatibus ullam et.", + "description": "Accusantium non non. Quia officia laboriosam. Odio excepturi iure.", "business_objective": null, - "compliance_threshold": 98.0, + "compliance_threshold": 70.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": "Dolorem saepe quibusdam sit.", + "ref_id": "xccdf_org.ssgproject.content_profile_f2e863fa577b32d97ca7522ace7e5363" }, { - "id": "105a6bcf-d299-4159-ae68-6e5e3d0582ce", - "title": "Consequuntur qui suscipit id.", - "description": "Impedit nesciunt cumque. Eum sunt quia. Ut inventore laboriosam.", + "id": "04c67be9-9f1c-4694-954c-2aa330ae5e6d", + "title": "Accusamus iste odit illum.", + "description": "Voluptatibus consequatur incidunt. Ut voluptatibus sint. In corporis harum.", "business_objective": null, - "compliance_threshold": 95.0, + "compliance_threshold": 84.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": "Eveniet qui quaerat officia.", + "ref_id": "xccdf_org.ssgproject.content_profile_506583022bdafffc6e1aecdc355fee21" }, { - "id": "16633d69-3659-48c9-a66a-74b42b4fec00", - "title": "Illo qui consequatur non.", - "description": "Dolorum ut et. Sunt alias vitae. Rerum qui eum.", + "id": "16c4cb2a-9798-480b-a02b-62df1f7eb55a", + "title": "Aut nisi quis porro.", + "description": "Rerum accusamus non. Asperiores atque reprehenderit. Incidunt quaerat voluptatem.", "business_objective": null, - "compliance_threshold": 53.0, + "compliance_threshold": 24.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": "Dignissimos numquam sunt doloremque.", + "ref_id": "xccdf_org.ssgproject.content_profile_3b2e02705ae77358132b182d8a9cd2e4" }, { - "id": "313cf3f1-e97c-4682-8f52-b7e7b3ebe41b", - "title": "Ea doloribus non vel.", - "description": "Ab maxime iure. Labore sed odio. Error non libero.", + "id": "19900d2a-c28c-4225-ae48-d0e4c611fa81", + "title": "Est quaerat vel dolores.", + "description": "Sapiente est dignissimos. Aut suscipit assumenda. Omnis quasi beatae.", "business_objective": null, - "compliance_threshold": 18.0, + "compliance_threshold": 86.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 voluptatem rem consequatur.", + "ref_id": "xccdf_org.ssgproject.content_profile_46a9551b46b3e6e2432e350b10bbdfab" }, { - "id": "5de28bf8-f8b6-44ea-8d52-d48f3e494009", - "title": "Sequi nemo quae aliquam.", - "description": "Quasi molestiae non. Suscipit ut iste. Occaecati velit ipsam.", + "id": "250814ae-538a-459a-ae34-f7b52d9a01c3", + "title": "Sed illo dolorum perspiciatis.", + "description": "Vero nam dolorum. Ex sit quasi. Dolores rem iure.", "business_objective": null, - "compliance_threshold": 26.0, + "compliance_threshold": 53.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": "Id et ipsum iste.", + "ref_id": "xccdf_org.ssgproject.content_profile_7827305913ca1b13f936c1d9e5b92459" }, { - "id": "62c2302a-0ecd-441b-bc4c-78edd5559c13", - "title": "Dignissimos aperiam natus veniam.", - "description": "Vero sit ut. Commodi rem est. Voluptatem optio provident.", + "id": "2580dfb8-0805-4ac9-925c-5fec821cc79c", + "title": "Quasi voluptatem recusandae minima.", + "description": "Qui tenetur sunt. Soluta officiis perferendis. Aut esse perspiciatis.", "business_objective": null, "compliance_threshold": 7.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": "Quia incidunt sed nostrum.", + "ref_id": "xccdf_org.ssgproject.content_profile_cf5f90fe50e946e682d3c51601ed6568" }, { - "id": "63573b8b-84c5-4789-b763-5270c345e52f", - "title": "Illo quidem voluptatum est.", - "description": "In tempore repellat. Temporibus accusantium eos. Doloremque itaque placeat.", + "id": "2f014e66-38fe-4f92-9924-790f182eafd1", + "title": "Quisquam iste ipsum blanditiis.", + "description": "Molestiae qui vel. Alias assumenda repellat. Quia explicabo qui.", "business_objective": null, - "compliance_threshold": 14.0, + "compliance_threshold": 40.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": "Quidem voluptas et dolorem.", + "ref_id": "xccdf_org.ssgproject.content_profile_0ba808d74ade8f5b7442e062b41090f8" }, { - "id": "6ba09c66-7ec4-496b-b816-bc2930e371c9", - "title": "Ducimus dolorem deleniti cupiditate.", - "description": "Alias exercitationem non. Nobis deserunt tempora. Et est consequatur.", + "id": "43b3eac0-8472-44cc-9432-6bdde81e587e", + "title": "Voluptatem praesentium sunt rerum.", + "description": "Quae a beatae. Consequuntur quod illum. Est quo earum.", "business_objective": null, "compliance_threshold": 78.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": "Inventore tempore sapiente voluptates.", + "ref_id": "xccdf_org.ssgproject.content_profile_9d91c67a5a8a1bc9d9b94f17dfb7e5f5" }, { - "id": "7af3bca2-d469-4933-800f-977c5281f40f", - "title": "Similique ab quis id.", - "description": "Iure provident maiores. Suscipit perferendis et. Dignissimos doloribus modi.", + "id": "4c5e84d1-d3ea-420c-905c-79f58337c588", + "title": "Impedit perspiciatis voluptatem enim.", + "description": "Sed error quisquam. Et temporibus nobis. Sit fuga fugiat.", "business_objective": null, - "compliance_threshold": 96.0, + "compliance_threshold": 97.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": "Et dolor vitae quis.", + "ref_id": "xccdf_org.ssgproject.content_profile_26370adae586c0839e9a55867b01dd9c" } ], "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/5930ab67-fac9-47c5-a25a-e1039c213947/policies?limit=10&offset=0", + "last": "/api/compliance/v2/systems/5930ab67-fac9-47c5-a25a-e1039c213947/policies?limit=10&offset=20", + "next": "/api/compliance/v2/systems/5930ab67-fac9-47c5-a25a-e1039c213947/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": "03545091-fa80-4f81-8061-382a7d9a040d", + "ref_id": "xccdf_org.ssgproject.content_profile_94d774a7d06b5a8df9e1b13379aa09b8", + "title": "Nesciunt qui dolore ea.", + "description": "Est officia provident. Corporis iusto esse. Nihil cupiditate voluptatem.", "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": "14fc5eaf-7463-458f-983a-dde83f458e43", + "ref_id": "xccdf_org.ssgproject.content_profile_f502381756174a77b91ca810648062e3", + "title": "Occaecati et at quisquam.", + "description": "Neque quas consequatur. Consectetur nihil aut. Sunt voluptas perspiciatis.", "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": "28583739-214a-4c2e-954b-fb7b2b814619", + "ref_id": "xccdf_org.ssgproject.content_profile_ad5446da14b68ca58dde31549771d30a", + "title": "Corrupti quo consequuntur aut.", + "description": "Reiciendis eligendi et. Voluptates cum quam. Atque sunt sit.", "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": "2c2c5651-0d7d-4b72-88e0-e91efc726f08", + "ref_id": "xccdf_org.ssgproject.content_profile_634a5c8c20fc0466e36a24f53fd6aeb0", + "title": "Facilis id aut sit.", + "description": "Eum modi pariatur. Sit ut expedita. Est accusamus voluptatem.", "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": "2d8e0c06-be10-4d8f-bf38-4ca61febaf6b", + "ref_id": "xccdf_org.ssgproject.content_profile_456c8e90d024ec2e317481fd940459b6", + "title": "Reiciendis occaecati atque necessitatibus.", + "description": "Esse aperiam non. Dolores accusantium consectetur. Sunt maxime dolore.", "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": "3497542d-45ad-4fcf-b0d8-86d95d8602a7", + "ref_id": "xccdf_org.ssgproject.content_profile_033f3e457efaebcdf228c109c707f468", + "title": "Et illo aliquam occaecati.", + "description": "Rerum fugiat quia. Nesciunt voluptas ducimus. Ut autem voluptates.", "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": "39b579a2-436f-4fe3-a507-633f987e0076", + "ref_id": "xccdf_org.ssgproject.content_profile_9ee1b26f6bc557093f1d1324207074d8", + "title": "Fugiat voluptatem iure dicta.", + "description": "Sed dolorem animi. Accusamus omnis maxime. Sed reprehenderit hic.", "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": "3a0c13d9-7e38-41c0-8470-f0e54bf21031", + "ref_id": "xccdf_org.ssgproject.content_profile_d4f8c20f6a46b1e04350c2ff9f2a3469", + "title": "Eos aut debitis ducimus.", + "description": "Et alias quis. Quia corrupti animi. Qui cum quisquam.", "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": "52a441ca-0034-442e-8efd-2345ff77e93a", + "ref_id": "xccdf_org.ssgproject.content_profile_c3eb22d4fe50316a62728063b315e0eb", + "title": "Tempora facere est asperiores.", + "description": "Maiores quia vel. Et porro tempora. Aperiam quia cum.", "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": "5ec8331e-8276-4cee-a45e-d5ed06635216", + "ref_id": "xccdf_org.ssgproject.content_profile_9b08c3d5b6da26d8b2b0e4ad2592ae92", + "title": "Ut est iure sit.", + "description": "Aut quis et. Vero voluptate et. Blanditiis laborum quos.", "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/76036501-9c5e-429c-b7e7-e5f2cfcde9f7/profiles?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/76036501-9c5e-429c-b7e7-e5f2cfcde9f7/profiles?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/76036501-9c5e-429c-b7e7-e5f2cfcde9f7/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": "15b67f47-43c5-4731-a9ca-cd670e62ffa4", + "ref_id": "xccdf_org.ssgproject.content_profile_42f2618a2371770adbb13acb67d2e0a4", + "title": "At unde illo iusto.", + "description": "Et consectetur cupiditate. Corporis et minus. Laudantium quibusdam quis.", "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": "f5fb1f3b-c6af-4924-b09f-4a27aaf910e2", + "ref_id": "xccdf_org.ssgproject.content_profile_d9c93025cb40bd0c9df2d2b918f07ac7", + "title": "Beatae quia ut consequatur.", + "description": "Provident reprehenderit quis. Laudantium dolorum quis. Labore dolorem consequatur.", "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": "06eb9899-fc1a-45c5-a541-d521d1ba8a10", + "ref_id": "xccdf_org.ssgproject.content_profile_a5dfb9ccf6a7ee90807c98b6f0b65e43", + "title": "Consequatur fugiat saepe dolores.", + "description": "Minima porro deleniti. Neque et repellendus. Non dignissimos eum.", "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": "eadd9698-b789-4d01-8347-7460f0334709", + "ref_id": "xccdf_org.ssgproject.content_profile_7c7a9a447cac4b944e4a41d1b84aad21", + "title": "Dolores earum veritatis delectus.", + "description": "Ipsa minus magnam. Neque sunt esse. Et autem ipsa.", "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": "939a4f52-4d1c-49fc-8fbf-534b191ab8b9", + "ref_id": "xccdf_org.ssgproject.content_profile_2a77f21e06d9494773dcae34d3d1a6c6", + "title": "Et enim ut aspernatur.", + "description": "Est eum nulla. Perspiciatis impedit ut. Et nihil aliquam.", "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": "7ff08f74-70b8-448f-80f2-99e83174d786", + "ref_id": "xccdf_org.ssgproject.content_profile_498004a0b6f627bb021030fcd069b106", + "title": "Eum officiis harum voluptas.", + "description": "Autem aspernatur architecto. Nisi delectus quia. Voluptatem beatae non.", "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": "7a78d3ab-f8ae-443d-9bb3-aa1696f48191", + "ref_id": "xccdf_org.ssgproject.content_profile_00eb09e5e8626964579f8cd851255c40", + "title": "Expedita quo accusamus occaecati.", + "description": "Et modi aspernatur. Adipisci laborum illo. Exercitationem fugiat officia.", "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": "751b2c7b-6a62-4c4d-8a98-80096b19176c", + "ref_id": "xccdf_org.ssgproject.content_profile_ed3c41b8bd63d86981220233a73e8cfa", + "title": "Expedita sequi tempora temporibus.", + "description": "Similique aspernatur quasi. Quia eos est. Voluptas quisquam inventore.", "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": "8626867a-6e60-43ce-bf49-5681dbd564e5", + "ref_id": "xccdf_org.ssgproject.content_profile_ebb0fb7441b06113c553dea7d29600c4", + "title": "Illo consectetur et consequatur.", + "description": "Sed quis sunt. Laboriosam voluptatibus dolores. Vel voluptatibus quia.", "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": "6638f2ef-295d-4bfd-b84f-eb555293ba70", + "ref_id": "xccdf_org.ssgproject.content_profile_f3ecf7390ce49d052440522cf0118d44", + "title": "Illo enim sapiente veritatis.", + "description": "Voluptatem tempora facere. Cumque molestias molestiae. Consequuntur occaecati ut.", "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/271e207a-316a-46cb-a4aa-2cfbd45ee1df/profiles?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/271e207a-316a-46cb-a4aa-2cfbd45ee1df/profiles?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/271e207a-316a-46cb-a4aa-2cfbd45ee1df/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=Sed nostrum nisi aut.)'": { "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": "074171c9-66e2-4e31-85ba-e5685ba354bb", + "ref_id": "xccdf_org.ssgproject.content_profile_07bb6edd4b28ea91decfe41c8e10e7f1", + "title": "Sed nostrum nisi aut.", + "description": "Nulla rem reiciendis. Aspernatur aut iusto. Quam aperiam qui.", "value_overrides": {}, "type": "profile" } ], "meta": { "total": 1, - "filter": "(title=\"Labore ea ut architecto.\")", + "filter": "(title=\"Sed nostrum nisi aut.\")", "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/7e140f50-51b1-49b2-81cc-376beaa929a2/profiles?filter=%28title%3D%22Sed+nostrum+nisi+aut.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/7e140f50-51b1-49b2-81cc-376beaa929a2/profiles?filter=%28title%3D%22Sed+nostrum+nisi+aut.%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": "7b6730c4-b460-4101-a3be-c54e571af571", + "ref_id": "xccdf_org.ssgproject.content_profile_5acfba65c5c0da9810a11d1c5272378f", + "title": "Fuga quaerat quo et.", + "description": "Reiciendis earum voluptatem. Quia voluptas perspiciatis. Impedit molestiae ab.", "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 fa10e872-a05c-4036-b659-1dd2ae903aeb" ] }, "summary": "", @@ -1537,101 +1537,101 @@ "Returns the Rule Tree of a Profile": { "value": [ { - "id": "14a0976c-5542-49b6-9b48-38adf2889c24", + "id": "a65df67a-c554-44e0-bc96-a471148f34a7", "type": "rule_group", "children": [ { - "id": "9719a223-c9b4-4529-ba7d-269ba0c309b8", + "id": "411668be-de68-48ee-968f-63bed3adfdec", "type": "rule" } ] }, { - "id": "7d6bcd4e-fc4d-4a1d-a94d-f205e54b3a15", + "id": "aac56e35-5db9-45d8-b7b8-7d1e48c92296", "type": "rule_group", "children": [ { - "id": "5679dd5c-ed00-43b7-ad42-bf00efc2cc56", + "id": "e1fc00ea-eea2-4e99-83fe-ec8250ff34a0", "type": "rule" } ] }, { - "id": "5ca05ab7-cb88-4fab-b723-2d3b1b4da085", + "id": "883750b2-7f4d-41fb-a1fb-2f8c5829b9fd", "type": "rule_group", "children": [ { - "id": "9372d77c-cb8d-43ae-aca3-7a31dd5cf8cc", + "id": "3727df10-1972-47a6-9a32-87864cf63327", "type": "rule" } ] }, { - "id": "d2dccec8-23d2-49b1-8f48-cd0a548be956", + "id": "6ffddc32-c6a6-4c0b-8ea6-6739f01441f7", "type": "rule_group", "children": [ { - "id": "0d2334c0-37b8-416c-974e-de863e2b5af1", + "id": "33462500-245a-41bb-8a5a-9ab286bd230e", "type": "rule" } ] }, { - "id": "ea7e9134-a0bb-49e9-b6e0-2bd0c485a213", + "id": "5e3d5ade-24f9-4d8c-ba97-3ac048efcd35", "type": "rule_group", "children": [ { - "id": "dd79f620-7a33-4719-8614-a1ceb74eee1c", + "id": "f70df1db-0077-4251-932b-87bd4c6e3fc5", "type": "rule" } ] }, { - "id": "bede0446-fd20-4d0c-b1f7-b8c2559ab3b1", + "id": "f506d84e-35ad-45f6-b43e-1501e6dc4579", "type": "rule_group", "children": [ { - "id": "ca2997e9-9eaf-4aaa-bcd7-de6b3c7ac0c9", + "id": "fb09f4aa-cd93-46ac-be70-b8d83e0d05e3", "type": "rule" } ] }, { - "id": "1155062e-4722-4ba0-80ab-166ed6e174e5", + "id": "46a2b7b9-51ce-407a-9c0d-90c89f23527f", "type": "rule_group", "children": [ { - "id": "12469b9f-942a-4374-acff-7262efa6c5cf", + "id": "25b5d01b-b797-4052-94b2-16c8595024bc", "type": "rule" } ] }, { - "id": "5a42b62c-52b2-4996-8910-ae95a91615ea", + "id": "f608b355-9334-4c63-acc6-adae037d0a17", "type": "rule_group", "children": [ { - "id": "30630013-9f0b-4624-bb48-1d589babe597", + "id": "8c654b56-30e9-412b-a84e-5cd4afd9d776", "type": "rule" } ] }, { - "id": "833b965d-af00-4a5c-8fcd-ee820722fc17", + "id": "e107390f-4630-4ef2-a713-9f21a239f5bb", "type": "rule_group", "children": [ { - "id": "d29aadc0-3930-46a6-92ef-0a9f6faf3035", + "id": "1e04ff76-45a1-4b84-9dde-d48808b7bd61", "type": "rule" } ] }, { - "id": "62ddd992-abfd-42db-bd31-e29a8813caca", + "id": "be41573b-a807-4e20-a1dc-7dc7106264e8", "type": "rule_group", "children": [ { - "id": "b6f649d3-1bdd-4eeb-bde1-5f084a1663d4", + "id": "c362fd5c-33af-4a94-86df-edb6188173a2", "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 4fcdb764-568b-4d65-8c6e-dbf9cfb73cd8" ] }, "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": "161d8e3b-6a60-4cf8-8584-14819c633bf9", + "title": "Sapiente recusandae odio consequatur.", + "description": "Consectetur vel sunt. Minus cum dolorem. Corporis optio assumenda.", + "business_objective": "bus", "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": "Quia facere nisi quos.", + "ref_id": "xccdf_org.ssgproject.content_profile_f180540dbb18acd5ac6be2cde1ecc31f", "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": "3a14f7b6-a92a-47d7-8542-539ca8cec14b", + "title": "Numquam eaque iste aliquid.", + "description": "Sint id quas. Ex repudiandae mollitia. Rerum quo veniam.", + "business_objective": "system", "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": "Fugit quisquam enim quis.", + "ref_id": "xccdf_org.ssgproject.content_profile_bd5b41d4b23f824709c33bb345815dde", "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": "3f1d902b-1d56-43a6-9d66-1b3316ddbdfd", + "title": "Eaque qui suscipit repellat.", + "description": "Accusantium qui voluptatem. Nihil aperiam doloribus. Quos cupiditate illum.", + "business_objective": "port", "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": "Qui optio ducimus dolorum.", + "ref_id": "xccdf_org.ssgproject.content_profile_9aa4d82d2afea01be8aeeb647eb1b73d", "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": "4a49d0c5-2475-486a-87e5-f91f65114b5c", + "title": "Nam inventore doloribus voluptas.", + "description": "Nisi quo aut. Ut similique quo. Quo qui ipsam.", + "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": "Soluta et asperiores in.", + "ref_id": "xccdf_org.ssgproject.content_profile_52e1f8cfb014511fe07eb606a855a87a", "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": "fc66490f-95eb-42ad-8fd2-73e7d5375f13", + "title": "Placeat consectetur autem neque.", + "description": "Ab et quo. Nulla rerum quia. Odio mollitia ut.", + "business_objective": "array", "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": "Eligendi perferendis asperiores et.", + "ref_id": "xccdf_org.ssgproject.content_profile_13964d48ce8be8a5df5075f6e567e7a6", "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.", + "id": "32445707-d500-4aa4-8f50-c204e018ae04", + "title": "Voluptatem error ut eum.", + "description": "Optio veniam harum. Laborum rerum quasi. Delectus ab quia.", "business_objective": "program", "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": "Vel autem culpa suscipit.", + "ref_id": "xccdf_org.ssgproject.content_profile_43a81eac6d0eb54795186197e3d5dcdd", "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": "3f15fec4-a9e1-4229-a79c-e868c8342385", + "title": "Error pariatur quia natus.", + "description": "Similique dicta vel. Amet sapiente consequatur. Accusantium magnam molestiae.", + "business_objective": "feed", "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": "Ut dolores modi alias.", + "ref_id": "xccdf_org.ssgproject.content_profile_1490d12aa247cc001042b5cfa40b5e7d", "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": "6f7a9faf-a2dd-486a-a011-0080ffbbf3d4", + "title": "Qui et natus quod.", + "description": "Autem aspernatur ex. Quod et voluptatem. Nam labore earum.", + "business_objective": "hard drive", "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": "Aut esse commodi voluptatibus.", + "ref_id": "xccdf_org.ssgproject.content_profile_0397d683c068632eba8528d67d3d7786", "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.", - "business_objective": "transmitter", + "id": "b96e9e33-9986-4a9d-bfe8-da532a153bcf", + "title": "Nostrum inventore distinctio nobis.", + "description": "Illum saepe expedita. Illum commodi sed. Sed debitis qui.", + "business_objective": "sensor", "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": "Fuga et unde ut.", + "ref_id": "xccdf_org.ssgproject.content_profile_e5bd24d67b1f8aba2ef354f456ac809e", "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": "c94d30d0-2633-430d-82a4-91379b7392d1", + "title": "Tenetur necessitatibus vitae iusto.", + "description": "Ex cupiditate aut. Autem quia placeat. Minus ut id.", + "business_objective": "alarm", "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": "Vero atque beatae ipsum.", + "ref_id": "xccdf_org.ssgproject.content_profile_ed2244c568572a3a89855d58551128f0", "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": "06c2a97e-13ce-449d-8689-1cdca7d388a4", + "title": "Enim sit iusto voluptas.", + "description": "Repudiandae dolores ut. Quod beatae incidunt. Et corrupti ratione.", + "business_objective": "monitor", "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": "Eos voluptas vel voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_d6926c5e394f25622044733334db0224", "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 f4eb3ce2-51a5-4e59-918c-0279f0254054" ] }, "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": "d8768257-9e83-4661-9e73-9ad0b6933ab1", + "title": "Cum voluptas ut perspiciatis.", + "description": "Consectetur et provident. Consequatur neque sequi. Est quaerat sed.", + "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": "Sapiente similique exercitationem ut.", + "ref_id": "xccdf_org.ssgproject.content_profile_e91f5432201652c61d95404cda229e11", "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 15081725-51d2-4ccc-931d-40c14f8ad6a2" ] }, "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.", - "business_objective": "hard drive", + "id": "0476e881-ffbd-435e-b29f-2ba82318536b", + "title": "Id sequi temporibus quia.", + "description": "Voluptatem dolores et. Sed voluptas quae. Ut exercitationem aut.", + "business_objective": "monitor", "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": "Quaerat eaque aut ratione.", + "ref_id": "xccdf_org.ssgproject.content_profile_130f1ccfcb4c35fc9ae472b680ec07e5", "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": "7b3476cf-d627-4224-9e81-19ffef1d1df1", + "title": "Omnis voluptatem sit odit.", + "description": "Corporis nemo consequatur. Dolorem autem asperiores. Voluptatem temporibus aut.", + "business_objective": "program", "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": "Quis harum incidunt nemo.", + "ref_id": "xccdf_org.ssgproject.content_profile_c48aa9dbcd5ca11c5013d71b324dfca0", "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": "9bedbe0c-0a95-49a1-86af-f29aa934a514", + "title": "Voluptatem atque veritatis qui.", + "description": "Quam dignissimos excepturi. Sit accusantium consequuntur. Ut quisquam atque.", + "business_objective": "system", "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": "Autem perferendis maiores vel.", + "ref_id": "xccdf_org.ssgproject.content_profile_a924eb458aa04e28ac16afb5c02389f6", "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": "bafc555e-ed49-4a5f-83af-2f9feac4a698", + "title": "Quam sint est aut.", + "description": "Magni ea eum. Doloribus repudiandae dolores. In debitis blanditiis.", + "business_objective": "bandwidth", "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": "Quam similique enim quidem.", + "ref_id": "xccdf_org.ssgproject.content_profile_cd2f1f31d27f5690f1fd925b2d938c42", "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": "ed548b98-ead8-44b3-88b2-c619819ee063", + "title": "Est vel accusantium quia.", + "description": "Nostrum aperiam nihil. Tempora ipsum ipsa. Eaque rerum quisquam.", + "business_objective": "feed", "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": "Corrupti dolores pariatur voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_294bd882e29a13f229257770474d0ef9", "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/2516f53e-73a4-446a-980e-1e37ced70bb7/reports?limit=10&offset=0", + "last": "/api/compliance/v2/systems/2516f53e-73a4-446a-980e-1e37ced70bb7/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": "a62c5f41-1f05-4c3b-8a05-6a967877789d", + "title": "Asperiores corrupti exercitationem consequatur.", + "description": "Nesciunt soluta occaecati. Deserunt quidem itaque. Iusto blanditiis dolore.", + "business_objective": "transmitter", "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": "Sed ad qui incidunt.", + "ref_id": "xccdf_org.ssgproject.content_profile_f6c91d29446717002186c3d358ccb039", "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": "854011a9-4960-482c-aee7-158b9e9d5286", + "title": "Et beatae ex vitae.", + "description": "Qui molestias atque. Est error non. Explicabo modi aliquam.", + "business_objective": "circuit", "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": "Vitae eveniet nisi harum.", + "ref_id": "xccdf_org.ssgproject.content_profile_93dd7b0211718962c85248c3a344feef", "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": "1cf4432a-0908-42d1-b5db-04b6012e879e", + "title": "Id totam ut aut.", + "description": "Repellendus quo cupiditate. Labore provident consequatur. Doloremque sed quam.", + "business_objective": "application", "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": "Voluptate enim laudantium consequatur.", + "ref_id": "xccdf_org.ssgproject.content_profile_3db3765f1fe799031746ce4a546c3859", "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": "e959b677-ef0b-428b-98ad-d4abed4b280b", + "title": "Pariatur omnis consequuntur officiis.", + "description": "Molestiae doloremque iste. Sed odio quia. Accusamus dolores sed.", + "business_objective": "microchip", "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": "Est consequuntur a suscipit.", + "ref_id": "xccdf_org.ssgproject.content_profile_13d3f1e4ab3f1d81ceb10002dca1c997", "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": "213fd71e-cb2c-42fa-8f49-8e03196bac56", + "title": "Quo autem voluptas illo.", + "description": "Nihil consequatur deleniti. Consequatur itaque voluptatum. Voluptatem accusantium aperiam.", + "business_objective": "firewall", "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": "Error vel tempora ipsa.", + "ref_id": "xccdf_org.ssgproject.content_profile_32c4a55ba721376f8dd76a0ef0e3848c", "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/73c3c7dd-397d-40e0-9122-75587302f94f/reports?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/systems/73c3c7dd-397d-40e0-9122-75587302f94f/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": "155d2fd7-cd14-4db9-91d2-9db7d0babb5d", + "ref_id": "xccdf_org.ssgproject.content_rule_group_8ddeb2ab7ab772aee00e2624a56f33ff", + "title": "Corporis alias reprehenderit esse.", + "rationale": "Recusandae quae quos. Est iure est. Perferendis delectus molestias.", + "description": "Enim aut consequatur. Fugit dolorum temporibus. Et odit expedita.", "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": "249fd905-204a-4dba-9ef0-a73582775c0c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_c47d22f8d825e8fd78a843525d2d00ae", + "title": "Consequatur laboriosam placeat dignissimos.", + "rationale": "Reiciendis molestiae minima. Sequi maiores quod. Molestiae illum doloribus.", + "description": "Voluptatem voluptatibus accusamus. Enim cumque error. Magnam et quidem.", "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": "2c403830-48a0-42dc-9e0f-61062f3a1443", + "ref_id": "xccdf_org.ssgproject.content_rule_group_8799ead42d54cd993202f6556d600ca6", + "title": "Eum id velit assumenda.", + "rationale": "Minus doloribus voluptas. Ut quisquam ut. Ut omnis atque.", + "description": "Aut perferendis asperiores. Ipsum quo aut. Dolorem non necessitatibus.", "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": "3436f1dd-c53d-4443-9b54-027c4fb713bb", + "ref_id": "xccdf_org.ssgproject.content_rule_group_abab22ccab62c88da7a3ef5345ac05f4", + "title": "Officiis voluptatem iure aut.", + "rationale": "Veniam quos voluptas. Tempore sunt dolorem. Velit ratione laudantium.", + "description": "Totam incidunt odio. Velit debitis corporis. Non quaerat quia.", "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": "38833253-71ab-44c7-807f-d62087bc29c1", + "ref_id": "xccdf_org.ssgproject.content_rule_group_419d34a207c2ff638f26782a2f54de9f", + "title": "Tenetur maxime aut eligendi.", + "rationale": "Molestiae vel debitis. Debitis voluptates ea. Odit fugiat iusto.", + "description": "Atque vitae veritatis. Qui consequatur repellat. Aut omnis voluptatem.", "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": "3d9427d1-da5f-4b3b-ada8-1bd550ae1723", + "ref_id": "xccdf_org.ssgproject.content_rule_group_95416cd44f42fc53adeeaae05f2ce02c", + "title": "Consectetur fugiat dolor reprehenderit.", + "rationale": "Tempore et mollitia. Sit cum eum. Iure aliquid consequatur.", + "description": "Illum voluptas illo. Consequatur est enim. Enim temporibus magnam.", "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": "555175e1-6521-4c79-a76b-527b67bb0d56", + "ref_id": "xccdf_org.ssgproject.content_rule_group_66f5e04019eb31bb7db083fd8d303593", + "title": "Illo non repellat et.", + "rationale": "Aut nesciunt qui. Accusamus assumenda numquam. Et aut dolorem.", + "description": "Quas quia saepe. Nostrum impedit libero. Repellat tempore non.", "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": "5f6d4ed4-be04-45ab-8d15-25d155947e5c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_2ee6d1c3b8578cbd7489592b9977e839", + "title": "Suscipit molestiae dolor impedit.", + "rationale": "Ratione ut est. Saepe nemo consequuntur. Voluptates dolor nesciunt.", + "description": "Fugit rem reprehenderit. Quaerat qui et. Natus ab iusto.", "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": "65eb377a-e178-46de-ae46-f5660fed7b21", + "ref_id": "xccdf_org.ssgproject.content_rule_group_c3669899e2e6c2ad0851408b55802eb2", + "title": "Optio qui repellat itaque.", + "rationale": "Sunt autem vel. Omnis nemo itaque. Qui esse itaque.", + "description": "Molestiae ipsam culpa. Nulla quam exercitationem. Culpa odio et.", "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": "8e78a1f8-2101-420b-b4e8-5d9dba0b14bc", + "ref_id": "xccdf_org.ssgproject.content_rule_group_502161c579a0bb2581d3b78cbe2ec290", + "title": "Est et eos impedit.", + "rationale": "Amet distinctio libero. Veniam aut ad. Quasi ut rem.", + "description": "Excepturi quia facere. Et laboriosam voluptatem. Et error veniam.", "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/04c41f53-f9c1-468d-b774-1563a2a036be/rule_groups?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/04c41f53-f9c1-468d-b774-1563a2a036be/rule_groups?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/04c41f53-f9c1-468d-b774-1563a2a036be/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": "024e068f-3061-4c66-ac50-a8c0a4dae039", + "ref_id": "xccdf_org.ssgproject.content_rule_group_21f56b04622cde8c5a2e906fbc2d80d4", + "title": "Aut praesentium et facilis.", + "rationale": "Illo consequatur repellendus. Veniam esse sit. Aut modi voluptatem.", + "description": "Amet odio ad. Iusto dolor nobis. Et blanditiis hic.", "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": "0a9c14c1-da6c-48b8-89d5-e6b47e0eabe9", + "ref_id": "xccdf_org.ssgproject.content_rule_group_b7b896b24a70695a304f481d7976984f", + "title": "Dolores dicta ut qui.", + "rationale": "Reprehenderit est et. Et quasi molestiae. Eos in soluta.", + "description": "Est non dolor. Occaecati nihil est. Quaerat quia ducimus.", "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": "1368a431-dbab-4946-b07a-7f895626a81a", + "ref_id": "xccdf_org.ssgproject.content_rule_group_a91b082ba5d5b656b64b22f8a60fe644", + "title": "Id sequi repudiandae et.", + "rationale": "Accusantium commodi aut. Totam autem laboriosam. Rerum illum voluptas.", + "description": "At tenetur sunt. Ipsam totam praesentium. Incidunt et cumque.", "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": "237da0d5-efcd-4f33-9fc0-36f145e7a44e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_00329e985aa66dd881b3492f1ef29384", + "title": "Deleniti amet commodi rerum.", + "rationale": "Possimus voluptatem placeat. Qui commodi sequi. Itaque in aspernatur.", + "description": "Explicabo est voluptatem. Consequatur tempore quia. Eum qui totam.", "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": "3c720b93-6550-4f82-916a-15a9418fe16a", + "ref_id": "xccdf_org.ssgproject.content_rule_group_d02c3b5e33f5b09f62740250f8a3242a", + "title": "Inventore quis natus officiis.", + "rationale": "Asperiores assumenda tempora. Mollitia explicabo ad. Dolores itaque fuga.", + "description": "Maxime quo sunt. Quis nostrum rerum. Eos repudiandae aut.", "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": "43594492-9560-48db-82e8-a2c97e5345a7", + "ref_id": "xccdf_org.ssgproject.content_rule_group_ad4e2542f54d5f25226358da5e541dfd", + "title": "Nam quas sed eos.", + "rationale": "Omnis vel reprehenderit. Doloribus officiis ad. Repellendus minima quae.", + "description": "Asperiores quae quod. Debitis id officiis. Nam itaque et.", "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": "4defa100-42f3-494a-b9b4-b607abfdbd3b", + "ref_id": "xccdf_org.ssgproject.content_rule_group_7fd934da84fd7bea081f8a4ba7f35c76", + "title": "Et eum ut nihil.", + "rationale": "Omnis sequi corporis. Sapiente totam vel. Repudiandae a dolore.", + "description": "Accusantium reiciendis totam. Vel et animi. Temporibus autem quis.", "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": "53d46fc6-3de1-4099-a4f6-36892e48c8e8", + "ref_id": "xccdf_org.ssgproject.content_rule_group_9d16266b95eafd61f7fa1d147d7287f5", + "title": "Expedita vel at eius.", + "rationale": "Provident perferendis et. Et iure aperiam. Soluta dicta qui.", + "description": "Quasi nulla vel. Tempora est in. Ut tenetur ut.", "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": "5d68011b-6f0f-43ce-b19b-d0c381a1ba53", + "ref_id": "xccdf_org.ssgproject.content_rule_group_c255fd78dd79d3b56336cee5eae92174", + "title": "Eum itaque quia omnis.", + "rationale": "Cum fugiat quam. Similique vel doloremque. Praesentium dolorem sit.", + "description": "Enim est veniam. Et eos enim. Fugiat expedita id.", "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": "66499e73-6703-4ba6-b748-8f712621af4e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_d8d5cb0672ae8886160907a20319914c", + "title": "Sequi illo voluptas iste.", + "rationale": "Est maxime eveniet. Molestias voluptas provident. Nemo voluptatum et.", + "description": "Sint dolorem voluptates. Placeat impedit incidunt. Molestiae assumenda autem.", "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/386fa45c-20cb-4f03-9359-de8c82449d1d/rule_groups?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/386fa45c-20cb-4f03-9359-de8c82449d1d/rule_groups?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/386fa45c-20cb-4f03-9359-de8c82449d1d/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": "743f9634-58ee-42be-ba24-103f6ee50dca", + "ref_id": "xccdf_org.ssgproject.content_rule_group_b1b4c6d39284b5a2e72c0047268b6e17", + "title": "Magnam ut repellendus vero.", + "rationale": "Illo cupiditate iste. Fugit fugiat et. Et consequatur hic.", + "description": "Itaque minima quibusdam. Aliquid consequatur dicta. Aperiam enim rerum.", "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 cfa83e5c-0369-43cf-967f-7532fb35efad" ] }, "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/b0433fb5-2e12-464a-87e1-39d5ed31f656/test_results/d2fb9d05-c0b3-4778-a685-6d668c663a4a/rule_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/b0433fb5-2e12-464a-87e1-39d5ed31f656/test_results/d2fb9d05-c0b3-4778-a685-6d668c663a4a/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/22a30108-e048-45e0-ad34-d7544f43c386/test_results/54e805ce-8d47-4eec-a36a-7ea8ffc22572/rule_results?limit=10&offset=0&sort_by=result", + "last": "/api/compliance/v2/reports/22a30108-e048-45e0-ad34-d7544f43c386/test_results/54e805ce-8d47-4eec-a36a-7ea8ffc22572/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/d3898a7a-7a2a-415b-95ea-080468165f42/test_results/0c9b1f88-3539-4dd7-911c-110f025d37a9/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/d3898a7a-7a2a-415b-95ea-080468165f42/test_results/0c9b1f88-3539-4dd7-911c-110f025d37a9/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": "064a5510-e237-4e01-9df8-b5683b9251cf", + "ref_id": "xccdf_org.ssgproject.content_rule_bc7beb12c855f035b3ddce48251b2608", + "title": "Nobis maiores qui officia.", + "rationale": "Dolorem nulla itaque. Qui est tenetur. Nemo quia modi.", + "description": "Voluptatem impedit unde. Eligendi enim inventore. Asperiores est et.", + "severity": "low", + "precedence": 3835, "identifier": { - "href": "http://runolfsdottir-olson.test/talia", - "label": "Gelmir" + "href": "http://bahringer.example/felix", + "label": "Barliman Butterbur" }, "references": [ { - "href": "http://smith-smitham.test/adrian.mckenzie", - "label": "Númendil" + "href": "http://kuvalis-zemlak.example/emilie.gorczany", + "label": "Voronwë" }, { - "href": "http://gerlach-hettinger.test/alberto_okeefe", - "label": "Anson Roper" + "href": "http://rohan.example/devin", + "label": "Halfred of Overhill" }, { - "href": "http://langosh.test/lenard.armstrong", - "label": "Eradan" + "href": "http://carroll.test/marco.bashirian", + "label": "Myrtle Burrows" }, { - "href": "http://hills.test/angelo", - "label": "Bard" + "href": "http://morissette.example/norma", + "label": "Pervinca Took" }, { - "href": "http://huel.example/abe_olson", - "label": "Aglahad" + "href": "http://breitenberg.example/jessie", + "label": "Ivorwen" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "cc54da0f-cf74-47e3-8229-13c1797207f3", + "rule_group_id": "22a2f9a4-b06e-453e-a828-2e852c3ebbb5", "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.", + "id": "0984400d-3eb8-4856-bf4f-2bfaaed5c336", + "ref_id": "xccdf_org.ssgproject.content_rule_d24d84b99fefce08cda9eaa4291b259f", + "title": "Impedit aperiam sapiente voluptas.", + "rationale": "Qui debitis reiciendis. Corrupti possimus minima. Omnis ullam voluptas.", + "description": "Et ut eius. Et qui debitis. Non corporis voluptas.", "severity": "low", - "precedence": 4729, + "precedence": 5779, "identifier": { - "href": "http://gibson.example/meagan", - "label": "Lindir" + "href": "http://gutkowski-schamberger.example/kyle.jacobi", + "label": "Fëanor" }, "references": [ { - "href": "http://kohler.example/merideth", - "label": "Azog" + "href": "http://waelchi-stark.example/tierra", + "label": "Aranwë" }, { - "href": "http://nikolaus-baumbach.test/myrtis", - "label": "Morwen Steelsheen" + "href": "http://swift-bashirian.test/tomas", + "label": "Amrothos" }, { - "href": "http://wiegand.example/eusebio", - "label": "Thingol" + "href": "http://zulauf-waelchi.test/carlton", + "label": "Galadriel" }, { - "href": "http://cormier.example/consuela_kulas", - "label": "Eärnur" + "href": "http://bartell-carter.example/fredrick", + "label": "Bungo Baggins" }, { - "href": "http://lueilwitz.example/mayme", - "label": "Argonui" + "href": "http://mccullough-gerlach.test/vena", + "label": "Henderch" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "53c9276a-d64b-4580-b5cd-0c973ce12939", + "rule_group_id": "ed88a037-f4de-414b-a944-7995bf064ac9", "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.", + "id": "0f928811-fb21-4c67-a5e7-fa0429c6d80c", + "ref_id": "xccdf_org.ssgproject.content_rule_bf4cd88099e64f3fdc5d5c6025b3598a", + "title": "Molestiae nostrum tempore voluptatum.", + "rationale": "Consequatur ea officia. Omnis ea aut. Ut et sed.", + "description": "Adipisci sunt aut. Hic vero eligendi. Ut pariatur quos.", "severity": "high", - "precedence": 3062, + "precedence": 1770, "identifier": { - "href": "http://ankunding.test/alexis.wuckert", - "label": "Asphodel Brandybuck" + "href": "http://schmeler.example/dean", + "label": "Zimraphel" }, "references": [ { - "href": "http://wiza.example/adah_ward", - "label": "Gerda Boffin" + "href": "http://price.test/earnest", + "label": "Tar-Ancalimë" }, { - "href": "http://moore.example/tana", - "label": "Landroval" + "href": "http://gulgowski-kilback.test/arturo", + "label": "Caranthir" }, { - "href": "http://lehner-yundt.example/efrain.schuster", - "label": "Vidugavia" + "href": "http://heathcote.test/lesley", + "label": "Lonely Troll" }, { - "href": "http://bashirian.test/isaias.hintz", - "label": "Largo Baggins" + "href": "http://runte.example/perry", + "label": "Forlong" }, { - "href": "http://bechtelar.test/john.dach", - "label": "Tar-Elendil" + "href": "http://okon.test/marline.shanahan", + "label": "Bilbo Baggins" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "97ff9324-a15c-4e54-8260-388c5e184076", + "rule_group_id": "5c01f193-4107-4eb6-8415-00066d8bae88", "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": "18a349af-2198-4e7c-a44d-a544cc8d000c", + "ref_id": "xccdf_org.ssgproject.content_rule_66d16911886aea436d5d28d6f2cec8be", + "title": "Quas blanditiis aut nostrum.", + "rationale": "Incidunt hic consequatur. Quod quas praesentium. Autem doloribus quia.", + "description": "Modi et et. Temporibus molestiae delectus. Optio tempora consectetur.", + "severity": "medium", + "precedence": 8127, "identifier": { - "href": "http://cassin.test/shemeka", - "label": "Brytta" + "href": "http://yost-tremblay.test/rickey", + "label": "Éomer" }, "references": [ { - "href": "http://deckow.example/clair_murray", - "label": "Dori" + "href": "http://sanford-greenfelder.test/gwen_kilback", + "label": "Tom Bombadil" }, { - "href": "http://strosin.test/ronald", - "label": "Andreth" + "href": "http://pouros.example/daron", + "label": "Hardang" }, { - "href": "http://kihn.test/gennie", - "label": "Mogru" + "href": "http://herman-baumbach.example/raymond", + "label": "Rufus Burrows" }, { - "href": "http://herzog.example/perry.gutmann", - "label": "Harry Goatleaf" + "href": "http://stoltenberg.example/nora", + "label": "Bard" }, { - "href": "http://schiller.example/weston", - "label": "Buldar" + "href": "http://torp-fritsch.test/deangelo_hodkiewicz", + "label": "Olwë" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "908ff67a-1593-4a00-a16c-89ff5ad7f7a5", + "rule_group_id": "2efe7930-5a2f-4cdd-9623-ebec68134bf2", "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.", + "id": "1c47bfc7-c7eb-448d-aa3f-32615ae0ea26", + "ref_id": "xccdf_org.ssgproject.content_rule_050f14682d82f832c05ee9f5e4b6f632", + "title": "Aut rerum qui nihil.", + "rationale": "Qui possimus veniam. A consectetur placeat. Est recusandae ex.", + "description": "Voluptates qui qui. Rem distinctio aspernatur. Molestiae possimus tempore.", "severity": "low", - "precedence": 9543, + "precedence": 3687, "identifier": { - "href": "http://jacobson.example/laci", - "label": "Eofor" + "href": "http://abernathy.example/will", + "label": "Guilin" }, "references": [ { - "href": "http://zboncak.example/yuki", - "label": "Arahad" + "href": "http://dicki.example/sonja.koch", + "label": "Mîm" }, { - "href": "http://durgan.example/hassan_reilly", - "label": "Calimehtar" + "href": "http://gerlach.example/mirta.gusikowski", + "label": "Brand" }, { - "href": "http://adams-wilderman.example/shena.waters", - "label": "Hundar" + "href": "http://schowalter.example/romana", + "label": "Ar-Adûnakhôr" }, { - "href": "http://heaney.test/kortney", - "label": "Tar-Meneldur" + "href": "http://davis.test/reginald", + "label": "Borlas" }, { - "href": "http://fay-roberts.test/nestor.bartell", - "label": "Great Goblin" + "href": "http://veum-johnston.example/andrew", + "label": "Dervorin" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "712bcd54-515b-4b8b-8be9-5dd2c54e18c9", + "rule_group_id": "d596ac0b-4e31-4001-b871-f1cd5fd2e84f", "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.", + "id": "21ea1a7f-f43d-408a-a5e3-c97d2510042e", + "ref_id": "xccdf_org.ssgproject.content_rule_633cdecd2fa8e7c14e15e08aecfb7e5c", + "title": "Perspiciatis sequi magnam dolor.", + "rationale": "Sed consectetur quia. Distinctio repudiandae maiores. Minus incidunt fuga.", + "description": "Perferendis totam rerum. Et quaerat sit. Et natus earum.", "severity": "medium", - "precedence": 8529, + "precedence": 4547, "identifier": { - "href": "http://hagenes.example/racquel_oreilly", - "label": "Blanco Bracegirdle" + "href": "http://marvin-grimes.test/harland_medhurst", + "label": "Seredic Brandybuck" }, "references": [ { - "href": "http://rogahn.test/marceline.price", - "label": "Minohtar" + "href": "http://murray.example/tyrone", + "label": "Golfimbul" }, { - "href": "http://stiedemann.example/sonny", - "label": "Aragost" + "href": "http://grimes-osinski.test/burl", + "label": "Éothain" }, { - "href": "http://heaney.test/nicky", - "label": "Ingold" + "href": "http://rempel-towne.test/danelle", + "label": "Hildibrand Took" }, { - "href": "http://sporer-nolan.example/vince.okon", - "label": "Khîm" + "href": "http://ankunding-russel.example/vesta_johns", + "label": "Glirhuin" }, { - "href": "http://schmidt.example/lawerence", - "label": "Gorbadoc Brandybuck" + "href": "http://runte.test/bradford_gleason", + "label": "Dáin" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4b1956b2-fed5-405a-b114-2d4baed4e5a0", + "rule_group_id": "01a08d00-c155-4018-b0bb-9b8c7a64852f", "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.", + "id": "28c4f573-4dc3-4ab5-940d-cad85ae59fd8", + "ref_id": "xccdf_org.ssgproject.content_rule_74c0f9b88c580ae3fca994d0c68e5c7d", + "title": "Exercitationem et omnis porro.", + "rationale": "Consequatur nemo fugiat. Reprehenderit deserunt quia. Vitae praesentium alias.", + "description": "Vero perspiciatis similique. Totam eos ipsum. Vel sunt dolorem.", "severity": "medium", - "precedence": 2211, + "precedence": 7339, "identifier": { - "href": "http://yost.test/trenton", - "label": "Landroval" + "href": "http://osinski.test/mason", + "label": "Bill Butcher" }, "references": [ { - "href": "http://davis-toy.test/angel.schmidt", - "label": "Sapphira Brockhouse" + "href": "http://hyatt-schiller.test/julio.bruen", + "label": "Tar-Minastir" }, { - "href": "http://pfannerstill.test/arlette", - "label": "Elladan" + "href": "http://lueilwitz-okeefe.example/roderick_jacobs", + "label": "Adam Hornblower" }, { - "href": "http://donnelly.test/floria.nader", - "label": "Belen" + "href": "http://okon-kuphal.test/valda.labadie", + "label": "Polo Baggins" }, { - "href": "http://upton.example/yun", - "label": "Lindir" + "href": "http://russel-cremin.example/benjamin", + "label": "Ufthak" }, { - "href": "http://marks-rohan.test/gayle", - "label": "Ceorl" + "href": "http://kirlin.example/erlene.runte", + "label": "Denethor" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "d3466e95-e0bc-4e6a-8ad3-9e0be5b3f65c", + "rule_group_id": "4a11e8c9-2fe5-4974-ab63-295732e586b7", "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": "2ed3588d-4b17-40b7-bcd2-b9b6d4922125", + "ref_id": "xccdf_org.ssgproject.content_rule_124dde3d5122fe21a810d672139be599", + "title": "Nulla asperiores qui quo.", + "rationale": "Et beatae error. Omnis vel pariatur. Aut aperiam voluptatem.", + "description": "Et reiciendis tempora. Illum non quae. Consectetur libero quo.", + "severity": "low", + "precedence": 7351, "identifier": { - "href": "http://bernhard.test/otha.zboncak", - "label": "Farmer Cotton" + "href": "http://walker.example/nigel.brown", + "label": "Lily Brown" }, "references": [ { - "href": "http://moen.test/jed_ward", - "label": "Amlach" + "href": "http://von-batz.example/ka.rolfson", + "label": "Togo Goodbody" }, { - "href": "http://gorczany-jacobi.example/shanna.langworth", - "label": "Bell Goodchild" + "href": "http://beatty.example/sidney", + "label": "Manwendil" }, { - "href": "http://carroll.test/sybil.russel", - "label": "Jago Boffin" + "href": "http://towne.test/rubin_von", + "label": "Celepharn" }, { - "href": "http://nolan.example/kenny_conroy", - "label": "Adaldrida Bolger" + "href": "http://wolff.test/dara_abernathy", + "label": "Handir" }, { - "href": "http://bogisich.test/robert.sauer", - "label": "Tar-Míriel" + "href": "http://pagac-smitham.example/delma", + "label": "Bell Goodchild" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "067a9eec-e7ae-4557-802c-9bc196c80ddc", + "rule_group_id": "1c76ba59-6622-491e-904b-599e404c8529", "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": "36f1cf4a-ed44-4c77-ae51-80458f8f6f46", + "ref_id": "xccdf_org.ssgproject.content_rule_dcf5e5060989d96d4d759331431525b7", + "title": "Sed voluptatibus veritatis dolores.", + "rationale": "Natus et consequatur. Facilis ducimus ea. Molestiae similique est.", + "description": "Cum pariatur nostrum. Omnis tempora totam. Vero saepe ut.", + "severity": "medium", + "precedence": 9072, "identifier": { - "href": "http://hickle-robel.example/virgilio_nitzsche", - "label": "Erkenbrand" + "href": "http://wunsch-mclaughlin.example/heriberto", + "label": "Folcred" }, "references": [ { - "href": "http://hackett.test/essie", - "label": "Thorondor" + "href": "http://spencer-yost.test/adrienne", + "label": "Gothmog" }, { - "href": "http://ondricka.test/roosevelt_bode", - "label": "Imrazôr" + "href": "http://paucek-adams.example/jeanine.runte", + "label": "Gorhendad Oldbuck" }, { - "href": "http://dicki-cole.test/tammi.witting", - "label": "Eärendil" + "href": "http://marvin.test/alida", + "label": "Vorondil" }, { - "href": "http://schneider.test/chas_tillman", - "label": "Nar" + "href": "http://ondricka.test/alleen", + "label": "Daisy Baggins" }, { - "href": "http://nolan.example/luther", - "label": "Primrose Gardner" + "href": "http://abshire-klein.test/kathe", + "label": "Robin Smallburrow" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "430ae82a-703f-4c4a-8a2b-c739139fc366", + "rule_group_id": "5154cf5b-82ee-408f-9a43-409f99c69c69", "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.", + "id": "402b291f-36af-4017-bf9a-b95ab88d8e36", + "ref_id": "xccdf_org.ssgproject.content_rule_93655f3125629669425138f42e28f377", + "title": "Vel officia dolor itaque.", + "rationale": "Ut atque modi. Illum rerum officia. Aut voluptates saepe.", + "description": "Itaque molestias aut. Nam sed facere. Sit aut incidunt.", "severity": "medium", - "precedence": 8834, + "precedence": 7422, "identifier": { - "href": "http://keeling.example/benito", - "label": "Eärendur" + "href": "http://bruen-hamill.example/tracey_daugherty", + "label": "Radhruin" }, "references": [ { - "href": "http://marvin.example/lionel", - "label": "Quennar" + "href": "http://beahan-bernhard.example/vincenzo", + "label": "Hirwen" }, { - "href": "http://batz.example/yong.thompson", - "label": "Huor" + "href": "http://zboncak.example/jeni_becker", + "label": "Imrahil" }, { - "href": "http://bednar.example/josiah", - "label": "Nimloth of Doriath" + "href": "http://bruen.test/burl_murazik", + "label": "Marroc Brandybuck" }, { - "href": "http://ullrich.test/giovanni_farrell", - "label": "Dina Diggle" + "href": "http://bergstrom-kilback.test/tarah", + "label": "Agathor" }, { - "href": "http://walter-skiles.test/angelic", - "label": "Legolas" + "href": "http://sanford.example/walton_hoppe", + "label": "Henderch" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "5b53f7b8-2b8d-48ec-9725-90637a9461eb", + "rule_group_id": "29c02bfa-5c5d-4784-add1-daa4b3b42388", "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/78c80535-3ba9-4ef9-aa34-24b29b6fdf12/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/78c80535-3ba9-4ef9-aa34-24b29b6fdf12/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/78c80535-3ba9-4ef9-aa34-24b29b6fdf12/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.", + "id": "34e11eed-f6a9-4563-8e9f-643ce7bbadf3", + "ref_id": "xccdf_org.ssgproject.content_rule_fbcdb3ac32f3358ea67453a80496d0b9", + "title": "Et quo omnis id.", + "rationale": "Aut error eum. Dolores modi quis. Culpa est quaerat.", + "description": "Fugiat ratione rerum. Dolor a quia. Voluptas ipsum est.", "severity": "medium", - "precedence": 53, + "precedence": 45, "identifier": { - "href": "http://bogisich.example/francine.mraz", - "label": "Grim" + "href": "http://sporer.test/aldo", + "label": "Smaug" }, "references": [ { - "href": "http://lockman-hermiston.example/long_konopelski", - "label": "Ulfang" + "href": "http://haag.example/roger.hansen", + "label": "Nienor" }, { - "href": "http://torphy.test/wendi_renner", - "label": "Lily Brown" + "href": "http://weimann-yost.example/randa", + "label": "Gwaihir" }, { - "href": "http://wehner.example/lilliam.greenfelder", - "label": "Tom Bombadil" + "href": "http://goldner.example/helga_kemmer", + "label": "Ancalagon" }, { - "href": "http://herzog-beatty.test/bob_breitenberg", - "label": "Turambar" + "href": "http://walker-bauch.test/denny", + "label": "Galdor" }, { - "href": "http://hegmann.test/chery", - "label": "Bereg" + "href": "http://rowe.test/margarite", + "label": "Morwen" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "6b28bcbe-0307-4995-8e19-43773f91ab71", + "rule_group_id": "fe35d808-6dc7-46f9-81d7-12f1ddf23705", "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": "fd04fc06-4d2b-43f2-988e-2002b551c6aa", + "ref_id": "xccdf_org.ssgproject.content_rule_da2db99417bcec96832e223140983492", + "title": "Ea eos at aut.", + "rationale": "Reiciendis est necessitatibus. Porro fugiat voluptatum. Dignissimos illum animi.", + "description": "Quidem nisi quis. Voluptatem numquam non. Quidem quam beatae.", + "severity": "medium", + "precedence": 852, "identifier": { - "href": "http://powlowski.example/blanche_rosenbaum", - "label": "Aldamir" + "href": "http://gerhold.example/lashon_heathcote", + "label": "Radhruin" }, "references": [ { - "href": "http://schamberger.example/adrien", - "label": "Gléowine" + "href": "http://towne-kutch.example/louie", + "label": "Adanel" }, { - "href": "http://romaguera.test/racheal", - "label": "Isembard Took" + "href": "http://kerluke-stokes.test/becky", + "label": "Bruno Bracegirdle" }, { - "href": "http://stroman.example/tarah", - "label": "Ulfang" + "href": "http://ledner.example/margareta", + "label": "Hildigard Took" }, { - "href": "http://bednar.test/jamaal.greenfelder", - "label": "Findis" + "href": "http://yundt.example/halina", + "label": "Dírhaval" }, { - "href": "http://konopelski-mann.test/freddie", - "label": "Tar-Vanimeldë" + "href": "http://ruecker.test/verdie", + "label": "Galdor of the Havens" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "f6fd2540-694a-43af-a9f4-f4c57c16ccc1", + "rule_group_id": "cabf1ce0-785e-49b9-90ce-5a4efaa652ac", "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": "abc257dd-f47b-4ebc-8ec9-59f07ec1abe0", + "ref_id": "xccdf_org.ssgproject.content_rule_13541c619213ed7cc2ad746e52aa3727", + "title": "Ipsa voluptatibus ut unde.", + "rationale": "Consequatur dicta dolore. Culpa dolore reprehenderit. Et adipisci soluta.", + "description": "Aperiam sint qui. Sunt aut consequuntur. Est autem animi.", + "severity": "low", + "precedence": 1346, "identifier": { - "href": "http://kassulke-becker.test/cody.mccullough", - "label": "Wulf" + "href": "http://collins.example/lovie", + "label": "Bingo Baggins" }, "references": [ { - "href": "http://boyer.example/emerald.waelchi", - "label": "Herugar Bolger" + "href": "http://reilly-murazik.test/lannie_hessel", + "label": "Ostoher" }, { - "href": "http://altenwerth.example/kari_kris", - "label": "Fortinbras Took" + "href": "http://wyman-bosco.example/gerardo", + "label": "Mahtan" }, { - "href": "http://casper.example/ward", - "label": "Rufus Burrows" + "href": "http://ferry-breitenberg.example/judith", + "label": "Ciryatur" }, { - "href": "http://auer.example/tia", - "label": "Malantur" + "href": "http://lakin.test/jorge.welch", + "label": "Aratan" }, { - "href": "http://block-romaguera.example/vince", - "label": "Andróg" + "href": "http://hodkiewicz.example/belinda_harber", + "label": "Tom Bombadil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "3dd3383d-6517-4996-9442-f517f6035588", + "rule_group_id": "56aa9814-408d-463e-a826-a758b0c4bed8", "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": "cfd653f8-469f-466c-b5c2-5422eb999d02", + "ref_id": "xccdf_org.ssgproject.content_rule_ec5b2789954f14f87fd61f9ca4c8da19", + "title": "Magni et molestiae aperiam.", + "rationale": "Eveniet consectetur tempora. Quos maxime at. Et nisi aut.", + "description": "Corrupti sit deserunt. Velit accusantium ut. Iure nostrum voluptatem.", + "severity": "high", + "precedence": 2208, "identifier": { - "href": "http://spencer.example/gino.herzog", - "label": "Aulendil" + "href": "http://aufderhar.example/idella_lockman", + "label": "Mallor" }, "references": [ { - "href": "http://rice.test/aldo", - "label": "Elros" + "href": "http://durgan-pagac.example/norberto", + "label": "Harry Goatleaf" }, { - "href": "http://mertz.example/rene.hermann", - "label": "Nolondil" + "href": "http://schumm.test/eric_schamberger", + "label": "Eärendur" }, { - "href": "http://bergstrom.example/sung_lang", - "label": "Nár" + "href": "http://parisian.test/logan", + "label": "Orchaldor" }, { - "href": "http://considine-homenick.example/shad", - "label": "William" + "href": "http://herman.example/wiley_boehm", + "label": "Tar-Telemmaitë" }, { - "href": "http://goyette.test/donna.stoltenberg", - "label": "Faniel" + "href": "http://hilll-franecki.example/sherley_jakubowski", + "label": "Ibun" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4804880e-995d-42f0-97a9-fbb1d57d31ee", + "rule_group_id": "a25420cb-998d-4ef1-b82f-5063a15b25a2", "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.", - "severity": "medium", - "precedence": 828, + "id": "fd38d3b9-39ff-4841-b6fa-b99d8bc1342b", + "ref_id": "xccdf_org.ssgproject.content_rule_8553e611c13da4a43e11faa7eb9c3dc1", + "title": "Accusamus animi nemo dolor.", + "rationale": "Dicta voluptatem odio. Debitis incidunt et. Accusantium et blanditiis.", + "description": "Laborum sit nihil. Sed tempora voluptas. Harum quaerat asperiores.", + "severity": "low", + "precedence": 2393, "identifier": { - "href": "http://douglas.test/jamal.ward", - "label": "Ferdinand Took" + "href": "http://morar.example/michiko.langworth", + "label": "Tuor" }, "references": [ { - "href": "http://mitchell-hills.example/letisha", - "label": "Mîm" + "href": "http://konopelski.test/glenn", + "label": "Meneldil" }, { - "href": "http://wisozk-lowe.test/trudy.champlin", - "label": "Telchar" + "href": "http://connelly.test/trenton.grant", + "label": "Ufthak" }, { - "href": "http://nolan-kshlerin.example/keneth", - "label": "Angelimir" + "href": "http://kemmer.test/alejandra.thiel", + "label": "Amdír" }, { - "href": "http://lesch.example/robt_sporer", - "label": "Hallatan" + "href": "http://schroeder.test/carlo_flatley", + "label": "Forhend" }, { - "href": "http://dare-bosco.test/chantelle_bahringer", - "label": "Amlach" + "href": "http://beer.example/angele_nitzsche", + "label": "Glirhuin" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "3109547d-ae24-41e7-8fd9-142f9ccb070e", + "rule_group_id": "f23f1045-544d-457d-9b31-800510658935", "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": "d31f4d1f-10dd-4919-b7c9-74cb621d0b60", + "ref_id": "xccdf_org.ssgproject.content_rule_03b1be49bfe69132c163f1d74c7de18f", + "title": "In dignissimos dolores quod.", + "rationale": "Fuga corporis aut. Quo neque voluptates. Necessitatibus vel enim.", + "description": "Sint saepe aut. Reiciendis necessitatibus maiores. Nemo dolorem placeat.", + "severity": "low", + "precedence": 2418, "identifier": { - "href": "http://batz.example/oliver.kunde", - "label": "Tata" + "href": "http://thiel-friesen.test/orval", + "label": "Fundin" }, "references": [ { - "href": "http://sipes.example/alexis", - "label": "Carc" + "href": "http://jacobi.test/letisha.sauer", + "label": "Hildigrim Took" }, { - "href": "http://heller.example/aurelio.koelpin", - "label": "Anson Roper" + "href": "http://boyle.test/iola.murray", + "label": "Avranc" }, { - "href": "http://lehner.example/adan_marquardt", - "label": "Nár" + "href": "http://doyle.test/tien", + "label": "Hending" }, { - "href": "http://jacobs.example/isiah.cole", - "label": "Findis" + "href": "http://harvey.test/bill_price", + "label": "Finduilas" }, { - "href": "http://green-powlowski.example/amberly_spinka", - "label": "Silmariën" + "href": "http://littel.example/garfield", + "label": "Walda" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "dcef6d6a-fa2c-43b6-b472-7e734c3a02d4", + "rule_group_id": "03ea2b2e-40cb-462a-a568-29ef49aca8b2", "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": "06a3c6e7-40cc-437f-94c5-4352cc1f7d56", + "ref_id": "xccdf_org.ssgproject.content_rule_430dc7a37124d57f21d4e7e7ac2cb106", + "title": "Ratione vitae possimus voluptatum.", + "rationale": "Nobis ut ratione. Aut neque quae. Incidunt vero et.", + "description": "Odit rem accusamus. Amet magni et. Debitis exercitationem et.", "severity": "low", - "precedence": 1265, + "precedence": 2456, "identifier": { - "href": "http://von.example/jerrell", - "label": "Narmacil" + "href": "http://friesen-grimes.test/brendon", + "label": "Sagroth" }, "references": [ { - "href": "http://ortiz.example/michal.altenwerth", - "label": "Gandalf" + "href": "http://monahan.test/stacy_sipes", + "label": "Belladonna Took" }, { - "href": "http://carter.test/krissy", - "label": "Rosa Baggins" + "href": "http://ratke-gerhold.test/santos", + "label": "Vorondil" }, { - "href": "http://grant.test/burl_erdman", - "label": "Mrs. Bunce" + "href": "http://reynolds-rosenbaum.example/pasquale.lockman", + "label": "Nolondil" }, { - "href": "http://okon.test/arlinda.koepp", - "label": "Rufus Burrows" + "href": "http://daniel.test/tu", + "label": "Rómendacil" }, { - "href": "http://windler.test/neil_welch", - "label": "Cemendur" + "href": "http://hammes.example/charlie", + "label": "Rorimac Brandybuck" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "b71ec3d7-7740-4766-b31a-138bd4825b4a", + "rule_group_id": "644ea84d-323f-43ea-8e23-171ea1b591a9", "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.", - "severity": "high", - "precedence": 1640, + "id": "ed213d55-158b-4207-8328-e2e03babc69a", + "ref_id": "xccdf_org.ssgproject.content_rule_ffeeeb27aa6f77da5c1250f564a25673", + "title": "Saepe eum est quia.", + "rationale": "Sapiente aperiam non. Ducimus a ipsam. Dolores et tempore.", + "description": "Harum tempora voluptate. In beatae labore. Quae magni asperiores.", + "severity": "medium", + "precedence": 2968, "identifier": { - "href": "http://robel.test/lily_bernhard", - "label": "Ibun" + "href": "http://frami-aufderhar.example/floretta_pouros", + "label": "Isumbras" }, "references": [ { - "href": "http://fadel-goyette.example/collen", - "label": "Lofar" + "href": "http://rippin.test/maura_lakin", + "label": "Alfrida of the Yale" }, { - "href": "http://russel.test/tyson_parker", - "label": "Gamil Zirak" + "href": "http://tromp.example/dusty.ondricka", + "label": "Angelica Baggins" }, { - "href": "http://boyle-crist.example/ardath", - "label": "Meneldor" + "href": "http://price-schuppe.example/monroe.schumm", + "label": "Almiel" }, { - "href": "http://simonis-simonis.example/danae", - "label": "Hathol" + "href": "http://adams.test/junie_barton", + "label": "Andróg" }, { - "href": "http://heller-bauch.example/lina", - "label": "Glaurung" + "href": "http://lemke.example/jessia", + "label": "Bill Butcher" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "7028d64c-ac07-4833-af5b-8fdb75aa9ace", + "rule_group_id": "8f3abe86-4910-4eca-8735-f2f034ab5500", "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.", + "id": "a118c3b3-11a2-4db0-a16d-bc240b192efb", + "ref_id": "xccdf_org.ssgproject.content_rule_bf1820cf07c4daef101bf82b0b6b88a4", + "title": "Ea harum veritatis voluptates.", + "rationale": "Nesciunt veniam ab. Quaerat porro pariatur. Placeat ut ipsa.", + "description": "Ut labore veritatis. Dolores dolores nesciunt. Esse cupiditate voluptatem.", "severity": "medium", - "precedence": 1823, + "precedence": 3033, "identifier": { - "href": "http://corkery-kreiger.test/carmelo", - "label": "Amaranth Brandybuck" + "href": "http://gusikowski.test/madison.gerhold", + "label": "Herefara" }, "references": [ { - "href": "http://wilderman.test/quinton_kutch", - "label": "Daisy Gardner" + "href": "http://wisozk-klocko.example/chance_reinger", + "label": "Rían" }, { - "href": "http://doyle.test/elijah", - "label": "Gálmód" + "href": "http://schumm.test/dominick", + "label": "Hilda Bracegirdle" }, { - "href": "http://walker-hane.test/talitha", - "label": "Aerin" + "href": "http://altenwerth-hayes.test/malika", + "label": "Iorlas" }, { - "href": "http://lang.example/kareen.schaden", - "label": "Valandil" + "href": "http://pfannerstill-emmerich.example/oscar", + "label": "Poldor" }, { - "href": "http://morar-bradtke.test/merrill", - "label": "Tar-Aldarion" + "href": "http://connelly-fritsch.example/emory", + "label": "Daisy Gardner" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "16f0100c-5c14-4036-8ad4-8e902e33c026", + "rule_group_id": "143beb60-827e-4474-bae0-74d830f3e589", "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.", - "severity": "low", - "precedence": 2519, + "id": "5a05af39-12eb-4490-8999-82750d8750f6", + "ref_id": "xccdf_org.ssgproject.content_rule_58e0db1e194605d0142edc84dd8294f0", + "title": "Id et facilis libero.", + "rationale": "Fugit aperiam ut. Amet eum deleniti. Natus aliquam ea.", + "description": "Molestias incidunt laudantium. Reiciendis eos dolor. Iusto libero aut.", + "severity": "medium", + "precedence": 4234, "identifier": { - "href": "http://nader.example/buster.shanahan", - "label": "Bruno Bracegirdle" + "href": "http://sanford.test/chloe.morar", + "label": "Rosa Baggins" }, "references": [ { - "href": "http://sporer-schoen.test/shelton", - "label": "Lúthien" + "href": "http://kuhn.test/justina.heidenreich", + "label": "Mairen" }, { - "href": "http://mcclure.test/elma", - "label": "Gárulf" + "href": "http://hilll-hansen.example/kalyn", + "label": "Nora Bolger" }, { - "href": "http://crooks.test/jody.bashirian", - "label": "Daisy Baggins" + "href": "http://wunsch.test/allyson_boehm", + "label": "Galathil" }, { - "href": "http://predovic.example/junior_schinner", - "label": "Algund" + "href": "http://sanford-jakubowski.test/rolando.cummerata", + "label": "Muzgash" }, { - "href": "http://russel.test/bertha", - "label": "Mahtan" + "href": "http://vonrueden.example/lesley", + "label": "Hilda Bracegirdle" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "f1d5acc4-35ed-474a-8fd8-365bd47fb077", + "rule_group_id": "071a7da1-14ad-4468-bcf6-88df86317be9", "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/b1f98c36-e502-4eb6-9f66-de3552ba7e72/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/b1f98c36-e502-4eb6-9f66-de3552ba7e72/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/b1f98c36-e502-4eb6-9f66-de3552ba7e72/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.", - "severity": "high", - "precedence": 4865, + "id": "e080d30d-5df1-4181-bad9-4442945ec87b", + "ref_id": "xccdf_org.ssgproject.content_rule_156d4eafd34b5ca017db25c949a51641", + "title": "Quas aut consequatur dolorum.", + "rationale": "Nesciunt rerum sit. Quo a beatae. Aut modi dolores.", + "description": "Expedita maxime aut. Iste repellendus sint. Nihil error aliquid.", + "severity": "low", + "precedence": 1842, "identifier": { - "href": "http://erdman.example/juan_marvin", - "label": "Nellas" + "href": "http://huel.example/amado", + "label": "Gwindor" }, "references": [ { - "href": "http://murazik.test/blake_schinner", - "label": "Gwaihir" + "href": "http://bosco-wisoky.test/terina", + "label": "Tosto Boffin" }, { - "href": "http://murphy.test/jordan", - "label": "Haleth" + "href": "http://jacobs.example/hang", + "label": "Orgulas Brandybuck" }, { - "href": "http://veum.example/gary", - "label": "Turambar" + "href": "http://terry.test/sheryll.maggio", + "label": "Otto Boffin" }, { - "href": "http://ankunding-blanda.test/weston.crooks", - "label": "Sangahyando" + "href": "http://kohler.example/ester", + "label": "Telemnar" }, { - "href": "http://keeling.example/fermina", - "label": "Sangahyando" + "href": "http://abernathy.example/torrie", + "label": "Tal-Elmar" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "766b3e31-4706-4e3f-9719-d4377c55fc23", + "rule_group_id": "6c0dcdc1-61e1-4b99-9f12-d3ddf863aabb", "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 9651392a-4c4f-4be2-97e3-258be97ffc04" ] }, "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": "06de1a5c-8c0a-4a71-bd16-0fc3e7eb0463", + "ref_id": "xccdf_org.ssgproject.content_rule_fa0c188571339a4265ee8324c7fa6d19", + "title": "Animi aut voluptatum excepturi.", + "rationale": "Dolor suscipit quos. Nostrum tempore omnis. Hic excepturi perspiciatis.", + "description": "Possimus enim optio. Dolor neque sed. Vero at reprehenderit.", + "severity": "medium", + "precedence": 231, "identifier": { - "href": "http://beier.example/monte_sauer", - "label": "Hildigrim Took" + "href": "http://considine-bradtke.test/carmen_fahey", + "label": "Míriel" }, "references": [ { - "href": "http://kohler-beatty.test/logan.corwin", - "label": "Hob Hayward" + "href": "http://spencer.test/robbyn", + "label": "Malvegil" }, { - "href": "http://gerlach.example/otis", - "label": "Imlach" + "href": "http://keebler-sporer.example/sulema", + "label": "Amaranth Brandybuck" }, { - "href": "http://turner.example/napoleon", - "label": "Háma" + "href": "http://harvey.test/alberto_hackett", + "label": "Gildor" }, { - "href": "http://mcglynn.example/fran", - "label": "Belen" + "href": "http://bednar-cormier.test/gale.bruen", + "label": "Thráin" }, { - "href": "http://hahn-wyman.test/jeannette", - "label": "Mauhúr" + "href": "http://howe.test/onita_gorczany", + "label": "Beldir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "b858a0eb-3ef1-4434-93fb-01e3d12dd1a6", + "rule_group_id": "b2f7b514-a842-4080-9858-d2679f482fe2", "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.", + "id": "090dee7e-aacf-4f40-be1f-83e0b6f88ab6", + "ref_id": "xccdf_org.ssgproject.content_rule_3b735ff783b9ec2fac3ae9cd76adaeef", + "title": "Saepe rerum magni incidunt.", + "rationale": "Recusandae id dolores. Cumque molestias possimus. Beatae aliquid omnis.", + "description": "Enim eos iusto. Voluptatem in earum. Eum quo aspernatur.", "severity": "high", - "precedence": 9075, + "precedence": 1013, "identifier": { - "href": "http://orn.test/mary_schamberger", - "label": "Nazgûl" + "href": "http://beer.test/amos_strosin", + "label": "Valandur" }, "references": [ { - "href": "http://halvorson-thompson.example/neomi_toy", - "label": "Ungoliant" + "href": "http://steuber.test/nadene", + "label": "Khîm" }, { - "href": "http://hauck-stoltenberg.example/bryon.botsford", - "label": "Goldilocks Gardner" + "href": "http://schroeder-torp.test/marylee.stroman", + "label": "Meneldor" }, { - "href": "http://willms.example/roman", - "label": "Imin" + "href": "http://berge.example/zetta_luettgen", + "label": "Landroval" }, { - "href": "http://orn-kihn.test/christena", - "label": "Huan" + "href": "http://shields.test/illa.block", + "label": "Írildë" }, { - "href": "http://greenfelder.example/arturo_reichel", - "label": "Ferdibrand Took" + "href": "http://pouros.test/leif", + "label": "Gilwen" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4514f301-4f97-4f80-8bfa-01b3fe4f037f", + "rule_group_id": "dc0e43a6-8d20-4613-aba3-ce8deb26fb8f", "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.", - "severity": "high", - "precedence": 8167, + "id": "0c0b6efc-d1cc-4182-85b7-9d9e6ad9eaa9", + "ref_id": "xccdf_org.ssgproject.content_rule_9f8870bb5ca2694221b8f6511a995396", + "title": "Veritatis pariatur non dolor.", + "rationale": "Quas minima distinctio. Autem enim voluptates. Ratione sunt animi.", + "description": "Tenetur enim qui. Quas repudiandae pariatur. Omnis ut at.", + "severity": "medium", + "precedence": 2271, "identifier": { - "href": "http://reichel-jacobson.test/romana", - "label": "Arassuil" + "href": "http://schmidt.test/berry", + "label": "Silmariën" }, "references": [ { - "href": "http://stehr.test/patience", - "label": "Fingolfin" + "href": "http://howell-reilly.example/miquel.cruickshank", + "label": "Gléowine" }, { - "href": "http://bernhard.example/long", - "label": "Forthwini" + "href": "http://durgan.example/eusebio_ullrich", + "label": "Snaga" }, { - "href": "http://gulgowski-beer.test/gerald.turner", - "label": "Olo Proudfoot" + "href": "http://schowalter.example/arnulfo", + "label": "Elurín" }, { - "href": "http://little.example/earlie.spencer", - "label": "Eöl" + "href": "http://hettinger-stark.example/cristobal", + "label": "Zimraphel" }, { - "href": "http://ruecker.test/angila_funk", - "label": "Ar-Zimrathôn" + "href": "http://considine-boyle.test/jane", + "label": "Calimmacil" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "2f3f1e4c-be46-487b-9858-cf553da60509", + "rule_group_id": "4eb5fcbe-4a4e-4e20-ba96-423a5e93ec04", "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": "0eeaf95a-b39a-442c-a6c7-340e56c6f4cc", + "ref_id": "xccdf_org.ssgproject.content_rule_60865d5a3c535cdfaf0e42163476e13a", + "title": "Eveniet nobis facere libero.", + "rationale": "Quod consequatur sint. Dolorem et ut. Unde asperiores quasi.", + "description": "Cupiditate qui expedita. Harum reprehenderit repudiandae. Doloremque excepturi recusandae.", + "severity": "low", + "precedence": 3571, "identifier": { - "href": "http://kuhn-oconnell.example/elton_bauch", - "label": "Ufthak" + "href": "http://carroll-friesen.example/zachary", + "label": "Soronto" }, "references": [ { - "href": "http://klein.example/leanora_schinner", - "label": "Frár" + "href": "http://spinka.test/anisa", + "label": "Borlach" }, { - "href": "http://cremin.example/terrell", - "label": "Aldor" + "href": "http://auer.test/chloe_tillman", + "label": "Malva Headstrong" }, { - "href": "http://kub-fay.example/leisha.beier", - "label": "Rudigar Bolger" + "href": "http://pollich.example/chiquita", + "label": "Odovacar Bolger" }, { - "href": "http://flatley-ratke.test/synthia_goyette", - "label": "Harding of the Hill" + "href": "http://jacobson-prosacco.test/leonida.metz", + "label": "Adalbert Bolger" }, { - "href": "http://bednar.example/katherine.nikolaus", - "label": "Daddy Twofoot" + "href": "http://hagenes.example/suzan.mann", + "label": "Asphodel Brandybuck" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "13c0f551-f89e-4316-97c8-089722f641e9", + "rule_group_id": "34521709-f8b2-4df9-b9a7-397ddbdf0c21", "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.", - "severity": "high", - "precedence": 5392, + "id": "0f163a81-2840-4d81-94bb-1e9b42625b24", + "ref_id": "xccdf_org.ssgproject.content_rule_3eccb2ded6110c922ccb259d5124427b", + "title": "Doloremque labore dignissimos harum.", + "rationale": "Suscipit nesciunt in. Et accusantium maiores. Dicta alias odit.", + "description": "Sed magni voluptatibus. Fuga beatae rem. Voluptas maxime qui.", + "severity": "medium", + "precedence": 4165, "identifier": { - "href": "http://johnston-wilkinson.test/willene.steuber", - "label": "Zimraphel" + "href": "http://windler-damore.test/shelly", + "label": "Ilberic Brandybuck" }, "references": [ { - "href": "http://davis-rogahn.example/gisela", - "label": "Angbor" + "href": "http://champlin.example/rudolph", + "label": "Herumor" }, { - "href": "http://welch-paucek.example/wes.roberts", - "label": "Calimehtar" + "href": "http://runolfsson.test/rob.armstrong", + "label": "Drogo Baggins" }, { - "href": "http://heathcote-fadel.test/gaynell", - "label": "Dori" + "href": "http://west.example/roselle.kautzer", + "label": "Meneldor" }, { - "href": "http://beier.test/tarah", - "label": "Pelendur" + "href": "http://dickinson.example/marvel.rodriguez", + "label": "Finarfin" }, { - "href": "http://runte-dach.test/elise", - "label": "Ragnir" + "href": "http://streich.example/michael_gibson", + "label": "Moro Burrows" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "f670dc22-f936-4782-9a21-c1c85f592de6", + "rule_group_id": "179d6a10-05cb-4639-853a-16880e24f5dd", "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.", - "severity": "medium", - "precedence": 280, + "id": "23859686-5d12-4789-9b1e-11fd3ca33443", + "ref_id": "xccdf_org.ssgproject.content_rule_625269a363ebd2f94500a9f3f7cd1a9f", + "title": "Nostrum repellendus sunt omnis.", + "rationale": "Dolorum temporibus rerum. Earum non dicta. Explicabo voluptas eum.", + "description": "At unde deserunt. Voluptatem voluptas officia. Consequatur quam maxime.", + "severity": "low", + "precedence": 3358, "identifier": { - "href": "http://jaskolski.test/louis", - "label": "Atanatar" + "href": "http://lakin.test/rosemary", + "label": "Hador" }, "references": [ { - "href": "http://kreiger.example/angel", - "label": "Donnamira Took" + "href": "http://treutel-lindgren.test/chet", + "label": "Gwaihir" }, { - "href": "http://torphy.test/benita_dicki", - "label": "Iorlas" + "href": "http://okuneva.example/armando", + "label": "Nora Bolger" }, { - "href": "http://rempel-klocko.test/lilly_hagenes", - "label": "Tuor" + "href": "http://nienow.example/jami.waters", + "label": "Gilmith" }, { - "href": "http://dickens.example/erin", - "label": "Ungoliant" + "href": "http://quigley.test/lyle", + "label": "Fastolph Bolger" }, { - "href": "http://cassin.test/franklyn_gleichner", - "label": "Vardamir" + "href": "http://bayer-hoeger.test/will", + "label": "Meriadoc Brandybuck" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "b0eb382e-6fdd-4986-bc6c-0bf4d2214714", + "rule_group_id": "a6b53f24-3b21-4525-951a-2b82f3d02aea", "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.", + "id": "24d566fc-86ff-4909-861e-9ff3d701f4d6", + "ref_id": "xccdf_org.ssgproject.content_rule_c35594ae73549c7ffd44068aaf4f8196", + "title": "Consequatur aut odit nemo.", + "rationale": "Quia atque voluptates. Ab quia est. Nulla harum quia.", + "description": "Natus non et. Itaque impedit molestias. Ab impedit debitis.", "severity": "low", - "precedence": 7003, + "precedence": 652, "identifier": { - "href": "http://paucek.test/stanley", - "label": "Goldberry" + "href": "http://legros.test/quinn", + "label": "Emeldir" }, "references": [ { - "href": "http://metz.test/josefa", - "label": "Peregrin Took" + "href": "http://batz-lebsack.example/quentin", + "label": "Borondir" }, { - "href": "http://smitham.example/chadwick", - "label": "Mallor" + "href": "http://jerde.example/lashaunda_champlin", + "label": "Elulindo" }, { - "href": "http://mohr-nienow.test/brian", - "label": "Hirluin" + "href": "http://champlin.example/juliana_abbott", + "label": "Pippin Gardner" }, { - "href": "http://mitchell.test/evelin.kub", - "label": "Robin Gardner" + "href": "http://hickle-zboncak.test/fritz_purdy", + "label": "Theobald Bolger" }, { - "href": "http://haag.test/piper", - "label": "Borin" + "href": "http://kilback.test/filiberto.langworth", + "label": "Landroval" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "9224e152-447e-428a-978f-a8a7d1dba2b8", + "rule_group_id": "4ca27259-740b-460d-adea-277debf90742", "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": "2874bc68-cf9b-4aa7-9d24-8123e8460233", + "ref_id": "xccdf_org.ssgproject.content_rule_d7067582681ae9e85e8a6cc751c14d8a", + "title": "Autem reiciendis tempore omnis.", + "rationale": "Veniam iste saepe. Tempore eveniet et. Sapiente eum officiis.", + "description": "Est assumenda quas. Ut placeat ea. Ut voluptatem atque.", + "severity": "medium", + "precedence": 13, "identifier": { - "href": "http://bahringer.test/daisey.conn", - "label": "Erien" + "href": "http://mitchell.test/erick_von", + "label": "Tar-Míriel" }, "references": [ { - "href": "http://schmeler.example/ronnie_hintz", - "label": "Dervorin" + "href": "http://schuster.test/nolan", + "label": "Halfred Greenhand" }, { - "href": "http://hodkiewicz.test/ezekiel", - "label": "Îbal" + "href": "http://weissnat.test/librada.dicki", + "label": "Rudibert Bolger" }, { - "href": "http://rodriguez.example/gary", - "label": "Aranwë" + "href": "http://ortiz.example/wendell", + "label": "Bregor" }, { - "href": "http://boyle.test/alden_dooley", - "label": "Eärwen" + "href": "http://weber.example/starr_goyette", + "label": "Saeros" }, { - "href": "http://leuschke-gibson.test/daniela", - "label": "Radbug" + "href": "http://stark-feeney.test/dee", + "label": "Algund" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "1b8b0452-7bbd-41f2-b81e-033a07ab0a5c", + "rule_group_id": "e95c092f-190c-42a1-b17e-43db72fb1673", "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.", - "severity": "medium", - "precedence": 1238, + "id": "33d3c61f-1996-4f02-8855-c880c0400242", + "ref_id": "xccdf_org.ssgproject.content_rule_ea540b1ea5ba11244e983466c393481f", + "title": "Necessitatibus quis et dolor.", + "rationale": "Dolor omnis accusantium. Quo soluta iusto. Similique quasi non.", + "description": "Est quia doloremque. Ducimus sapiente natus. Nihil ut iure.", + "severity": "high", + "precedence": 5792, "identifier": { - "href": "http://dubuque-reilly.example/wilburn_predovic", - "label": "Finarfin" + "href": "http://barton.example/shonta.hickle", + "label": "Hyarmendacil" }, "references": [ { - "href": "http://schumm.test/howard", - "label": "Durin" + "href": "http://effertz.example/kelsie", + "label": "Tar-Ardamin" }, { - "href": "http://effertz-strosin.example/stanford.daniel", - "label": "Celebrimbor" + "href": "http://kertzmann-bashirian.test/tara", + "label": "Vigo Boffin" }, { - "href": "http://macgyver-goldner.test/hai.rice", - "label": "Elanor Gardner" + "href": "http://powlowski-becker.test/mel.streich", + "label": "Ulbar" }, { - "href": "http://reichert.example/wayne_langosh", - "label": "Baran" + "href": "http://cremin-quitzon.example/garth", + "label": "Gilraen" }, { - "href": "http://moen.test/elane", - "label": "Fingolfin" + "href": "http://powlowski-lesch.test/lon.mcclure", + "label": "Faramir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4f7f241e-1775-4625-a3c3-fa358f8d48b1", + "rule_group_id": "e2a0733c-1a80-4879-96b5-a12898653402", "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": "448ed225-a0aa-4415-bb4f-3b87e4e089f0", + "ref_id": "xccdf_org.ssgproject.content_rule_34ee5cd92c63ca01d8b061bfab5e3ece", + "title": "Exercitationem tenetur animi veniam.", + "rationale": "Beatae pariatur et. Autem voluptas est. Tenetur doloremque sint.", + "description": "Nemo cupiditate ut. Officia dignissimos culpa. Et voluptate rem.", "severity": "low", - "precedence": 2869, + "precedence": 8208, "identifier": { - "href": "http://roob.example/asley", - "label": "Tal-Elmar" + "href": "http://casper.test/vikki_kris", + "label": "Bregor" }, "references": [ { - "href": "http://harvey.test/norma.weissnat", - "label": "Adelard Took" + "href": "http://greenfelder.test/carrol", + "label": "Lóni" }, { - "href": "http://nikolaus.example/bridgette_schultz", - "label": "Hildibrand Took" + "href": "http://gislason-vandervort.test/kymberly", + "label": "Silmariën" }, { - "href": "http://leannon.example/roderick.mcdermott", - "label": "Dora Baggins" + "href": "http://zulauf.example/kris", + "label": "Nob" }, { - "href": "http://hilpert-kozey.example/shannon", - "label": "Ingwion" + "href": "http://torphy.example/marc_hills", + "label": "Lenwë" }, { - "href": "http://nikolaus-keeling.test/fernando", - "label": "Roäc" + "href": "http://kassulke-turner.example/erasmo_mayert", + "label": "Tata" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "e73b47fe-fe7f-4feb-abde-e8cd22920dc1", + "rule_group_id": "99a7b24a-31fc-4b38-bf41-a5715fd6792d", "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/f8905a56-7a19-498c-a0f5-3edfd5fef15b/profiles/8fb61818-522e-4aa3-9049-084e98b9d155/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/f8905a56-7a19-498c-a0f5-3edfd5fef15b/profiles/8fb61818-522e-4aa3-9049-084e98b9d155/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/f8905a56-7a19-498c-a0f5-3edfd5fef15b/profiles/8fb61818-522e-4aa3-9049-084e98b9d155/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": "3f1d2f6d-27df-479c-a0fb-9f25fbb94e12", + "ref_id": "xccdf_org.ssgproject.content_rule_142956bcf8e51e1ac4524274296c493f", + "title": "Ab culpa in libero.", + "rationale": "Sint perspiciatis aut. Ea est saepe. Aut quia et.", + "description": "Aut eaque qui. Officiis maxime perferendis. Corrupti veniam libero.", + "severity": "high", + "precedence": 1047, "identifier": { - "href": "http://okuneva.example/lawanda.boyer", - "label": "Gelmir" + "href": "http://schroeder.test/linda", + "label": "Elenwë" }, "references": [ { - "href": "http://yost.test/caprice_greenholt", - "label": "Meriadoc Brandybuck" + "href": "http://pollich.example/jerome", + "label": "Mahtan" }, { - "href": "http://ziemann.test/richard.welch", - "label": "Bandobras Took" + "href": "http://oconner.example/mitchell.reichert", + "label": "Elladan" }, { - "href": "http://baumbach-bergstrom.example/belen", - "label": "Tar-Palantir" + "href": "http://bode.test/melda.friesen", + "label": "Erendis" }, { - "href": "http://schmeler.test/tyisha_wilkinson", - "label": "Ulfang" + "href": "http://zemlak.example/ozzie.simonis", + "label": "Gorbadoc Brandybuck" }, { - "href": "http://blick-hahn.example/tamie", - "label": "Dora Baggins" + "href": "http://wisozk.example/amada.lind", + "label": "Bodruith" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "1fcf7dc5-235b-4122-aee4-56f73aeac573", + "rule_group_id": "dc7681aa-060b-475b-ab18-4d6f6f21705d", "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.", + "id": "4f2b147d-c659-47f9-bebe-bbf5c0192db9", + "ref_id": "xccdf_org.ssgproject.content_rule_f5111ffb4b82d0e47662f0151fd216d8", + "title": "Consequuntur ea est voluptatem.", + "rationale": "Minima ipsa quia. Commodi debitis quasi. Laudantium sint debitis.", + "description": "Eum et voluptas. Totam et sed. Rerum et aut.", "severity": "high", - "precedence": 149, + "precedence": 2131, "identifier": { - "href": "http://goodwin.example/lakesha.mosciski", - "label": "Gil-galad" + "href": "http://shanahan-towne.example/darrin", + "label": "Bifur" }, "references": [ { - "href": "http://bauch-balistreri.test/dawna.renner", - "label": "Farmer Cotton" + "href": "http://nitzsche.test/jerold", + "label": "Celebrimbor" }, { - "href": "http://batz.test/yuonne_willms", - "label": "Ar-Zimrathôn" + "href": "http://konopelski.example/antony_fahey", + "label": "Erling" }, { - "href": "http://connelly-lakin.example/shamika", - "label": "Tata" + "href": "http://crist.example/reita_gulgowski", + "label": "Grithnir" }, { - "href": "http://marvin-farrell.example/natacha", - "label": "Hildigrim Took" + "href": "http://green.example/bret", + "label": "Lindir" }, { - "href": "http://adams.example/kieth", - "label": "Briffo Boffin" + "href": "http://goldner.test/whitney", + "label": "Ar-Adûnakhôr" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "6443421b-681c-4e61-9fce-700cef79f6b4", + "rule_group_id": "da6d37ae-4979-40e0-b5b1-86e422164c09", "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.", + "id": "b50bb832-49d2-4205-a80a-e9cbe098dfee", + "ref_id": "xccdf_org.ssgproject.content_rule_ef76ff2accea13fca37c423c1794dc6f", + "title": "Nihil et aut sed.", + "rationale": "Rerum veniam impedit. Fuga minus quia. Ratione voluptas sit.", + "description": "Voluptatem libero sit. Iure ut molestias. Ut expedita delectus.", "severity": "high", - "precedence": 620, + "precedence": 2589, "identifier": { - "href": "http://fay-hoeger.example/noel", - "label": "Sapphira Brockhouse" + "href": "http://legros.example/maricruz", + "label": "Shelob" }, "references": [ { - "href": "http://hartmann-mante.example/vernell", - "label": "Ulfast" + "href": "http://kemmer.example/oralia_gerhold", + "label": "Fréaláf" }, { - "href": "http://wisozk-veum.example/carletta_wisozk", - "label": "Girion" + "href": "http://jones-raynor.test/rico.hessel", + "label": "Éowyn" }, { - "href": "http://schroeder.example/tammi_terry", - "label": "Elboron" + "href": "http://schulist-rolfson.example/jerrell.borer", + "label": "Wilcome" }, { - "href": "http://roob.example/trey_sipes", - "label": "Cora Goodbody" + "href": "http://fahey.test/arnold", + "label": "Ulfast" }, { - "href": "http://dietrich.test/max", - "label": "Ar-Zimrathôn" + "href": "http://gorczany-kuhlman.test/filiberto", + "label": "Bombur" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "23b1f143-6609-4c41-a5e8-6c928d211181", + "rule_group_id": "7d0bceb7-0dc4-4806-a36a-011a01c0b469", "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": "c44a9f50-3cf0-4fb8-9b24-69912df2da25", + "ref_id": "xccdf_org.ssgproject.content_rule_72eef44ed1a0508f3693cd7286ca7db9", + "title": "Et ducimus qui quas.", + "rationale": "Perferendis soluta ut. Voluptas odio atque. Natus id sed.", + "description": "Perspiciatis distinctio aut. Et et dolor. Quia vel et.", "severity": "low", - "precedence": 643, + "precedence": 3119, "identifier": { - "href": "http://deckow.example/fernando.klein", - "label": "Bowman Cotton" + "href": "http://rau-rau.example/bill", + "label": "Berúthiel" }, "references": [ { - "href": "http://marks-heathcote.example/rosenda_dare", - "label": "Shagram" + "href": "http://gorczany-auer.test/chastity", + "label": "Quickbeam" }, { - "href": "http://dare.example/rod", - "label": "Cora Goodbody" + "href": "http://will.example/ashanti.abbott", + "label": "Gaffer Gamgee" }, { - "href": "http://jacobs.example/earl_adams", - "label": "Malva Headstrong" + "href": "http://abernathy.example/tonette", + "label": "Baranor" }, { - "href": "http://harber.test/neil", - "label": "Bucca of the Marish" + "href": "http://jast.test/romeo.wuckert", + "label": "Lindissë" }, { - "href": "http://renner.test/gregorio.bauch", - "label": "Mrs. Maggot" + "href": "http://raynor-koepp.test/avery_kris", + "label": "Ulbar" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "37e0907e-0077-47c3-bc81-6da402ab2d32", + "rule_group_id": "ecba3116-cd89-404f-ae29-9785d9f22e34", "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.", + "id": "bfbfc6ed-9b98-4718-9a26-87d7c7ae60b5", + "ref_id": "xccdf_org.ssgproject.content_rule_dea7931ae874ecc549554e16ee8ab6ef", + "title": "Dolorem doloribus dolorem doloremque.", + "rationale": "Nobis dolore modi. Impedit in atque. Enim dolor quis.", + "description": "Nihil optio nisi. Magni officiis molestiae. Fugit dolores dolore.", "severity": "medium", - "precedence": 722, + "precedence": 4522, "identifier": { - "href": "http://mohr.example/frederica", - "label": "Rowan" + "href": "http://jaskolski-lockman.test/lecia.mohr", + "label": "Lothíriel" }, "references": [ { - "href": "http://langosh.test/kurtis.haley", - "label": "Prisca Baggins" + "href": "http://beier-herzog.example/kraig", + "label": "Ilberic Brandybuck" }, { - "href": "http://hagenes.test/irmgard", - "label": "Brandir" + "href": "http://padberg-senger.example/ha", + "label": "Tar-Ardamin" }, { - "href": "http://roob.example/marva", - "label": "Frár" + "href": "http://wisoky-johnson.example/malcom_leannon", + "label": "Briffo Boffin" }, { - "href": "http://kris-schamberger.example/mitchell.carter", - "label": "Ghân-buri-Ghân" + "href": "http://lynch.example/sang_gottlieb", + "label": "Pansy Baggins" }, { - "href": "http://cole-kunze.test/broderick_crist", - "label": "Mîm" + "href": "http://swift.example/mariah", + "label": "Mimosa Bunce" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "95f8bc44-8d45-44f6-bd6b-2376e558f470", + "rule_group_id": "750fd92e-fd6a-45a2-9d50-29839a471265", "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": "dad7aee3-6340-4185-81b4-24b9e5f2743a", + "ref_id": "xccdf_org.ssgproject.content_rule_87aa19b16e09eeb7b6246232edf498d1", + "title": "Accusamus magni minima voluptatum.", + "rationale": "Molestiae aut aperiam. Ad debitis est. Odio sed cupiditate.", + "description": "Rerum consequuntur consequatur. Soluta voluptatem ex. Molestiae saepe natus.", + "severity": "medium", + "precedence": 4656, "identifier": { - "href": "http://lindgren.test/jacinto", - "label": "Primrose Boffin" + "href": "http://krajcik.test/keven", + "label": "Larnach" }, "references": [ { - "href": "http://marvin-ruecker.test/luke_gleichner", - "label": "Girion" + "href": "http://kuhn-sanford.example/mitsuko", + "label": "Zimraphel" }, { - "href": "http://franecki.example/elaine.kutch", - "label": "Tar-Atanamir" + "href": "http://koelpin.example/anthony", + "label": "Gróin" }, { - "href": "http://yundt.example/micheal_sawayn", - "label": "Rúmil" + "href": "http://kling.test/richard.lind", + "label": "Moro Burrows" }, { - "href": "http://lehner.example/sanora_vandervort", - "label": "Bolg" + "href": "http://schmitt-reynolds.example/christopher", + "label": "Farmer Cotton" }, { - "href": "http://mayer.example/angelena.kuphal", - "label": "Rudolph Bolger" + "href": "http://bosco-nicolas.example/adolfo", + "label": "Halmir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "17ba29c5-659a-40d6-b57d-a94fc4323fdc", + "rule_group_id": "d653335f-14fb-4fd8-8c26-9a55b510eb60", "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.", - "severity": "low", - "precedence": 1084, + "id": "323c9c8d-cf2d-4ff4-a5a6-41708045aeb3", + "ref_id": "xccdf_org.ssgproject.content_rule_05bce08413b171dcef0dc28b07ff46bd", + "title": "Fugit et qui harum.", + "rationale": "Nostrum id dignissimos. Optio velit ut. Assumenda dolorem dolores.", + "description": "Voluptatem ut ut. Omnis cupiditate illum. Quod qui voluptatibus.", + "severity": "high", + "precedence": 4773, "identifier": { - "href": "http://heller.example/louvenia.okon", - "label": "Radhruin" + "href": "http://ondricka-runolfsson.example/isaias", + "label": "Grimbold" }, "references": [ { - "href": "http://thiel.example/marlon_gorczany", - "label": "Thráin" + "href": "http://murphy-swaniawski.example/cindie_hermann", + "label": "Celeborn" }, { - "href": "http://schaden-parisian.example/michiko", - "label": "Ponto Baggins" + "href": "http://kautzer-pfannerstill.test/brigitte", + "label": "Hador" }, { - "href": "http://heaney.test/reed.johnson", - "label": "Ted Sandyman" + "href": "http://langworth.test/kim.lueilwitz", + "label": "Findegil" }, { - "href": "http://feest.test/hipolito", - "label": "Bell Goodchild" + "href": "http://schmeler.example/karoline", + "label": "Iago Grubb" }, { - "href": "http://corkery.test/cole", - "label": "Avranc" + "href": "http://kuhn-klocko.example/mozella_miller", + "label": "Núneth" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "54b2703c-9125-405a-a323-c39048526c7c", + "rule_group_id": "62ae881d-6ff7-466e-afb0-8bf86fb135c9", "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": "a3a9c6e1-a488-4c05-8cd2-4b83efa6e1d4", + "ref_id": "xccdf_org.ssgproject.content_rule_b4dc1541d76c750eb131b12041e606a7", + "title": "Voluptatem consequuntur voluptatibus corrupti.", + "rationale": "Blanditiis omnis quia. Et quo repellendus. Ullam iste labore.", + "description": "Quod iusto aut. Asperiores ea sit. Qui inventore quia.", + "severity": "low", + "precedence": 5433, "identifier": { - "href": "http://dibbert-leffler.example/basilia.marks", - "label": "Saradoc Brandybuck" + "href": "http://hackett.example/hobert", + "label": "Diamond of Long Cleeve" }, "references": [ { - "href": "http://douglas.example/gina.hilpert", - "label": "Arahad" + "href": "http://beahan.test/maira_koepp", + "label": "Ostoher" }, { - "href": "http://stehr-pagac.example/elmer", - "label": "Uldor" + "href": "http://koepp.test/devona", + "label": "Hilda Bracegirdle" }, { - "href": "http://kunze.example/tiffany", - "label": "Doderic Brandybuck" + "href": "http://bauch-pacocha.test/man.schuppe", + "label": "Elentir" }, { - "href": "http://rodriguez-medhurst.example/wendell", - "label": "Tar-Minastir" + "href": "http://hoppe-lockman.test/luanna_ruecker", + "label": "Goldwine" }, { - "href": "http://harvey.example/serafina", - "label": "Fastolph Bolger" + "href": "http://kunze.test/shawn", + "label": "Eglantine Banks" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "0940e72f-f412-4e0a-9133-b5bea9b1646d", + "rule_group_id": "98f1d671-485b-45c2-b432-1d119d6cee8f", "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.", - "severity": "low", - "precedence": 1503, + "id": "c7e24778-0840-42fa-9f18-b67f7aa887ef", + "ref_id": "xccdf_org.ssgproject.content_rule_0981f1a08bf7842bb8d69435bd7049a7", + "title": "Ullam rem eveniet aut.", + "rationale": "Repellat ullam qui. Reprehenderit quis tempore. Rerum rem non.", + "description": "Modi ipsa similique. Quod id facere. A porro est.", + "severity": "high", + "precedence": 5494, "identifier": { - "href": "http://jacobson.test/darrin", - "label": "Almáriel" + "href": "http://kihn-batz.test/gay.auer", + "label": "Elentir" }, "references": [ { - "href": "http://auer.test/filomena", - "label": "Malva Headstrong" + "href": "http://sawayn-schamberger.test/deandre_reichel", + "label": "Dáin" }, { - "href": "http://osinski.example/angeline", - "label": "Mablung" + "href": "http://kassulke.test/kandy.blick", + "label": "Borlad" }, { - "href": "http://volkman.example/lawerence.strosin", - "label": "Milo Burrows" + "href": "http://rath.test/shanita", + "label": "Amandil" }, { - "href": "http://crooks.example/latesha", - "label": "Thráin" + "href": "http://tremblay-langworth.test/bambi_grimes", + "label": "Algund" }, { - "href": "http://collins.test/carleen.will", - "label": "Lindissë" + "href": "http://kiehn.test/curt", + "label": "Flambard Took" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "dafc6399-b30c-4b81-bc54-b224e9c42297", + "rule_group_id": "bad4474b-8edb-45fc-9572-915b5e360aa3", "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": "2931044a-d2bc-41fa-942c-24ed0b05ebc2", + "ref_id": "xccdf_org.ssgproject.content_rule_1d13b8ace905c0fd3c6176115d68a98f", + "title": "Fugit in eos qui.", + "rationale": "Blanditiis nobis ex. Possimus minus veritatis. Perspiciatis illum id.", + "description": "Qui possimus repudiandae. Rem consequatur optio. Ea necessitatibus sit.", + "severity": "low", + "precedence": 5678, "identifier": { - "href": "http://weber.example/karan", - "label": "Gruffo Boffin" + "href": "http://sauer.test/veda", + "label": "Soronto" }, "references": [ { - "href": "http://cartwright.example/bethanie.price", - "label": "Elrohir" + "href": "http://okeefe-bins.example/reanna", + "label": "Tar-Ancalimon" }, { - "href": "http://predovic.test/jesus.boehm", - "label": "Cotman" + "href": "http://jerde.test/deon", + "label": "Adam Hornblower" }, { - "href": "http://stanton-kertzmann.example/wanda", - "label": "Robin Gardner" + "href": "http://fahey-nikolaus.test/dana", + "label": "Aravir" }, { - "href": "http://dare.example/marcelo_casper", - "label": "Hazad" + "href": "http://wolf.example/carroll", + "label": "Malantur" }, { - "href": "http://tromp.test/dallas_runolfsdottir", - "label": "Telumehtar Umbardacil" + "href": "http://rau.test/jae_lesch", + "label": "Dori" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "eb9c966f-da59-4ffe-b716-ca81e6b96e17", + "rule_group_id": "282d3d04-f166-4086-ad92-58a0fc7a38d7", "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/0b0897c1-bee6-4159-b83f-89ae01399b0d/profiles/53c72531-85cc-4754-bd11-d4d801fde6b8/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/0b0897c1-bee6-4159-b83f-89ae01399b0d/profiles/53c72531-85cc-4754-bd11-d4d801fde6b8/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/0b0897c1-bee6-4159-b83f-89ae01399b0d/profiles/53c72531-85cc-4754-bd11-d4d801fde6b8/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": "c1672db4-c5a4-475d-81df-21b630d1f99b", + "ref_id": "xccdf_org.ssgproject.content_rule_531e7278e2e0fa47402b6f881d7b8d48", + "title": "Quo quaerat aut et.", + "rationale": "Qui sit voluptas. Aut earum quisquam. Voluptatem quidem occaecati.", + "description": "Et harum asperiores. Aut qui alias. Atque sunt recusandae.", + "severity": "medium", + "precedence": 7529, "identifier": { - "href": "http://will-bayer.test/roderick_moore", - "label": "Cotman" + "href": "http://hauck.test/adrianna", + "label": "Eärnur" }, "references": [ { - "href": "http://ritchie.example/cathrine_schuster", - "label": "Tar-Atanamir" + "href": "http://hermiston.test/elden_senger", + "label": "Thingol" }, { - "href": "http://mraz-mosciski.test/hank.block", - "label": "Frumgar" + "href": "http://grady-farrell.test/loreen.schultz", + "label": "Gilbarad" }, { - "href": "http://keeling-stark.example/suzanna", - "label": "Borlas" + "href": "http://kuhn-gutkowski.example/murray", + "label": "Thorondir" }, { - "href": "http://boyle.example/dayna.marks", - "label": "Pengolodh" + "href": "http://dickens.example/kurtis.mayert", + "label": "Meriadoc Brandybuck" }, { - "href": "http://larson-roberts.test/haywood_braun", - "label": "Angbor" + "href": "http://ziemann.test/charlie", + "label": "Arathorn" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "5fd10ace-dfac-4fb0-b27f-af1a23cf5f36", + "rule_group_id": "d08817fe-819e-4b62-84b2-800366b3dd5c", "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 44ec4196-c7ae-47b8-834e-248dbef7bffc" ] }, "summary": "", @@ -5679,7 +5679,7 @@ "tags": [ "Policies" ], - "description": "Lists Rules assigned to a Tailoring", + "description": "Use this to get a list of rules relating to specific tailorings. Tailorings are customizations of rules.", "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": "caa26e7a-997b-4cbc-b312-105c226c3b15", + "ref_id": "xccdf_org.ssgproject.content_rule_3436697cf0e28e087af8bc81c43fc61d", + "title": "Rerum eum corrupti sint.", + "rationale": "Sit mollitia ad. Dolor tempora blanditiis. Voluptatem aliquam laborum.", + "description": "Dicta voluptas omnis. Labore praesentium qui. Sit voluptatem in.", "severity": "low", - "precedence": 4623, + "precedence": 139, "identifier": { - "href": "http://schaefer.example/tuan", - "label": "Lonely Troll" + "href": "http://fay.test/darrell.bogan", + "label": "Daisy Gamgee" }, "references": [ { - "href": "http://gorczany.test/gonzalo", - "label": "King of the Dead" + "href": "http://marvin.test/miguel", + "label": "Tar-Minastir" }, { - "href": "http://considine.example/terrence_skiles", - "label": "Othrondir" + "href": "http://connelly.example/kendall_dickens", + "label": "Frór" }, { - "href": "http://osinski.example/glady.kling", - "label": "Primrose Gardner" + "href": "http://haag-herzog.test/rosalba.stoltenberg", + "label": "Galathil" }, { - "href": "http://hirthe-dach.example/judson", - "label": "Eorl" + "href": "http://corwin.example/lazaro", + "label": "Fram" }, { - "href": "http://mclaughlin.example/rosendo_schneider", - "label": "Elendur" + "href": "http://bradtke-spencer.example/lane.bins", + "label": "Enel" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "2e06fc13-6288-4576-a9bd-e56f83dead72", + "rule_group_id": "f4988336-ece4-4514-acd4-afca7c8b96a0", "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/480f933f-3c86-41ca-8919-16d4a2e18cb6/tailorings/238efe0d-bbfe-4460-969d-1920c425a90d/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/480f933f-3c86-41ca-8919-16d4a2e18cb6/tailorings/238efe0d-bbfe-4460-969d-1920c425a90d/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": "c5f7be2b-bdea-4b7a-a9ef-3a0aef14b19c", + "ref_id": "xccdf_org.ssgproject.content_rule_3f6b607a6ed1d3729e4ad02ced3eb585", + "title": "Dolor excepturi omnis labore.", + "rationale": "Perspiciatis eveniet ipsam. Occaecati illum aut. Eligendi quisquam consequatur.", + "description": "Labore modi dolorum. Repudiandae accusantium aut. Dolor aut unde.", + "severity": "medium", + "precedence": 9476, "identifier": { - "href": "http://okon-jenkins.example/santiago_hoeger", - "label": "Tar-Telperiën" + "href": "http://hauck.test/greg.mann", + "label": "Vinitharya" }, "references": [ { - "href": "http://daugherty.example/ernie", - "label": "Galador" + "href": "http://ferry.test/nicol", + "label": "Fengel" }, { - "href": "http://conn.test/karine_fadel", - "label": "Ulrad" + "href": "http://casper-hahn.example/rickey.ohara", + "label": "Ar-Adûnakhôr" }, { - "href": "http://stanton.example/keli", - "label": "Mablung" + "href": "http://hettinger.test/torrie_hodkiewicz", + "label": "Isildur" }, { - "href": "http://ondricka.example/zachariah", - "label": "Pervinca Took" + "href": "http://gutkowski-schulist.example/vivien.quitzon", + "label": "Berúthiel" }, { - "href": "http://murray.test/stephen", - "label": "Fíriel Fairbairn" + "href": "http://torphy.test/jeff", + "label": "Tar-Palantir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "e3c69a41-9b59-4ca9-b693-7f38cbecc264", + "rule_group_id": "f036d416-2955-4803-ad3a-e9478b4e829f", "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/d70815fa-c086-4148-b272-5ac97680f916/tailorings/e2359193-0689-425f-b41f-d5d823365390/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/policies/d70815fa-c086-4148-b272-5ac97680f916/tailorings/e2359193-0689-425f-b41f-d5d823365390/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.", - "severity": "high", - "precedence": 8134, + "id": "00a1f856-e9f4-47e7-a6f4-fe52d82556ce", + "ref_id": "xccdf_org.ssgproject.content_rule_a58b96556e8379609a5d724f0906b4a5", + "title": "Laborum libero eum laudantium.", + "rationale": "At officiis iure. Eligendi reiciendis minus. Sit non id.", + "description": "Est repudiandae rem. Quas aut ratione. Nostrum doloribus accusamus.", + "severity": "low", + "precedence": 7622, "identifier": { - "href": "http://cronin.example/perla.schowalter", - "label": "Gethron" + "href": "http://streich.test/bok", + "label": "Otto Boffin" }, "references": [ { - "href": "http://dickens.example/barry.schmitt", - "label": "Frodo Baggins" + "href": "http://ziemann-kuhic.example/nathan", + "label": "Amrod" }, { - "href": "http://wisozk.example/cesar", - "label": "Amrothos" + "href": "http://effertz-ortiz.example/violet_predovic", + "label": "Myrtle Burrows" }, { - "href": "http://zulauf.test/terence_veum", - "label": "Thráin" + "href": "http://runte-jacobi.example/rashad", + "label": "Thranduil" }, { - "href": "http://schmidt.test/trey", - "label": "Angelica Baggins" + "href": "http://sawayn.test/theodore.runte", + "label": "Algund" }, { - "href": "http://legros-ondricka.test/tomika", - "label": "Rorimac Brandybuck" + "href": "http://hilpert.example/chong_terry", + "label": "Soronto" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "75525cab-837f-43aa-aa74-7087663ddefc", + "rule_group_id": "78977ae3-ee04-4cc9-af36-c86486345ca2", "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.", + "id": "0959a3a0-19e3-4fce-a059-1d0118273635", + "ref_id": "xccdf_org.ssgproject.content_rule_46e0f64a133c46babc08732a2c178904", + "title": "Animi qui quisquam et.", + "rationale": "Facere assumenda illo. Natus ut quidem. Nisi porro illum.", + "description": "Vitae saepe a. Dolores ipsa qui. Non consectetur est.", "severity": "high", - "precedence": 9657, + "precedence": 9105, "identifier": { - "href": "http://cremin.test/ester", - "label": "Eärnil" + "href": "http://swaniawski-schneider.test/wayne", + "label": "Tanta Hornblower" }, "references": [ { - "href": "http://waters.test/erminia", - "label": "Gildis" + "href": "http://cartwright-fisher.test/kyle", + "label": "Dwalin" }, { - "href": "http://rogahn-berge.test/jerry", - "label": "Samwise Gamgee" + "href": "http://howe.example/sofia", + "label": "Gundolpho Bolger" }, { - "href": "http://carter.example/leigha", - "label": "Carl Cotton" + "href": "http://lynch.test/bok.cummerata", + "label": "Celegorm" }, { - "href": "http://padberg.example/chong", - "label": "Eärnur" + "href": "http://runolfsson-graham.test/ferdinand_sauer", + "label": "Rudolph Bolger" }, { - "href": "http://crist.test/chad.adams", - "label": "Oromendil" + "href": "http://flatley.test/vanita.hartmann", + "label": "Éothain" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "6f43b653-b682-48f2-8565-7f13491d1703", + "rule_group_id": "44beb26a-df45-46cf-a2fe-2ba353f731e9", "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": "0bb12acf-64bd-4c4b-a738-fce06679ee1b", + "ref_id": "xccdf_org.ssgproject.content_rule_20415aa957af6e32042942148a722034", + "title": "Rerum fugiat et facilis.", + "rationale": "Vero iste quia. Aut corporis illum. Velit qui eum.", + "description": "Sunt voluptatibus fugiat. In rerum non. Non veniam voluptatum.", + "severity": "high", + "precedence": 2186, "identifier": { - "href": "http://larson-breitenberg.example/cassondra", - "label": "Araglas" + "href": "http://ratke.example/elna", + "label": "Pelendur" }, "references": [ { - "href": "http://von-klocko.example/damion", - "label": "Dervorin" + "href": "http://upton.example/cherilyn.wiegand", + "label": "Old Noakes" }, { - "href": "http://lang.example/luther", - "label": "Boron" + "href": "http://stiedemann.test/sara", + "label": "Tar-Alcarin" }, { - "href": "http://rau-weissnat.test/galen", - "label": "Amethyst Hornblower" + "href": "http://raynor.test/courtney_damore", + "label": "Otho Sackville-Baggins" }, { - "href": "http://ebert-hermiston.test/marianela.ohara", - "label": "Hannar" + "href": "http://mcclure-purdy.test/angel.kuhn", + "label": "Aranarth" }, { - "href": "http://ryan.test/simon", - "label": "Boar of Everholt" + "href": "http://bosco.test/eugene.kreiger", + "label": "Mrs. Maggot" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4ed777e2-61db-4336-a602-144173cf1ae3", + "rule_group_id": "66bbd38b-1994-41a5-b6e3-c47ebed30934", "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.", + "id": "216ac6a0-a600-4de0-8d20-3489500c2d88", + "ref_id": "xccdf_org.ssgproject.content_rule_aaf5e1670ff37bf1540efe01f6dd301b", + "title": "Occaecati illo earum aliquam.", + "rationale": "Beatae expedita adipisci. Nihil eligendi aperiam. Accusamus vitae ut.", + "description": "Qui omnis debitis. Impedit minima ipsum. Quisquam est possimus.", "severity": "high", - "precedence": 2015, + "precedence": 7100, "identifier": { - "href": "http://parisian.example/laurine.crona", - "label": "Mrs. Maggot" + "href": "http://reichel.example/zane", + "label": "Arachon" }, "references": [ { - "href": "http://hintz.test/carroll", - "label": "Amroth" + "href": "http://goldner.test/stan", + "label": "Aragost" }, { - "href": "http://stanton.example/marin", - "label": "Haldir" + "href": "http://leuschke-thompson.test/milford", + "label": "Mahtan" }, { - "href": "http://gibson.example/gino_turcotte", - "label": "Argon" + "href": "http://rutherford-ernser.example/heather", + "label": "Enerdhil" }, { - "href": "http://damore.example/demarcus_price", - "label": "Tar-Calmacil" + "href": "http://howell.test/ellsworth", + "label": "Turgon" }, { - "href": "http://jenkins-renner.example/ashli", - "label": "Halfred Gamgee" + "href": "http://kirlin.example/jeffry_marquardt", + "label": "Gimli" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "1424f846-fba1-4df9-9d3e-2570f646b2a5", + "rule_group_id": "4e8df5be-2162-4ef2-b684-32ede448c681", "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": "420ac418-19b0-47d6-91a1-41350bee0301", + "ref_id": "xccdf_org.ssgproject.content_rule_76fc54238fc3523342bc6db53fe0d240", + "title": "Necessitatibus soluta impedit est.", + "rationale": "Ut corrupti similique. Assumenda beatae aut. Quas dignissimos error.", + "description": "Tenetur possimus reprehenderit. Aliquid molestiae reiciendis. Iste unde perspiciatis.", + "severity": "medium", + "precedence": 9922, "identifier": { - "href": "http://beahan-schmitt.example/desire", - "label": "Adalbert Bolger" + "href": "http://larson-gerlach.test/fred", + "label": "Elfhild" }, "references": [ { - "href": "http://purdy.example/kathrine", - "label": "Mungo Baggins" + "href": "http://kuphal.test/yolande", + "label": "Doderic Brandybuck" }, { - "href": "http://rogahn-lemke.example/jocelyn.rosenbaum", - "label": "Elmo" + "href": "http://lynch-bartell.test/isidro_tromp", + "label": "Aglahad" }, { - "href": "http://weissnat-huels.example/sherill", - "label": "Gildor" + "href": "http://ankunding.test/annette", + "label": "Baranor" }, { - "href": "http://bruen.test/jean", - "label": "Isembold Took" + "href": "http://shields-gorczany.test/samara", + "label": "Carc" }, { - "href": "http://kovacek-ruecker.example/thurman.ward", - "label": "Nora Bolger" + "href": "http://cummerata.example/caren_barton", + "label": "Morwen Steelsheen" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "4fe434b6-2b35-4624-8205-5b780b20bbf2", + "rule_group_id": "82c56dce-edb2-4bfa-8b25-95b60eedf267", "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.", - "severity": "high", - "precedence": 7453, + "id": "480c78de-7286-4931-84b5-8e64d9bec3f6", + "ref_id": "xccdf_org.ssgproject.content_rule_722a4b1bc5e284a00be7778b31333790", + "title": "Sequi quo eum officiis.", + "rationale": "Dicta culpa consequuntur. Et et vel. Soluta dignissimos voluptatem.", + "description": "Quis odio non. Est rem voluptatem. Cumque sunt delectus.", + "severity": "medium", + "precedence": 7597, "identifier": { - "href": "http://little.example/randal", - "label": "Borlad" + "href": "http://abbott-kovacek.example/mattie", + "label": "Fundin" }, "references": [ { - "href": "http://stokes-rogahn.example/chassidy", - "label": "Aegnor" + "href": "http://rutherford.test/nanci", + "label": "Hyarmendacil" }, { - "href": "http://pfannerstill.test/shanae_bernier", - "label": "Ivriniel" + "href": "http://kilback.test/collen", + "label": "Dírhaval" }, { - "href": "http://smith.example/alphonse", - "label": "Shelob" + "href": "http://jacobi.example/wilber", + "label": "Azaghâl" }, { - "href": "http://larkin.example/cliff", - "label": "Narvi" + "href": "http://damore-murray.example/joie.fadel", + "label": "Artamir" }, { - "href": "http://jerde-swaniawski.example/justin", - "label": "Eärendil" + "href": "http://gulgowski.test/cris.wehner", + "label": "Finarfin" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "328c8085-5b81-4aac-a2b7-2258d860644e", + "rule_group_id": "6ac08002-7c8c-441e-8042-e1ab85825faa", "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.", + "id": "4d3bb6fe-1e31-4cfb-9a97-ea04f664a58e", + "ref_id": "xccdf_org.ssgproject.content_rule_672a6bd9aaddcbde8ae156bee62618f8", + "title": "Provident inventore qui culpa.", + "rationale": "Qui aspernatur fuga. Nihil maxime vel. In libero corrupti.", + "description": "Qui perspiciatis amet. Veritatis ipsa officiis. Inventore quos quis.", "severity": "low", - "precedence": 6531, + "precedence": 2703, "identifier": { - "href": "http://johnston.test/demetrius.kovacek", - "label": "Tar-Vanimeldë" + "href": "http://cremin.test/tilda_waelchi", + "label": "Pervinca Took" }, "references": [ { - "href": "http://altenwerth.test/lexie.damore", - "label": "Girion" + "href": "http://hilll.example/kandace.hackett", + "label": "Meriadoc Brandybuck" }, { - "href": "http://keeling.example/russell_kuhic", - "label": "Malva Headstrong" + "href": "http://lesch.example/keneth", + "label": "Tar-Elendil" }, { - "href": "http://doyle-lebsack.example/lyndon", - "label": "Tar-Meneldur" + "href": "http://shanahan-roob.example/edmond_paucek", + "label": "Fíriel" }, { - "href": "http://zulauf.test/libby", - "label": "Marhwini" + "href": "http://harvey.example/krystin", + "label": "Axantur" }, { - "href": "http://volkman.test/carl", - "label": "Írildë" + "href": "http://schaden.example/willa", + "label": "Elemmírë" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "41a36bcb-61ec-4b20-8781-7dd9b8704387", + "rule_group_id": "d5c3a567-22d7-44ef-bbd3-fb6578474df7", "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.", - "severity": "medium", - "precedence": 5753, + "id": "5057ad8f-5cd4-4e67-9a66-0767a5871dbd", + "ref_id": "xccdf_org.ssgproject.content_rule_8313e6b71c7581b040c00bfeddc758dd", + "title": "Est quo sed quod.", + "rationale": "Minus provident saepe. Hic commodi minima. Debitis corrupti provident.", + "description": "Ea itaque veniam. Sunt et asperiores. Qui rerum eaque.", + "severity": "high", + "precedence": 9, "identifier": { - "href": "http://koss-mosciski.example/prudence", - "label": "Tar-Calmacil" + "href": "http://schuppe-daugherty.test/von", + "label": "Hazad" }, "references": [ { - "href": "http://streich-barton.test/hedwig", - "label": "Lindórië" + "href": "http://donnelly.example/holli", + "label": "Amlaith" }, { - "href": "http://fahey-pacocha.example/mathew", - "label": "Forthwini" + "href": "http://huel.example/twanna_leannon", + "label": "Draugluin" }, { - "href": "http://wisozk.example/sidney.jacobi", - "label": "Galdor of the Havens" + "href": "http://kuvalis-rempel.example/homer", + "label": "Rudolph Bolger" }, { - "href": "http://lebsack.test/donte", - "label": "Aegnor" + "href": "http://halvorson.test/charles_williamson", + "label": "Hamfast Gardner" }, { - "href": "http://lemke-cummerata.test/man", - "label": "Tar-Ancalimë" + "href": "http://von-hickle.example/gregg.heller", + "label": "Fengel" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "e58455cb-75f5-432c-8a4c-b12784765e4e", + "rule_group_id": "bc9ca977-4fdd-48c8-9c50-c290f798accf", "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": "534dfcee-6071-4d56-857a-eef7f151a424", + "ref_id": "xccdf_org.ssgproject.content_rule_52b1d5f39dcb03b90bc2ebf170f057a4", + "title": "Ex molestiae cupiditate sequi.", + "rationale": "Autem aliquid modi. Non eaque voluptatem. Nihil a quas.", + "description": "Dignissimos aut dolore. Ab deleniti et. Fugit accusamus non.", + "severity": "medium", + "precedence": 4888, "identifier": { - "href": "http://rogahn.example/robbin_mckenzie", - "label": "Finarfin" + "href": "http://kling.example/angel_streich", + "label": "Bell Goodchild" }, "references": [ { - "href": "http://pfeffer-ondricka.example/nathaniel.reilly", - "label": "Glóin" + "href": "http://stamm.test/tanna", + "label": "Fréawine" }, { - "href": "http://mccullough.test/elva.hansen", - "label": "Balbo Baggins" + "href": "http://kuhlman.example/julietta", + "label": "Largo Baggins" }, { - "href": "http://okeefe.test/harland", - "label": "Elladan" + "href": "http://graham.test/wallace", + "label": "Nina Lightfoot" }, { - "href": "http://senger.test/karie.lesch", - "label": "Othrondir" + "href": "http://christiansen-feil.test/aundrea", + "label": "Folca" }, { - "href": "http://schamberger.example/kraig.wiegand", - "label": "Watcher in the Water" + "href": "http://kunze.test/christal", + "label": "Beldir" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "2da20f78-b139-4c4d-8173-d69b10fbdfcd", + "rule_group_id": "09c99aee-29a0-4ac0-acc3-b876b7e79490", "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": "57f1f305-4a84-477a-98ca-1b92deebd84b", + "ref_id": "xccdf_org.ssgproject.content_rule_659366dcfbe005f88b9a67bc60edd728", + "title": "Omnis autem aspernatur iusto.", + "rationale": "Recusandae aut rerum. Ut illo magni. Ut corporis ut.", + "description": "Excepturi doloribus suscipit. Ex hic incidunt. Accusantium voluptatem molestiae.", + "severity": "medium", + "precedence": 7080, "identifier": { - "href": "http://dietrich.test/socorro_lockman", - "label": "Bowman Cotton" + "href": "http://king.test/numbers.feest", + "label": "Meneldor" }, "references": [ { - "href": "http://lebsack.example/porsche", - "label": "Melilot Brandybuck" + "href": "http://grant-jacobi.example/vincent", + "label": "Madril" }, { - "href": "http://hoeger-gerlach.test/ollie", - "label": "Soronto" + "href": "http://stehr-runte.example/bryce", + "label": "Finwë" }, { - "href": "http://fisher.test/cristobal", - "label": "Estella Bolger" + "href": "http://luettgen.example/bibi", + "label": "Poppy Chubb-Baggins" }, { - "href": "http://bogisich.example/rozella_renner", - "label": "Narmacil" + "href": "http://marvin-torp.example/brain", + "label": "Mallor" }, { - "href": "http://ebert-pacocha.test/arlie", - "label": "Larnach" + "href": "http://lowe.test/siu_armstrong", + "label": "Boron" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "53c1ffe8-845a-40ec-954a-c138ea943e45", + "rule_group_id": "632db111-d8f2-40d5-be12-a9775df32a3a", "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/5f013a2f-2968-4f2a-9241-79c521f6d4da/tailorings/3174800a-3b77-4e4e-bf0c-b8350eedb531/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/5f013a2f-2968-4f2a-9241-79c521f6d4da/tailorings/3174800a-3b77-4e4e-bf0c-b8350eedb531/rules?limit=10&offset=20", + "next": "/api/compliance/v2/policies/5f013a2f-2968-4f2a-9241-79c521f6d4da/tailorings/3174800a-3b77-4e4e-bf0c-b8350eedb531/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": "931ecbf8-9957-453c-9dd4-14297e8c5059", + "ref_id": "xccdf_org.ssgproject.content_rule_12654a036ec0e567ecd1d1a12b5c3756", + "title": "Non illo dolor quo.", + "rationale": "Sequi reiciendis dolor. Magni et sed. Nesciunt dicta similique.", + "description": "Quas distinctio illo. Rerum et nihil. Vero cumque nemo.", + "severity": "high", + "precedence": 7729, "identifier": { - "href": "http://schoen.test/marcelina_jakubowski", - "label": "Ar-Sakalthôr" + "href": "http://upton-hauck.example/marvis", + "label": "Axantur" }, "references": [ { - "href": "http://kreiger.test/jeffry_white", - "label": "Elboron" + "href": "http://gibson.test/cedrick", + "label": "Hiril" }, { - "href": "http://stanton.test/jule.mante", - "label": "Morwë" + "href": "http://koch.example/terrence_west", + "label": "Arvedui" }, { - "href": "http://mante.example/courtney", - "label": "Legolas" + "href": "http://ohara-jakubowski.example/virgilio", + "label": "Dairuin" }, { - "href": "http://brakus-lehner.test/brittni", - "label": "Tarannon Falastur" + "href": "http://bernhard-treutel.test/leta", + "label": "Lavender Grubb" }, { - "href": "http://rempel-daugherty.example/nydia", - "label": "Radbug" + "href": "http://glover.example/aurelio", + "label": "Belegund" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "c142ba5b-14cc-411c-a194-fd29f21eaae6", + "rule_group_id": "c4dd4a73-1ac7-40b1-851b-3bebe63b61e5", "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 93888891-75c9-4c77-84e9-a594436cf48a" ] }, "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.", + "id": "2a5fb001-ea21-47f9-86cd-6b8949e48887", + "ref_id": "xccdf_org.ssgproject.content_rule_9ed014d996e38b1c463d7436115f839b", + "title": "Non molestiae quo perferendis.", + "rationale": "Libero voluptatem ut. Aut molestiae et. Eius explicabo quia.", + "description": "Unde exercitationem explicabo. Molestiae nulla ab. Vel iste laboriosam.", "severity": "low", - "precedence": 7674, + "precedence": 7271, "identifier": { - "href": "http://hermann.test/teofila", - "label": "Helm" + "href": "http://graham.example/karan_hane", + "label": "Lotho Sackville-Baggins" }, "references": [ { - "href": "http://ebert.example/antoine", - "label": "Frumgar" + "href": "http://koelpin-gleason.test/ferdinand", + "label": "Larnach" }, { - "href": "http://prosacco.example/ida", - "label": "Belen" + "href": "http://walsh-osinski.example/alfredo.ondricka", + "label": "Goldwine" }, { - "href": "http://bergstrom-hoppe.test/chester", - "label": "Saradas Brandybuck" + "href": "http://lind-koelpin.test/wilfred_beatty", + "label": "Lindir" }, { - "href": "http://braun.test/tammara.hegmann", - "label": "Wulf" + "href": "http://okon-cronin.test/tinisha.ferry", + "label": "Túrin" }, { - "href": "http://skiles.example/venita.moen", - "label": "Lindir" + "href": "http://tromp-balistreri.example/lilla_oconnell", + "label": "Ulfast" } ], "value_checks": null, "remediation_available": false, - "rule_group_id": "60ad3dd4-6079-4a40-bbc9-6457db060595", + "rule_group_id": "39e6d695-1ca2-432f-b7bb-43a04bddd065", "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 4a3634c3-af60-4a62-bdd9-e094ca7d9197" ] }, "summary": "", @@ -6665,7 +6665,7 @@ "tags": [ "Content" ], - "description": "Lists Security Guides", + "description": "Retrieve a list of all SCAP guides.", "operationId": "SecurityGuides", "responses": { "200": { @@ -6677,92 +6677,92 @@ "value": { "data": [ { - "id": "1f36243b-a7c8-4799-8241-2cd45f53d44d", + "id": "020ec2d1-6718-4188-87be-15a7c8746556", "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": "Unde pariatur recusandae qui.", + "version": "100.83.2", + "description": "Cumque nam ad. Quibusdam alias voluptatem. Neque illum velit.", "os_major_version": 7, "type": "security_guide" }, { - "id": "277087b6-5cb0-420d-9476-0d093dc03fde", + "id": "02b46424-e618-4cf2-86bf-510a8c8dfdce", "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": "Non quasi dicta ut.", + "version": "100.83.4", + "description": "Nostrum impedit voluptatem. At eveniet temporibus. Delectus sapiente quam.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2a67608f-cc17-4ec4-91c7-3e43231fedf9", + "id": "10de97fe-23b6-409f-b990-20059b9d69fa", "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": "Rerum dolorem quasi laudantium.", + "version": "100.82.47", + "description": "Odio qui magni. Cum corrupti maxime. Dolore qui animi.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2acd42f5-57e5-4e58-83fe-f45d83a54f1c", + "id": "14f2a9ca-ab99-4f59-80d9-2b0a1b18345d", "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": "Omnis quos et id.", + "version": "100.83.9", + "description": "Omnis reiciendis iure. Esse architecto quo. Dolor ut dolores.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2c1afb67-f8db-4e1f-9650-313d64799525", + "id": "3a85280f-f585-4a0f-8248-d9ee3f43f7ad", "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": "Laboriosam voluptatem molestiae recusandae.", + "version": "100.83.3", + "description": "Totam quia ut. Rerum laudantium provident. Laudantium vel eum.", "os_major_version": 7, "type": "security_guide" }, { - "id": "31cbe5a6-fbcd-4158-bf51-b45e945bfa35", + "id": "47714e0a-e033-4009-be09-e1222ca2d519", "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": "Autem explicabo fuga soluta.", + "version": "100.83.6", + "description": "Sint debitis voluptatibus. Quis non ipsa. Vel vel iste.", "os_major_version": 7, "type": "security_guide" }, { - "id": "36f43103-08fc-4da1-9f8c-250bdbc78a7c", + "id": "61ee26a4-bcde-49e6-8a8e-82b5e082e1cb", "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": "Quod ipsum corrupti reiciendis.", + "version": "100.82.49", + "description": "Et nemo ullam. Repellat eos et. Aut facilis reprehenderit.", "os_major_version": 7, "type": "security_guide" }, { - "id": "37fbc483-1987-43c9-b54c-005d638e665a", + "id": "6550f720-8836-4c2c-9f85-6d385a75160b", "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": "Expedita blanditiis et non.", + "version": "100.82.40", + "description": "Sunt numquam est. Corporis autem laboriosam. Quis saepe provident.", "os_major_version": 7, "type": "security_guide" }, { - "id": "39d34175-1cec-421c-b169-0814db72491f", + "id": "7105f858-b374-4861-b726-7d175c403b86", "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": "Qui modi a laborum.", + "version": "100.82.43", + "description": "Aliquam molestiae consequatur. Eveniet et omnis. Voluptatibus in perspiciatis.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3e9254d2-892c-4d85-84d0-8f5790e8bc64", + "id": "850d72f9-a2cc-4a03-92ad-36cf95499dd8", "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": "Sed doloremque mollitia sit.", + "version": "100.83.10", + "description": "Natus maiores a. Temporibus neque assumenda. Nisi voluptatem deserunt.", "os_major_version": 7, "type": "security_guide" } @@ -6785,92 +6785,92 @@ "value": { "data": [ { - "id": "0ef211e4-6fcf-4293-b70e-8b001aed753f", + "id": "018946bf-f0e3-44a7-a9a1-579be89dfbb1", "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": "Animi exercitationem repudiandae necessitatibus.", + "version": "100.83.38", + "description": "Harum sed amet. Expedita soluta cumque. Consequatur corporis doloremque.", "os_major_version": 7, "type": "security_guide" }, { - "id": "13d12202-1e22-44fe-8e26-a16229b4184b", + "id": "143ba7d6-e8a7-4465-aca8-5926646744fc", "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": "Earum est voluptatem incidunt.", + "version": "100.83.26", + "description": "Sunt sunt commodi. In dolor hic. Non qui ab.", "os_major_version": 7, "type": "security_guide" }, { - "id": "16ee9f0b-d454-436f-af05-d32694b9a30d", + "id": "16336b4f-cba6-41bd-ab05-fd3720a453d0", "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": "Minima et qui aut.", + "version": "100.83.27", + "description": "Dicta explicabo possimus. Est modi nostrum. Omnis totam molestiae.", "os_major_version": 7, "type": "security_guide" }, { - "id": "1874fe00-fcb5-4ec1-85a1-a5201569f4d4", + "id": "16b8e80e-aa59-4a27-9dd4-bcacd1a173cf", "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": "Fuga ratione nam repellat.", + "version": "100.83.36", + "description": "Accusamus qui et. Soluta eum velit. Similique itaque quia.", "os_major_version": 7, "type": "security_guide" }, { - "id": "28c4c716-1539-48fb-a2d7-ed24f0b74501", + "id": "16cf83d7-39bc-4729-b439-60748c455b25", "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": "Ut et corporis quis.", + "version": "100.83.22", + "description": "Consequatur minima et. Sed deserunt eum. Ut labore non.", "os_major_version": 7, "type": "security_guide" }, { - "id": "366f8eb2-72ee-44e4-b310-f1176ad3b17b", + "id": "1edef81b-5dc3-4203-b13f-20f9f37ea4b7", "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": "Qui omnis ut repellat.", + "version": "100.83.18", + "description": "Iste aut corporis. Voluptatem illo optio. Tempora nulla qui.", "os_major_version": 7, "type": "security_guide" }, { - "id": "37611189-e6b5-4993-a280-57343dca5759", + "id": "268f7d64-43e4-4b71-b78b-4b7ba09cbeeb", "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": "Ut numquam est nihil.", + "version": "100.83.25", + "description": "Inventore aut voluptates. Ab aut atque. Autem et sed.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3777629a-d727-477c-b625-371ddae4a4f6", + "id": "294c20ff-aae9-4124-b0c0-bfc44063ce79", "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": "Voluptatem sequi iusto alias.", + "version": "100.83.34", + "description": "Ut molestias iure. Rerum explicabo et. Molestiae quod modi.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3a1f6776-b18f-4b1b-a473-e18c7a484d0b", + "id": "2a7ac4c1-97a5-4a17-a40c-f7d9bdb10edb", "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": "Perspiciatis est eum in.", + "version": "100.83.33", + "description": "Illum non earum. Ipsum in nobis. Quis hic quis.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3b5cc151-f641-4cc4-bcc2-596d18c18dd6", + "id": "31f5feff-1b09-41ff-ac71-0b2de64d8ff4", "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": "Cumque neque voluptatem consectetur.", + "version": "100.83.16", + "description": "Optio molestias fugiat. Et vel eum. Dolor soluta tenetur.", "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": "1df936bf-b65f-4672-a179-7e0a0ec1efcf", "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": "Aut nesciunt facere repudiandae.", + "version": "100.85.39", + "description": "Illum perspiciatis suscipit. Ratione sequi qui. Id eum aut.", "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 3afe2eab-9a35-4c68-83c5-ca8864174803" ] }, "summary": "", @@ -7142,101 +7142,101 @@ "Returns the Rule Tree of a Security Guide": { "value": [ { - "id": "66a80e86-5a30-4b06-acb5-03a1cd57f970", + "id": "9ef18a73-c4a6-4d84-a1e6-acf3c8aaa0d6", "type": "rule_group", "children": [ { - "id": "7061bc06-604d-4165-8041-594d014b17d3", + "id": "e867cfd9-955c-4431-8268-307fcb8c35da", "type": "rule" } ] }, { - "id": "251193c6-4f5e-4364-ab70-17d60955d4fb", + "id": "bd7c8675-7076-4083-8a44-b3fdfeba43fb", "type": "rule_group", "children": [ { - "id": "022dd922-e8e4-4558-80ed-3a4c2d315b05", + "id": "777dcb0e-c746-4f11-9a5a-2f9ff1f53117", "type": "rule" } ] }, { - "id": "875dee30-029f-4768-ba53-939ca359a9e9", + "id": "903c43fa-30b7-4eed-b251-401a971bb21c", "type": "rule_group", "children": [ { - "id": "a39b6a9c-a86e-4938-b8e5-3599323bc452", + "id": "cb3495b9-d37e-4ea5-be7f-9249cd3cfdbf", "type": "rule" } ] }, { - "id": "6ba5be1b-1c53-4ae1-8d03-e5a8cb37a5dc", + "id": "914ae979-fc4b-428d-b5ae-2e050700a388", "type": "rule_group", "children": [ { - "id": "b7d36521-d867-415a-95a1-0af184a82a97", + "id": "8898220d-4009-41bd-ba59-82e76579d9f6", "type": "rule" } ] }, { - "id": "38dd3198-170f-491f-912b-c3dbbf14be4d", + "id": "270cbbb4-18da-4dcf-9b3b-00b747c1867d", "type": "rule_group", "children": [ { - "id": "150cafbc-b864-4370-877a-6ace94be22c2", + "id": "fcc47545-9313-4446-bb37-af8a37d03857", "type": "rule" } ] }, { - "id": "d72c33ce-5954-4c41-b4d6-3434ffdf909d", + "id": "dce05ba7-4fbd-43e8-a126-169d73e56870", "type": "rule_group", "children": [ { - "id": "bff1b757-fbb6-430e-8ba6-343f13d5530a", + "id": "6eab4b37-e0c0-4015-9bc3-a24d1e31a3e0", "type": "rule" } ] }, { - "id": "841b5559-3759-4418-83c6-ac1e8416dd53", + "id": "265ef522-dc5c-493a-b572-09e2eba3e608", "type": "rule_group", "children": [ { - "id": "596e82e3-a161-47d3-a5e0-a8d2ee6b523f", + "id": "d18897f0-8073-4561-b82a-769bbf79dcea", "type": "rule" } ] }, { - "id": "022fe488-31e6-4bf0-969e-9e7abc6a6467", + "id": "7336a8ba-265d-44bf-825b-85efa9a5e4a6", "type": "rule_group", "children": [ { - "id": "ec13b753-5212-412e-9657-23795f4b1f86", + "id": "65577525-3944-4e2a-bbee-14fbcb85d3c3", "type": "rule" } ] }, { - "id": "668c1dc7-f7fe-4dce-b3d8-d74ee3a2ca46", + "id": "b1a1decf-6ced-485e-b586-4016d108c640", "type": "rule_group", "children": [ { - "id": "0f1ead19-7bff-4afb-8e1c-53d73f317265", + "id": "fc9576e7-0a02-40f7-9573-d044dd34e5d2", "type": "rule" } ] }, { - "id": "04d628b1-2cf3-4141-93d0-78cbe634eea5", + "id": "cc9ccd68-29f9-4a3e-a01f-c2370c396f15", "type": "rule_group", "children": [ { - "id": "5153e2d7-ac31-40a3-85d0-dafc33880598", + "id": "4397e290-85c2-4a6c-891a-ac0048b5a45b", "type": "rule" } ] @@ -7260,7 +7260,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 e2c3dc16-522f-4b13-8fbc-2d1650a1901a" ] }, "summary": "", @@ -7355,7 +7355,7 @@ "tags": [ "Content" ], - "description": "Lists Supported Profiles", + "description": "Retrieve the list of profiles supported by particular RHEL versions.", "operationId": "SupportedProfiles", "responses": { "200": { @@ -7367,12 +7367,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": "34db530c-6f35-4fdb-8784-5ebb86121459", + "title": "Odit ullam cumque sapiente.", + "description": "Id perspiciatis animi. Nesciunt esse voluptas. A adipisci qui.", + "ref_id": "xccdf_org.ssgproject.content_profile_79953546606d006a89492a03f21f1112", + "security_guide_id": "2ed5ec20-9c3f-4bb3-934b-3f369bb4862e", + "security_guide_version": "100.86.22", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7399,12 +7399,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": "71f1b69c-bfba-42da-a09b-c0722394b9da", + "title": "Quis saepe et veniam.", + "description": "Sed consequatur quos. Dolorum magnam ea. Laborum quis quae.", + "ref_id": "xccdf_org.ssgproject.content_profile_30c9c75324d4a7e5a7f59ed593d373ec", + "security_guide_id": "3a1e5a2b-1c35-4aa1-906d-eb158512a94a", + "security_guide_version": "100.86.23", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7600,7 +7600,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 +7612,39 @@ "value": { "data": [ { - "id": "3176845b-221b-40e5-bd01-656c5f137804", - "display_name": "walter.example", + "id": "08755c5d-da8f-4946-bbfe-de9a5d90c3d4", + "display_name": "bergnaum.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-06T20:51:07.338Z", + "stale_timestamp": "2034-11-22T20:51:07.338Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.338Z", + "updated": "2024-11-22T20:51:07.338Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "neural", - "namespace": "generating" + "key": "protocol", + "value": "virtual", + "namespace": "transmitting" }, { - "key": "capacitor", - "value": "solid state", + "key": "card", + "value": "multi-byte", "namespace": "bypassing" }, { - "key": "monitor", - "value": "mobile", + "key": "firewall", + "value": "solid state", "namespace": "quantifying" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "indexing" + "key": "interface", + "value": "redundant", + "namespace": "generating" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "programming" + "key": "microchip", + "value": "virtual", + "namespace": "connecting" } ], "type": "system", @@ -7653,39 +7653,39 @@ "policies": [] }, { - "id": "4b78f7fb-21c2-4141-9de4-d579781ae217", - "display_name": "hoeger.test", + "id": "189ed2ce-fbca-46c9-b573-9dba8cdfcece", + "display_name": "bogisich-douglas.example", "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-06T20:51:07.335Z", + "stale_timestamp": "2034-11-22T20:51:07.335Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.335Z", + "updated": "2024-11-22T20:51:07.335Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "neural", - "namespace": "indexing" - }, - { - "key": "panel", - "value": "virtual", + "key": "driver", + "value": "mobile", "namespace": "parsing" }, { - "key": "interface", - "value": "open-source", - "namespace": "parsing" + "key": "protocol", + "value": "solid state", + "namespace": "programming" }, { - "key": "bandwidth", - "value": "1080p", + "key": "panel", + "value": "virtual", "namespace": "calculating" }, { - "key": "pixel", + "key": "application", "value": "wireless", - "namespace": "quantifying" + "namespace": "overriding" + }, + { + "key": "card", + "value": "neural", + "namespace": "hacking" } ], "type": "system", @@ -7694,39 +7694,39 @@ "policies": [] }, { - "id": "5cbfce9a-969e-4eb1-860a-11357f3a29ca", - "display_name": "christiansen.example", + "id": "2761bb35-6eda-424b-9fff-7b85e89a8e95", + "display_name": "frami-bauch.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-06T20:51:07.328Z", + "stale_timestamp": "2034-11-22T20:51:07.328Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.328Z", + "updated": "2024-11-22T20:51:07.328Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "online", - "namespace": "transmitting" + "key": "port", + "value": "haptic", + "namespace": "navigating" }, { - "key": "card", - "value": "optical", - "namespace": "parsing" + "key": "alarm", + "value": "virtual", + "namespace": "copying" }, { - "key": "card", - "value": "mobile", - "namespace": "indexing" + "key": "port", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "back-end", - "namespace": "synthesizing" + "key": "program", + "value": "open-source", + "namespace": "programming" }, { - "key": "alarm", - "value": "cross-platform", - "namespace": "generating" + "key": "driver", + "value": "haptic", + "namespace": "parsing" } ], "type": "system", @@ -7735,39 +7735,39 @@ "policies": [] }, { - "id": "5d6199d2-498b-4585-ac8d-098f898c61a1", - "display_name": "emmerich.example", + "id": "3e403c7d-0c26-4ebd-b572-23f7905a3a11", + "display_name": "jerde.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-06T20:51:07.337Z", + "stale_timestamp": "2034-11-22T20:51:07.337Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.337Z", + "updated": "2024-11-22T20:51:07.337Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "online", - "namespace": "copying" + "key": "system", + "value": "primary", + "namespace": "overriding" }, { - "key": "firewall", - "value": "haptic", - "namespace": "programming" + "key": "hard drive", + "value": "back-end", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "multi-byte", - "namespace": "programming" + "key": "pixel", + "value": "digital", + "namespace": "backing up" }, { - "key": "application", - "value": "primary", - "namespace": "navigating" + "key": "system", + "value": "online", + "namespace": "overriding" }, { - "key": "bandwidth", - "value": "solid state", - "namespace": "copying" + "key": "card", + "value": "mobile", + "namespace": "hacking" } ], "type": "system", @@ -7776,39 +7776,39 @@ "policies": [] }, { - "id": "713c7613-abfd-41a7-85dc-984e641dbc1e", - "display_name": "crist-mckenzie.example", + "id": "3f818ce0-6a0e-4a61-a502-0049803c9bd2", + "display_name": "brown.test", "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-06T20:51:07.328Z", + "stale_timestamp": "2034-11-22T20:51:07.328Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.328Z", + "updated": "2024-11-22T20:51:07.328Z", "insights_id": null, "tags": [ { - "key": "monitor", + "key": "feed", "value": "primary", "namespace": "calculating" }, { - "key": "capacitor", - "value": "bluetooth", - "namespace": "navigating" + "key": "monitor", + "value": "mobile", + "namespace": "hacking" }, { - "key": "port", - "value": "digital", - "namespace": "compressing" + "key": "sensor", + "value": "optical", + "namespace": "indexing" }, { - "key": "transmitter", - "value": "cross-platform", - "namespace": "compressing" + "key": "bus", + "value": "virtual", + "namespace": "bypassing" }, { - "key": "feed", - "value": "auxiliary", - "namespace": "generating" + "key": "pixel", + "value": "primary", + "namespace": "navigating" } ], "type": "system", @@ -7817,39 +7817,39 @@ "policies": [] }, { - "id": "78b27c7f-2c73-44e0-adfc-95c3832f5c88", - "display_name": "renner.example", + "id": "42599dde-68e1-4626-8502-9b2650039749", + "display_name": "crooks-prohaska.test", "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-06T20:51:07.327Z", + "stale_timestamp": "2034-11-22T20:51:07.327Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.327Z", + "updated": "2024-11-22T20:51:07.327Z", "insights_id": null, "tags": [ { - "key": "microchip", + "key": "program", "value": "cross-platform", - "namespace": "backing up" + "namespace": "overriding" }, { - "key": "bus", - "value": "1080p", - "namespace": "backing up" + "key": "matrix", + "value": "solid state", + "namespace": "parsing" }, { - "key": "port", - "value": "haptic", - "namespace": "bypassing" + "key": "capacitor", + "value": "wireless", + "namespace": "connecting" }, { - "key": "card", - "value": "auxiliary", - "namespace": "programming" + "key": "port", + "value": "optical", + "namespace": "calculating" }, { - "key": "panel", - "value": "neural", - "namespace": "quantifying" + "key": "transmitter", + "value": "redundant", + "namespace": "copying" } ], "type": "system", @@ -7858,39 +7858,39 @@ "policies": [] }, { - "id": "7edd6a72-7415-4a04-9997-9044f6f6f595", - "display_name": "leuschke.example", + "id": "44083a6f-4010-4a74-a551-a32e0e9fab89", + "display_name": "koss.test", "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-06T20:51:07.347Z", + "stale_timestamp": "2034-11-22T20:51:07.347Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.347Z", + "updated": "2024-11-22T20:51:07.347Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "haptic", - "namespace": "parsing" + "key": "card", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "array", - "value": "cross-platform", + "key": "bandwidth", + "value": "optical", "namespace": "calculating" }, { - "key": "array", - "value": "redundant", - "namespace": "compressing" + "key": "driver", + "value": "digital", + "namespace": "backing up" }, { - "key": "circuit", - "value": "bluetooth", - "namespace": "hacking" + "key": "card", + "value": "virtual", + "namespace": "compressing" }, { - "key": "system", - "value": "cross-platform", - "namespace": "copying" + "key": "driver", + "value": "1080p", + "namespace": "quantifying" } ], "type": "system", @@ -7899,39 +7899,39 @@ "policies": [] }, { - "id": "86c8d994-f041-4e57-b90c-66832b5c368b", - "display_name": "cormier.example", + "id": "46ab2a76-1a4c-4f25-b5b2-9599585f686e", + "display_name": "shields.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-06T20:51:07.343Z", + "stale_timestamp": "2034-11-22T20:51:07.343Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.343Z", + "updated": "2024-11-22T20:51:07.343Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "mobile", - "namespace": "transmitting" + "key": "bus", + "value": "neural", + "namespace": "quantifying" }, { - "key": "panel", - "value": "wireless", - "namespace": "bypassing" + "key": "feed", + "value": "bluetooth", + "namespace": "programming" }, { - "key": "bus", - "value": "auxiliary", - "namespace": "programming" + "key": "driver", + "value": "redundant", + "namespace": "synthesizing" }, { - "key": "protocol", - "value": "neural", - "namespace": "copying" + "key": "panel", + "value": "auxiliary", + "namespace": "bypassing" }, { - "key": "pixel", - "value": "wireless", - "namespace": "navigating" + "key": "hard drive", + "value": "optical", + "namespace": "transmitting" } ], "type": "system", @@ -7940,39 +7940,39 @@ "policies": [] }, { - "id": "87207173-b477-46df-8a6d-7b5f76d4e717", - "display_name": "douglas.example", + "id": "4c691e6f-30aa-4fb1-895a-0e02bbfcf0ca", + "display_name": "buckridge.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-06T20:51:07.339Z", + "stale_timestamp": "2034-11-22T20:51:07.339Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.339Z", + "updated": "2024-11-22T20:51:07.339Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "digital", - "namespace": "hacking" + "key": "matrix", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "monitor", - "value": "solid state", - "namespace": "connecting" + "key": "feed", + "value": "back-end", + "namespace": "compressing" }, { "key": "circuit", - "value": "redundant", - "namespace": "parsing" + "value": "online", + "namespace": "quantifying" }, { - "key": "firewall", - "value": "neural", - "namespace": "programming" + "key": "capacitor", + "value": "back-end", + "namespace": "copying" }, { - "key": "microchip", - "value": "digital", - "namespace": "hacking" + "key": "firewall", + "value": "haptic", + "namespace": "generating" } ], "type": "system", @@ -7981,39 +7981,39 @@ "policies": [] }, { - "id": "90ce8a84-a2ff-47c6-8ed0-83c80ac34bb3", - "display_name": "wisoky.test", + "id": "4e8b52f0-b0ef-45a5-ba31-87a1012a2cc9", + "display_name": "hoppe.example", "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-06T20:51:07.344Z", + "stale_timestamp": "2034-11-22T20:51:07.344Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.344Z", + "updated": "2024-11-22T20:51:07.344Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "bluetooth", - "namespace": "connecting" + "key": "protocol", + "value": "auxiliary", + "namespace": "backing up" }, { - "key": "firewall", - "value": "solid state", - "namespace": "backing up" + "key": "protocol", + "value": "virtual", + "namespace": "navigating" }, { "key": "pixel", - "value": "auxiliary", + "value": "back-end", "namespace": "compressing" }, { - "key": "sensor", - "value": "redundant", - "namespace": "calculating" + "key": "feed", + "value": "auxiliary", + "namespace": "compressing" }, { - "key": "port", - "value": "mobile", - "namespace": "programming" + "key": "bandwidth", + "value": "wireless", + "namespace": "connecting" } ], "type": "system", @@ -8041,39 +8041,39 @@ "value": { "data": [ { - "id": "151f9b01-59f9-487c-98a7-a6d122ce58bf", - "display_name": "terry.example", + "id": "00d86a44-b026-404d-af38-6c7e005661c8", + "display_name": "crooks.example", "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-06T20:51:07.376Z", + "stale_timestamp": "2034-11-22T20:51:07.376Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.376Z", + "updated": "2024-11-22T20:51:07.376Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "cross-platform", - "namespace": "compressing" - }, - { - "key": "alarm", + "key": "firewall", "value": "multi-byte", "namespace": "overriding" }, { - "key": "interface", - "value": "primary", - "namespace": "hacking" + "key": "system", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "microchip", - "value": "optical", - "namespace": "navigating" + "key": "feed", + "value": "online", + "namespace": "hacking" }, { - "key": "monitor", + "key": "transmitter", "value": "cross-platform", - "namespace": "overriding" + "namespace": "connecting" + }, + { + "key": "protocol", + "value": "1080p", + "namespace": "hacking" } ], "type": "system", @@ -8082,39 +8082,39 @@ "policies": [] }, { - "id": "1571019a-9da0-4116-ab9b-25df117f721a", - "display_name": "champlin.example", + "id": "0e4acc4d-556b-4307-87ff-ec00609a4fac", + "display_name": "steuber.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-06T20:51:07.373Z", + "stale_timestamp": "2034-11-22T20:51:07.373Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.373Z", + "updated": "2024-11-22T20:51:07.373Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "1080p", - "namespace": "indexing" + "key": "driver", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "panel", - "value": "wireless", - "namespace": "connecting" + "key": "pixel", + "value": "redundant", + "namespace": "backing up" }, { - "key": "capacitor", - "value": "open-source", - "namespace": "indexing" + "key": "array", + "value": "online", + "namespace": "transmitting" }, { - "key": "matrix", - "value": "virtual", - "namespace": "transmitting" + "key": "alarm", + "value": "back-end", + "namespace": "overriding" }, { - "key": "pixel", - "value": "primary", - "namespace": "quantifying" + "key": "matrix", + "value": "virtual", + "namespace": "navigating" } ], "type": "system", @@ -8123,39 +8123,39 @@ "policies": [] }, { - "id": "18931741-6e9a-4e0c-9e30-6e803d22befe", - "display_name": "dibbert.test", + "id": "15cab0b5-254d-4aeb-98b1-505eb592a18e", + "display_name": "wisoky.example", "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-06T20:51:07.370Z", + "stale_timestamp": "2034-11-22T20:51:07.370Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.370Z", + "updated": "2024-11-22T20:51:07.370Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "virtual", - "namespace": "transmitting" + "key": "protocol", + "value": "haptic", + "namespace": "copying" }, { - "key": "card", + "key": "sensor", "value": "mobile", - "namespace": "copying" + "namespace": "navigating" }, { - "key": "interface", - "value": "multi-byte", - "namespace": "programming" + "key": "system", + "value": "digital", + "namespace": "bypassing" }, { - "key": "feed", + "key": "system", "value": "redundant", - "namespace": "overriding" + "namespace": "programming" }, { - "key": "interface", - "value": "multi-byte", - "namespace": "quantifying" + "key": "monitor", + "value": "neural", + "namespace": "indexing" } ], "type": "system", @@ -8164,39 +8164,39 @@ "policies": [] }, { - "id": "1bc6b2ce-17dd-4446-833a-ca2e7b0d27dd", - "display_name": "bernier.example", + "id": "29166ade-c306-40c3-9e53-923309665b1b", + "display_name": "braun.example", "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-06T20:51:07.369Z", + "stale_timestamp": "2034-11-22T20:51:07.369Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.369Z", + "updated": "2024-11-22T20:51:07.369Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "mobile", - "namespace": "compressing" + "key": "protocol", + "value": "online", + "namespace": "quantifying" }, { - "key": "feed", + "key": "array", "value": "back-end", - "namespace": "generating" + "namespace": "connecting" }, { - "key": "port", - "value": "bluetooth", - "namespace": "transmitting" + "key": "feed", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "system", - "value": "open-source", - "namespace": "synthesizing" + "key": "bus", + "value": "1080p", + "namespace": "generating" }, { - "key": "system", - "value": "multi-byte", - "namespace": "parsing" + "key": "capacitor", + "value": "wireless", + "namespace": "bypassing" } ], "type": "system", @@ -8205,39 +8205,39 @@ "policies": [] }, { - "id": "240b7be3-2d69-4f7e-86b2-f378f85ac8d9", - "display_name": "mclaughlin.example", + "id": "2eca7724-29aa-466d-a9ea-01f17f3eb330", + "display_name": "gusikowski.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-06T20:51:07.384Z", + "stale_timestamp": "2034-11-22T20:51:07.384Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.384Z", + "updated": "2024-11-22T20:51:07.384Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "mobile", - "namespace": "generating" + "key": "bandwidth", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "firewall", + "key": "bandwidth", "value": "multi-byte", - "namespace": "synthesizing" + "namespace": "quantifying" }, { - "key": "bandwidth", - "value": "optical", - "namespace": "compressing" + "key": "circuit", + "value": "digital", + "namespace": "connecting" }, { - "key": "port", - "value": "optical", - "namespace": "navigating" + "key": "application", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "back-end", - "namespace": "hacking" + "key": "bandwidth", + "value": "open-source", + "namespace": "synthesizing" } ], "type": "system", @@ -8246,39 +8246,39 @@ "policies": [] }, { - "id": "2a56d52b-0808-4fe0-81df-1775ba8c3b8f", - "display_name": "marvin.example", + "id": "31b552fb-7867-4cbc-b95e-0c89bee6320a", + "display_name": "hessel.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-06T20:51:07.377Z", + "stale_timestamp": "2034-11-22T20:51:07.377Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.377Z", + "updated": "2024-11-22T20:51:07.377Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "multi-byte", - "namespace": "quantifying" + "key": "bandwidth", + "value": "wireless", + "namespace": "connecting" }, { - "key": "port", - "value": "mobile", - "namespace": "compressing" + "key": "system", + "value": "virtual", + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "bluetooth", - "namespace": "indexing" + "key": "matrix", + "value": "primary", + "namespace": "compressing" }, { - "key": "system", - "value": "optical", - "namespace": "overriding" + "key": "firewall", + "value": "redundant", + "namespace": "copying" }, { - "key": "firewall", - "value": "neural", - "namespace": "connecting" + "key": "protocol", + "value": "wireless", + "namespace": "copying" } ], "type": "system", @@ -8287,39 +8287,39 @@ "policies": [] }, { - "id": "430aa75d-9003-4c99-97c4-928ac140f012", - "display_name": "oberbrunner-greenholt.example", + "id": "4abfaefb-79d7-4c18-9099-c179d2eb6337", + "display_name": "bogan.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-06T20:51:07.385Z", + "stale_timestamp": "2034-11-22T20:51:07.385Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.385Z", + "updated": "2024-11-22T20:51:07.385Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "mobile", - "namespace": "bypassing" + "key": "pixel", + "value": "neural", + "namespace": "backing up" }, { - "key": "program", - "value": "optical", - "namespace": "synthesizing" + "key": "hard drive", + "value": "redundant", + "namespace": "compressing" }, { - "key": "pixel", - "value": "haptic", - "namespace": "connecting" + "key": "port", + "value": "cross-platform", + "namespace": "transmitting" }, { - "key": "interface", - "value": "primary", - "namespace": "backing up" + "key": "system", + "value": "1080p", + "namespace": "compressing" }, { - "key": "interface", - "value": "cross-platform", - "namespace": "overriding" + "key": "port", + "value": "multi-byte", + "namespace": "indexing" } ], "type": "system", @@ -8328,38 +8328,38 @@ "policies": [] }, { - "id": "4c338e9f-ff95-4937-a9c7-6e06dcc4b1b9", - "display_name": "dicki.example", + "id": "59ad87d7-f962-45e3-b436-a615a640f874", + "display_name": "collins.example", "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-06T20:51:07.389Z", + "stale_timestamp": "2034-11-22T20:51:07.389Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.389Z", + "updated": "2024-11-22T20:51:07.389Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "multi-byte", - "namespace": "parsing" + "key": "capacitor", + "value": "wireless", + "namespace": "calculating" }, { - "key": "microchip", - "value": "virtual", - "namespace": "quantifying" + "key": "monitor", + "value": "solid state", + "namespace": "parsing" }, { - "key": "pixel", - "value": "digital", - "namespace": "connecting" + "key": "transmitter", + "value": "primary", + "namespace": "generating" }, { - "key": "panel", - "value": "virtual", - "namespace": "compressing" + "key": "application", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "driver", - "value": "solid state", + "key": "firewall", + "value": "redundant", "namespace": "transmitting" } ], @@ -8369,39 +8369,39 @@ "policies": [] }, { - "id": "4c47ac95-2f8e-46fc-a149-1085fb4ee0f8", - "display_name": "hills.example", + "id": "65370904-19de-43ba-8dac-3a477c76dc09", + "display_name": "miller.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-06T20:51:07.386Z", + "stale_timestamp": "2034-11-22T20:51:07.386Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.386Z", + "updated": "2024-11-22T20:51:07.386Z", "insights_id": null, "tags": [ - { - "key": "alarm", - "value": "back-end", - "namespace": "bypassing" - }, { "key": "capacitor", - "value": "1080p", - "namespace": "quantifying" + "value": "neural", + "namespace": "overriding" }, { - "key": "sensor", - "value": "virtual", - "namespace": "programming" + "key": "interface", + "value": "open-source", + "namespace": "backing up" }, { - "key": "monitor", - "value": "solid state", - "namespace": "parsing" + "key": "driver", + "value": "multi-byte", + "namespace": "compressing" }, { - "key": "pixel", - "value": "haptic", + "key": "sensor", + "value": "optical", "namespace": "transmitting" + }, + { + "key": "protocol", + "value": "solid state", + "namespace": "navigating" } ], "type": "system", @@ -8410,39 +8410,39 @@ "policies": [] }, { - "id": "5231c038-2801-4d5c-9db7-4e12a7d3b95b", - "display_name": "runolfsdottir.test", + "id": "7206556c-6048-4548-bb1d-2e6867065aeb", + "display_name": "price.example", "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-06T20:51:07.383Z", + "stale_timestamp": "2034-11-22T20:51:07.383Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.383Z", + "updated": "2024-11-22T20:51:07.383Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "wireless", - "namespace": "overriding" + "key": "program", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "application", - "value": "primary", - "namespace": "overriding" + "key": "capacitor", + "value": "redundant", + "namespace": "hacking" }, { - "key": "card", - "value": "wireless", - "namespace": "generating" + "key": "protocol", + "value": "auxiliary", + "namespace": "overriding" }, { - "key": "microchip", - "value": "digital", - "namespace": "overriding" + "key": "port", + "value": "bluetooth", + "namespace": "navigating" }, { - "key": "panel", - "value": "haptic", - "namespace": "backing up" + "key": "program", + "value": "cross-platform", + "namespace": "indexing" } ], "type": "system", @@ -8471,39 +8471,39 @@ "value": { "data": [ { - "id": "1d5d992f-c5da-498e-aaee-d27853bc7bb7", - "display_name": "wintheiser.test", + "id": "038946b5-28ab-4686-ad55-82a77c393488", + "display_name": "mante.test", "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-06T20:51:07.419Z", + "stale_timestamp": "2034-11-22T20:51:07.419Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.419Z", + "updated": "2024-11-22T20:51:07.419Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "primary", - "namespace": "indexing" + "key": "program", + "value": "virtual", + "namespace": "overriding" }, { - "key": "circuit", - "value": "back-end", + "key": "program", + "value": "optical", "namespace": "transmitting" }, { - "key": "firewall", - "value": "optical", - "namespace": "parsing" + "key": "port", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "1080p", - "namespace": "connecting" + "key": "port", + "value": "digital", + "namespace": "overriding" }, { - "key": "pixel", - "value": "primary", - "namespace": "compressing" + "key": "application", + "value": "haptic", + "namespace": "hacking" } ], "type": "system", @@ -8512,39 +8512,39 @@ "policies": [] }, { - "id": "2a8a832f-0159-4be5-ab44-7c6bbca62e9e", - "display_name": "kassulke-mraz.example", + "id": "0aa58082-6176-41dd-96cf-4daadcd19ca5", + "display_name": "considine.example", "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-06T20:51:07.422Z", + "stale_timestamp": "2034-11-22T20:51:07.422Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.422Z", + "updated": "2024-11-22T20:51:07.423Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "online", - "namespace": "copying" + "key": "transmitter", + "value": "neural", + "namespace": "quantifying" }, { - "key": "panel", - "value": "primary", - "namespace": "transmitting" + "key": "program", + "value": "online", + "namespace": "compressing" }, { - "key": "array", - "value": "solid state", - "namespace": "generating" + "key": "driver", + "value": "back-end", + "namespace": "parsing" }, { - "key": "circuit", - "value": "online", - "namespace": "programming" + "key": "transmitter", + "value": "mobile", + "namespace": "compressing" }, { - "key": "transmitter", - "value": "haptic", - "namespace": "quantifying" + "key": "microchip", + "value": "cross-platform", + "namespace": "transmitting" } ], "type": "system", @@ -8553,39 +8553,39 @@ "policies": [] }, { - "id": "312390b6-5802-414b-b5e2-2429c4ac16ec", - "display_name": "reilly.example", + "id": "15f46df8-3d2c-4274-9ad3-9fe5764807bb", + "display_name": "steuber-mayer.test", "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-06T20:51:07.405Z", + "stale_timestamp": "2034-11-22T20:51:07.405Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.405Z", + "updated": "2024-11-22T20:51:07.405Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "multi-byte", - "namespace": "compressing" + "key": "array", + "value": "open-source", + "namespace": "indexing" }, { - "key": "hard drive", - "value": "cross-platform", - "namespace": "copying" + "key": "alarm", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "array", - "value": "redundant", - "namespace": "overriding" + "key": "bandwidth", + "value": "1080p", + "namespace": "generating" }, { - "key": "card", - "value": "solid state", - "namespace": "connecting" + "key": "array", + "value": "open-source", + "namespace": "overriding" }, { - "key": "array", - "value": "wireless", - "namespace": "calculating" + "key": "sensor", + "value": "back-end", + "namespace": "copying" } ], "type": "system", @@ -8594,39 +8594,39 @@ "policies": [] }, { - "id": "3ae5ef27-a590-4fa4-8a5c-bfaf54269a2d", - "display_name": "weber-waelchi.test", + "id": "30c460e1-0828-4fe6-87d5-cc74705f6241", + "display_name": "mayer.example", "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-06T20:51:07.411Z", + "stale_timestamp": "2034-11-22T20:51:07.411Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.411Z", + "updated": "2024-11-22T20:51:07.412Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "open-source", + "key": "bus", + "value": "solid state", "namespace": "bypassing" }, { - "key": "microchip", - "value": "optical", - "namespace": "indexing" + "key": "port", + "value": "bluetooth", + "namespace": "hacking" }, { - "key": "program", - "value": "solid state", - "namespace": "compressing" + "key": "interface", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "firewall", - "value": "online", + "key": "card", + "value": "auxiliary", "namespace": "navigating" }, { - "key": "system", - "value": "digital", - "namespace": "overriding" + "key": "transmitter", + "value": "cross-platform", + "namespace": "generating" } ], "type": "system", @@ -8635,39 +8635,39 @@ "policies": [] }, { - "id": "3f70e9c1-7a52-45d6-93a8-dd08b19a093e", - "display_name": "howe.example", + "id": "42053a35-da9e-434a-8080-346b182210dd", + "display_name": "labadie.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-06T20:51:07.416Z", + "stale_timestamp": "2034-11-22T20:51:07.416Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.416Z", + "updated": "2024-11-22T20:51:07.416Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "virtual", - "namespace": "connecting" + "key": "feed", + "value": "digital", + "namespace": "bypassing" }, { "key": "capacitor", - "value": "neural", - "namespace": "parsing" + "value": "open-source", + "namespace": "compressing" }, { - "key": "bandwidth", - "value": "digital", + "key": "hard drive", + "value": "open-source", "namespace": "parsing" }, { - "key": "matrix", - "value": "wireless", + "key": "driver", + "value": "haptic", "namespace": "indexing" }, { - "key": "application", - "value": "primary", - "namespace": "quantifying" + "key": "bandwidth", + "value": "digital", + "namespace": "parsing" } ], "type": "system", @@ -8676,38 +8676,38 @@ "policies": [] }, { - "id": "4593a9e6-0883-48e3-863b-f96a5877808a", - "display_name": "treutel-tremblay.example", + "id": "47511586-544b-489e-bd42-baab5c465285", + "display_name": "carter-weissnat.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-06T20:51:07.411Z", + "stale_timestamp": "2034-11-22T20:51:07.411Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.411Z", + "updated": "2024-11-22T20:51:07.411Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "haptic", - "namespace": "bypassing" + "key": "circuit", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "matrix", - "value": "optical", + "key": "bus", + "value": "multi-byte", "namespace": "transmitting" }, { - "key": "port", - "value": "optical", - "namespace": "navigating" + "key": "monitor", + "value": "neural", + "namespace": "generating" }, { - "key": "monitor", - "value": "1080p", - "namespace": "quantifying" + "key": "firewall", + "value": "digital", + "namespace": "connecting" }, { - "key": "circuit", - "value": "back-end", + "key": "firewall", + "value": "virtual", "namespace": "connecting" } ], @@ -8717,39 +8717,39 @@ "policies": [] }, { - "id": "4680c2d9-58a7-4d01-80db-cbf827ea24f8", - "display_name": "hermiston.test", + "id": "59bd6046-2d12-4dae-93ca-661f8e86ce70", + "display_name": "jacobi.example", "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-06T20:51:07.418Z", + "stale_timestamp": "2034-11-22T20:51:07.418Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.418Z", + "updated": "2024-11-22T20:51:07.418Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "haptic", - "namespace": "connecting" + "key": "firewall", + "value": "solid state", + "namespace": "programming" }, { - "key": "panel", - "value": "digital", + "key": "protocol", + "value": "virtual", "namespace": "connecting" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "indexing" + "key": "array", + "value": "multi-byte", + "namespace": "programming" }, { - "key": "application", - "value": "solid state", - "namespace": "quantifying" + "key": "matrix", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "interface", - "value": "optical", - "namespace": "generating" + "key": "panel", + "value": "online", + "namespace": "parsing" } ], "type": "system", @@ -8758,39 +8758,39 @@ "policies": [] }, { - "id": "4b910fd5-5cff-42ce-a844-cc83fe40c5a5", - "display_name": "schultz.example", + "id": "5ae729ca-dfa6-4365-8ff7-9b45fac66a2e", + "display_name": "graham.example", "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-06T20:51:07.414Z", + "stale_timestamp": "2034-11-22T20:51:07.414Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.414Z", + "updated": "2024-11-22T20:51:07.414Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "cross-platform", - "namespace": "copying" + "key": "driver", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "firewall", - "value": "open-source", + "key": "capacitor", + "value": "auxiliary", "namespace": "backing up" }, { "key": "panel", - "value": "multi-byte", - "namespace": "hacking" + "value": "solid state", + "namespace": "compressing" }, { - "key": "pixel", - "value": "open-source", + "key": "capacitor", + "value": "cross-platform", "namespace": "transmitting" }, { - "key": "sensor", - "value": "mobile", - "namespace": "connecting" + "key": "circuit", + "value": "haptic", + "namespace": "hacking" } ], "type": "system", @@ -8799,37 +8799,37 @@ "policies": [] }, { - "id": "638a6c28-e464-4e4f-8272-2bd5117bc4e5", - "display_name": "dubuque-anderson.test", + "id": "673a005a-ec0e-45cf-94b6-e1440ffe83e4", + "display_name": "bechtelar.test", "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-06T20:51:07.423Z", + "stale_timestamp": "2034-11-22T20:51:07.423Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.423Z", + "updated": "2024-11-22T20:51:07.423Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "digital", - "namespace": "bypassing" + "key": "circuit", + "value": "multi-byte", + "namespace": "compressing" }, { - "key": "application", - "value": "online", - "namespace": "backing up" + "key": "alarm", + "value": "redundant", + "namespace": "synthesizing" }, { - "key": "sensor", - "value": "online", - "namespace": "bypassing" + "key": "firewall", + "value": "digital", + "namespace": "overriding" }, { - "key": "microchip", - "value": "redundant", - "namespace": "transmitting" + "key": "program", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "application", + "key": "card", "value": "virtual", "namespace": "connecting" } @@ -8840,39 +8840,39 @@ "policies": [] }, { - "id": "67f16bca-8ff7-43a2-b242-d64ccb763d89", - "display_name": "bechtelar.test", + "id": "6949c573-27ce-46b6-8bf0-87cf5960a5b9", + "display_name": "boyle.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-06T20:51:07.415Z", + "stale_timestamp": "2034-11-22T20:51:07.415Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.415Z", + "updated": "2024-11-22T20:51:07.415Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "optical", - "namespace": "overriding" + "key": "microchip", + "value": "primary", + "namespace": "transmitting" }, { - "key": "circuit", - "value": "open-source", - "namespace": "quantifying" + "key": "capacitor", + "value": "haptic", + "namespace": "copying" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "quantifying" + "key": "matrix", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "firewall", - "value": "wireless", - "namespace": "synthesizing" + "key": "circuit", + "value": "online", + "namespace": "quantifying" }, { - "key": "capacitor", - "value": "mobile", - "namespace": "calculating" + "key": "sensor", + "value": "optical", + "namespace": "programming" } ], "type": "system", @@ -8980,7 +8980,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 +9033,7 @@ "tags": [ "Systems" ], - "description": "Returns a System", + "description": "Get information about one specific system.", "operationId": "System", "responses": { "200": { @@ -9044,39 +9044,39 @@ "Returns a System": { "value": { "data": { - "id": "f09c0e90-066e-481a-822e-387c5a669f21", - "display_name": "larson-grady.test", + "id": "54f4ed0f-b448-4d55-a8f5-41c3109693ab", + "display_name": "stracke.example", "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-06T20:51:07.550Z", + "stale_timestamp": "2034-11-22T20:51:07.550Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.550Z", + "updated": "2024-11-22T20:51:07.550Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "digital", - "namespace": "backing up" + "key": "panel", + "value": "bluetooth", + "namespace": "quantifying" }, { - "key": "application", - "value": "solid state", - "namespace": "navigating" + "key": "sensor", + "value": "neural", + "namespace": "quantifying" }, { "key": "application", - "value": "open-source", - "namespace": "programming" + "value": "primary", + "namespace": "generating" }, { - "key": "hard drive", - "value": "multi-byte", - "namespace": "transmitting" + "key": "driver", + "value": "virtual", + "namespace": "overriding" }, { - "key": "firewall", - "value": "optical", - "namespace": "parsing" + "key": "panel", + "value": "mobile", + "namespace": "calculating" } ], "type": "system", @@ -9113,7 +9113,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 987136c7-0724-4189-8e73-a2978f97763d" ] }, "summary": "", @@ -9231,7 +9231,7 @@ "tags": [ "Policies" ], - "description": "Lists Systems assigned to a Policy", + "description": "This is a list of all systems assigned to a specific policy.", "operationId": "PolicySystems", "responses": { "200": { @@ -9243,39 +9243,39 @@ "value": { "data": [ { - "id": "148faa27-8097-49da-b7ba-407e012596e6", - "display_name": "hilll.example", + "id": "010099b4-237b-4435-a9fb-a1f8e1d21524", + "display_name": "bosco-waelchi.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-06T20:51:07.637Z", + "stale_timestamp": "2034-11-22T20:51:07.637Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.637Z", + "updated": "2024-11-22T20:51:07.637Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "auxiliary", - "namespace": "programming" + "key": "alarm", + "value": "mobile", + "namespace": "hacking" }, { - "key": "firewall", - "value": "digital", - "namespace": "indexing" + "key": "card", + "value": "mobile", + "namespace": "parsing" }, { - "key": "port", - "value": "online", - "namespace": "indexing" + "key": "circuit", + "value": "back-end", + "namespace": "parsing" }, { - "key": "feed", - "value": "haptic", - "namespace": "overriding" + "key": "bus", + "value": "online", + "namespace": "backing up" }, { - "key": "interface", - "value": "digital", - "namespace": "synthesizing" + "key": "alarm", + "value": "redundant", + "namespace": "parsing" } ], "type": "system", @@ -9283,39 +9283,39 @@ "os_minor_version": 0 }, { - "id": "18545cdf-9c04-4bd4-bf42-663172ff77c4", - "display_name": "kautzer.example", + "id": "034b612b-a48e-4a64-9a44-b8cf3732d577", + "display_name": "sporer.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-06T20:51:07.712Z", + "stale_timestamp": "2034-11-22T20:51:07.712Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.712Z", + "updated": "2024-11-22T20:51:07.712Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "primary", - "namespace": "overriding" + "key": "firewall", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "interface", - "value": "open-source", - "namespace": "parsing" + "key": "transmitter", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "pixel", - "value": "redundant", - "namespace": "transmitting" + "key": "port", + "value": "1080p", + "namespace": "generating" }, { - "key": "feed", - "value": "redundant", - "namespace": "transmitting" + "key": "port", + "value": "optical", + "namespace": "backing up" }, { - "key": "firewall", - "value": "digital", - "namespace": "programming" + "key": "monitor", + "value": "mobile", + "namespace": "connecting" } ], "type": "system", @@ -9323,38 +9323,38 @@ "os_minor_version": 0 }, { - "id": "1fd351e5-271d-4e23-8eed-c87f977082d8", - "display_name": "robel.example", + "id": "03ef3a0a-5acc-4541-a81f-92957fafc770", + "display_name": "leuschke.example", "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-06T20:51:07.667Z", + "stale_timestamp": "2034-11-22T20:51:07.667Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.667Z", + "updated": "2024-11-22T20:51:07.667Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "neural", - "namespace": "navigating" - }, - { - "key": "array", - "value": "primary", - "namespace": "generating" + "key": "port", + "value": "1080p", + "namespace": "programming" }, { - "key": "array", - "value": "back-end", + "key": "port", + "value": "open-source", "namespace": "hacking" }, { - "key": "firewall", - "value": "1080p", + "key": "matrix", + "value": "mobile", "namespace": "generating" }, { - "key": "hard drive", - "value": "auxiliary", + "key": "card", + "value": "neural", + "namespace": "overriding" + }, + { + "key": "system", + "value": "online", "namespace": "parsing" } ], @@ -9363,38 +9363,38 @@ "os_minor_version": 0 }, { - "id": "2fba5f67-b9c4-4e5f-a963-16f80b2f28c2", - "display_name": "ward-predovic.example", + "id": "0f94253f-64b9-4c20-a797-d86315025c34", + "display_name": "lang.example", "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-06T20:51:07.671Z", + "stale_timestamp": "2034-11-22T20:51:07.671Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.671Z", + "updated": "2024-11-22T20:51:07.671Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "haptic", - "namespace": "navigating" - }, - { - "key": "capacitor", + "key": "microchip", "value": "open-source", - "namespace": "indexing" + "namespace": "overriding" }, { - "key": "pixel", - "value": "online", - "namespace": "compressing" + "key": "circuit", + "value": "mobile", + "namespace": "connecting" }, { - "key": "firewall", - "value": "1080p", + "key": "circuit", + "value": "wireless", "namespace": "backing up" }, { - "key": "system", - "value": "optical", + "key": "pixel", + "value": "cross-platform", + "namespace": "overriding" + }, + { + "key": "monitor", + "value": "haptic", "namespace": "calculating" } ], @@ -9403,78 +9403,78 @@ "os_minor_version": 0 }, { - "id": "32fd6960-8b0b-4e30-8727-a55303286cb5", - "display_name": "heaney.example", + "id": "1a75762f-0f80-4094-b550-096d5ac2ac93", + "display_name": "cronin-stanton.example", "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-06T20:51:07.676Z", + "stale_timestamp": "2034-11-22T20:51:07.676Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.676Z", + "updated": "2024-11-22T20:51:07.676Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "1080p", - "namespace": "programming" - }, - { - "key": "system", + "key": "bandwidth", "value": "digital", - "namespace": "compressing" + "namespace": "indexing" }, { - "key": "microchip", - "value": "open-source", + "key": "interface", + "value": "primary", "namespace": "indexing" }, { - "key": "panel", + "key": "feed", "value": "cross-platform", - "namespace": "compressing" + "namespace": "copying" }, { - "key": "transmitter", - "value": "cross-platform", - "namespace": "overriding" - } - ], - "type": "system", - "os_major_version": 8, + "key": "array", + "value": "redundant", + "namespace": "synthesizing" + }, + { + "key": "hard drive", + "value": "digital", + "namespace": "backing up" + } + ], + "type": "system", + "os_major_version": 8, "os_minor_version": 0 }, { - "id": "33107e76-cf69-4841-ad39-6188447f7568", - "display_name": "auer.example", + "id": "1a8453a3-95a1-47af-85b7-2db2d749f633", + "display_name": "beahan-torphy.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-06T20:51:07.690Z", + "stale_timestamp": "2034-11-22T20:51:07.690Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.690Z", + "updated": "2024-11-22T20:51:07.690Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "back-end", - "namespace": "connecting" - }, - { - "key": "monitor", + "key": "interface", "value": "auxiliary", - "namespace": "backing up" + "namespace": "transmitting" }, { - "key": "capacitor", - "value": "online", - "namespace": "parsing" + "key": "transmitter", + "value": "1080p", + "namespace": "generating" }, { - "key": "card", + "key": "sensor", "value": "virtual", - "namespace": "parsing" + "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "primary", + "key": "pixel", + "value": "redundant", + "namespace": "synthesizing" + }, + { + "key": "protocol", + "value": "wireless", "namespace": "overriding" } ], @@ -9483,39 +9483,39 @@ "os_minor_version": 0 }, { - "id": "34f373f9-030a-49c1-b608-84c462fc5d7b", - "display_name": "hickle-connelly.example", + "id": "286c44f3-074a-4f7c-9501-d3ef99c36052", + "display_name": "johns.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-06T20:51:07.662Z", + "stale_timestamp": "2034-11-22T20:51:07.662Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.662Z", + "updated": "2024-11-22T20:51:07.662Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "online", - "namespace": "calculating" + "key": "protocol", + "value": "cross-platform", + "namespace": "connecting" }, { - "key": "microchip", - "value": "mobile", - "namespace": "parsing" + "key": "capacitor", + "value": "auxiliary", + "namespace": "transmitting" }, { - "key": "transmitter", - "value": "primary", - "namespace": "compressing" + "key": "capacitor", + "value": "solid state", + "namespace": "generating" }, { - "key": "interface", - "value": "virtual", - "namespace": "parsing" + "key": "firewall", + "value": "open-source", + "namespace": "copying" }, { - "key": "firewall", - "value": "optical", - "namespace": "overriding" + "key": "microchip", + "value": "online", + "namespace": "connecting" } ], "type": "system", @@ -9523,39 +9523,39 @@ "os_minor_version": 0 }, { - "id": "442be36a-1fa1-4de7-8b4f-7f9c556d7f14", - "display_name": "graham.test", + "id": "38b50247-c9e7-41f7-9f8c-026fe493e894", + "display_name": "frami.example", "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-06T20:51:07.605Z", + "stale_timestamp": "2034-11-22T20:51:07.605Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.605Z", + "updated": "2024-11-22T20:51:07.605Z", "insights_id": null, "tags": [ { "key": "system", - "value": "open-source", - "namespace": "backing up" - }, - { - "key": "microchip", - "value": "neural", - "namespace": "navigating" + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "hard drive", - "value": "multi-byte", - "namespace": "overriding" + "key": "monitor", + "value": "online", + "namespace": "parsing" }, { - "key": "microchip", + "key": "firewall", "value": "wireless", - "namespace": "compressing" + "namespace": "programming" }, { - "key": "capacitor", - "value": "haptic", + "key": "circuit", + "value": "open-source", "namespace": "calculating" + }, + { + "key": "interface", + "value": "optical", + "namespace": "compressing" } ], "type": "system", @@ -9563,39 +9563,39 @@ "os_minor_version": 0 }, { - "id": "46fc5af9-df78-470a-aee9-63cae785e668", - "display_name": "spinka.example", + "id": "3a21aa5b-440d-4658-96f3-64c9bb46f6ef", + "display_name": "hilpert.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-06T20:51:07.599Z", + "stale_timestamp": "2034-11-22T20:51:07.599Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.599Z", + "updated": "2024-11-22T20:51:07.599Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "digital", - "namespace": "generating" + "key": "matrix", + "value": "haptic", + "namespace": "indexing" }, { - "key": "matrix", - "value": "solid state", - "namespace": "programming" + "key": "driver", + "value": "mobile", + "namespace": "compressing" }, { - "key": "circuit", - "value": "primary", - "namespace": "calculating" + "key": "panel", + "value": "auxiliary", + "namespace": "indexing" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "quantifying" + "key": "card", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "panel", - "value": "mobile", - "namespace": "backing up" + "key": "system", + "value": "virtual", + "namespace": "indexing" } ], "type": "system", @@ -9603,39 +9603,39 @@ "os_minor_version": 0 }, { - "id": "55e5c951-2e0c-400e-8369-74125353d88a", - "display_name": "kuphal.test", + "id": "3fff21a2-afe8-4491-9f32-5f77ec97685a", + "display_name": "ritchie.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-06T20:51:07.610Z", + "stale_timestamp": "2034-11-22T20:51:07.610Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.610Z", + "updated": "2024-11-22T20:51:07.610Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "cross-platform", - "namespace": "indexing" + "key": "panel", + "value": "auxiliary", + "namespace": "calculating" }, { - "key": "panel", - "value": "bluetooth", - "namespace": "generating" + "key": "matrix", + "value": "solid state", + "namespace": "indexing" }, { - "key": "protocol", - "value": "virtual", - "namespace": "programming" + "key": "interface", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "program", - "value": "virtual", - "namespace": "overriding" + "key": "pixel", + "value": "primary", + "namespace": "compressing" }, { - "key": "alarm", - "value": "wireless", - "namespace": "overriding" + "key": "matrix", + "value": "bluetooth", + "namespace": "parsing" } ], "type": "system", @@ -9650,9 +9650,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/3916c93a-fdb1-4e81-a7e0-a835196eae5a/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/3916c93a-fdb1-4e81-a7e0-a835196eae5a/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/3916c93a-fdb1-4e81-a7e0-a835196eae5a/systems?limit=10&offset=10" } }, "summary": "", @@ -9662,39 +9662,39 @@ "value": { "data": [ { - "id": "079bb8c8-3c2e-4e4c-bdee-d7aae8d99a41", - "display_name": "skiles.test", + "id": "04cbe74a-e683-4c99-844d-34044f25a00c", + "display_name": "hyatt.test", "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-06T20:51:07.853Z", + "stale_timestamp": "2034-11-22T20:51:07.853Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.853Z", + "updated": "2024-11-22T20:51:07.853Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "mobile", - "namespace": "navigating" + "key": "program", + "value": "haptic", + "namespace": "parsing" }, { - "key": "transmitter", - "value": "virtual", - "namespace": "navigating" + "key": "interface", + "value": "haptic", + "namespace": "indexing" }, { - "key": "firewall", - "value": "1080p", - "namespace": "synthesizing" + "key": "capacitor", + "value": "online", + "namespace": "programming" }, { - "key": "application", - "value": "auxiliary", - "namespace": "copying" + "key": "sensor", + "value": "wireless", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "optical", - "namespace": "calculating" + "key": "transmitter", + "value": "cross-platform", + "namespace": "hacking" } ], "type": "system", @@ -9702,39 +9702,39 @@ "os_minor_version": 0 }, { - "id": "0ca57bc9-efa8-46d6-b867-2c8c458f126e", - "display_name": "leffler-kertzmann.test", + "id": "0b7bbd41-379c-4e37-9319-bef34db47d35", + "display_name": "kuhlman.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-06T20:51:07.750Z", + "stale_timestamp": "2034-11-22T20:51:07.750Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.750Z", + "updated": "2024-11-22T20:51:07.750Z", "insights_id": null, "tags": [ { "key": "matrix", - "value": "auxiliary", + "value": "open-source", "namespace": "programming" }, { - "key": "pixel", - "value": "optical", - "namespace": "calculating" + "key": "firewall", + "value": "auxiliary", + "namespace": "indexing" }, { - "key": "feed", - "value": "wireless", - "namespace": "generating" + "key": "interface", + "value": "haptic", + "namespace": "indexing" }, { - "key": "feed", - "value": "solid state", - "namespace": "calculating" + "key": "protocol", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "monitor", - "value": "open-source", - "namespace": "parsing" + "key": "capacitor", + "value": "back-end", + "namespace": "calculating" } ], "type": "system", @@ -9742,39 +9742,39 @@ "os_minor_version": 0 }, { - "id": "14185ad1-0deb-4a67-804a-5776316c97a3", - "display_name": "cartwright-dickinson.test", + "id": "0cc81f6e-d942-492a-8ea7-6a3b7b42f61a", + "display_name": "schmidt.example", "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-06T20:51:07.791Z", + "stale_timestamp": "2034-11-22T20:51:07.791Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.791Z", + "updated": "2024-11-22T20:51:07.791Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "open-source", - "namespace": "hacking" + "key": "hard drive", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "calculating" + "key": "circuit", + "value": "wireless", + "namespace": "transmitting" }, { "key": "bus", - "value": "primary", - "namespace": "navigating" + "value": "redundant", + "namespace": "hacking" }, { - "key": "port", - "value": "open-source", - "namespace": "overriding" + "key": "bus", + "value": "solid state", + "namespace": "programming" }, { - "key": "capacitor", - "value": "online", - "namespace": "bypassing" + "key": "microchip", + "value": "multi-byte", + "namespace": "synthesizing" } ], "type": "system", @@ -9782,39 +9782,39 @@ "os_minor_version": 0 }, { - "id": "24262c39-0a88-46b4-afd8-6a49d3e87d73", - "display_name": "leffler.test", + "id": "0fad7f92-5d82-4498-809e-5e74a428e2d5", + "display_name": "gerlach-metz.test", "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-06T20:51:07.843Z", + "stale_timestamp": "2034-11-22T20:51:07.843Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.843Z", + "updated": "2024-11-22T20:51:07.843Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "mobile", - "namespace": "transmitting" + "key": "transmitter", + "value": "cross-platform", + "namespace": "programming" }, { - "key": "microchip", - "value": "wireless", - "namespace": "indexing" + "key": "hard drive", + "value": "1080p", + "namespace": "programming" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "overriding" + "key": "array", + "value": "open-source", + "namespace": "calculating" }, { - "key": "port", - "value": "auxiliary", - "namespace": "indexing" + "key": "firewall", + "value": "bluetooth", + "namespace": "parsing" }, { - "key": "transmitter", - "value": "auxiliary", - "namespace": "copying" + "key": "driver", + "value": "cross-platform", + "namespace": "quantifying" } ], "type": "system", @@ -9822,39 +9822,39 @@ "os_minor_version": 0 }, { - "id": "34678d0b-c3b5-46f5-9fcb-c4333039077c", - "display_name": "moore-hills.example", + "id": "1a93c693-ca1e-4fa1-a8e4-89401318203d", + "display_name": "ziemann-baumbach.example", "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-06T20:51:07.857Z", + "stale_timestamp": "2034-11-22T20:51:07.857Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.857Z", + "updated": "2024-11-22T20:51:07.857Z", "insights_id": null, "tags": [ { - "key": "circuit", + "key": "capacitor", "value": "virtual", - "namespace": "generating" + "namespace": "parsing" }, { - "key": "capacitor", + "key": "feed", "value": "haptic", "namespace": "parsing" }, { - "key": "sensor", - "value": "back-end", - "namespace": "transmitting" + "key": "bus", + "value": "neural", + "namespace": "connecting" }, { - "key": "card", - "value": "multi-byte", - "namespace": "navigating" + "key": "pixel", + "value": "primary", + "namespace": "connecting" }, { - "key": "application", - "value": "wireless", - "namespace": "bypassing" + "key": "monitor", + "value": "online", + "namespace": "compressing" } ], "type": "system", @@ -9862,39 +9862,39 @@ "os_minor_version": 0 }, { - "id": "393d928c-e755-4d6f-851f-02b19e32fc47", - "display_name": "marquardt.example", + "id": "4b680f0a-004d-4c97-a74b-33109483b803", + "display_name": "legros-kuhic.example", "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-06T20:51:07.802Z", + "stale_timestamp": "2034-11-22T20:51:07.802Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.802Z", + "updated": "2024-11-22T20:51:07.802Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "optical", + "key": "alarm", + "value": "online", "namespace": "bypassing" }, { - "key": "matrix", - "value": "haptic", - "namespace": "overriding" + "key": "protocol", + "value": "virtual", + "namespace": "copying" }, { - "key": "panel", - "value": "auxiliary", - "namespace": "backing up" + "key": "array", + "value": "neural", + "namespace": "parsing" }, { - "key": "card", - "value": "primary", - "namespace": "connecting" + "key": "matrix", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "driver", - "value": "redundant", - "namespace": "navigating" + "key": "capacitor", + "value": "solid state", + "namespace": "generating" } ], "type": "system", @@ -9902,39 +9902,39 @@ "os_minor_version": 0 }, { - "id": "5311e484-f47d-47ec-8478-d6401715a9a5", - "display_name": "mraz.example", + "id": "5e664edf-20c0-48db-852e-bf5619f4c345", + "display_name": "schneider.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-06T20:51:07.818Z", + "stale_timestamp": "2034-11-22T20:51:07.818Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.818Z", + "updated": "2024-11-22T20:51:07.818Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "open-source", - "namespace": "programming" + "key": "pixel", + "value": "neural", + "namespace": "copying" }, { - "key": "transmitter", - "value": "solid state", - "namespace": "parsing" + "key": "driver", + "value": "redundant", + "namespace": "synthesizing" }, { - "key": "capacitor", - "value": "online", - "namespace": "copying" + "key": "transmitter", + "value": "solid state", + "namespace": "compressing" }, { - "key": "circuit", - "value": "wireless", - "namespace": "programming" + "key": "program", + "value": "optical", + "namespace": "connecting" }, { - "key": "application", - "value": "mobile", - "namespace": "backing up" + "key": "interface", + "value": "primary", + "namespace": "overriding" } ], "type": "system", @@ -9942,39 +9942,39 @@ "os_minor_version": 0 }, { - "id": "533009bd-af6a-4e03-9503-02c71f8e7cb7", - "display_name": "jaskolski.test", + "id": "6a4f8020-1fdf-4361-b882-9617c49e09d9", + "display_name": "braun-wehner.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-06T20:51:07.862Z", + "stale_timestamp": "2034-11-22T20:51:07.862Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.862Z", + "updated": "2024-11-22T20:51:07.862Z", "insights_id": null, "tags": [ - { - "key": "application", - "value": "optical", - "namespace": "programming" - }, { "key": "card", - "value": "bluetooth", - "namespace": "bypassing" + "value": "online", + "namespace": "indexing" }, { - "key": "alarm", - "value": "1080p", - "namespace": "compressing" + "key": "firewall", + "value": "digital", + "namespace": "hacking" }, { "key": "driver", - "value": "wireless", - "namespace": "calculating" + "value": "back-end", + "namespace": "copying" }, { - "key": "bandwidth", - "value": "mobile", - "namespace": "programming" + "key": "microchip", + "value": "solid state", + "namespace": "copying" + }, + { + "key": "pixel", + "value": "haptic", + "namespace": "synthesizing" } ], "type": "system", @@ -9982,39 +9982,39 @@ "os_minor_version": 0 }, { - "id": "60d01227-6159-4b5b-8441-8be7c6e78be5", - "display_name": "waelchi.test", + "id": "7e6376ec-fc3b-4559-ac32-718f1db51ac7", + "display_name": "beier-bogisich.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-06T20:51:07.745Z", + "stale_timestamp": "2034-11-22T20:51:07.745Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.745Z", + "updated": "2024-11-22T20:51:07.745Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "virtual", - "namespace": "bypassing" + "key": "panel", + "value": "cross-platform", + "namespace": "generating" }, { - "key": "pixel", - "value": "1080p", - "namespace": "overriding" + "key": "hard drive", + "value": "primary", + "namespace": "bypassing" }, { - "key": "feed", - "value": "digital", - "namespace": "quantifying" + "key": "bandwidth", + "value": "virtual", + "namespace": "programming" }, { - "key": "panel", - "value": "1080p", - "namespace": "transmitting" + "key": "array", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "feed", - "value": "open-source", - "namespace": "indexing" + "key": "microchip", + "value": "auxiliary", + "namespace": "calculating" } ], "type": "system", @@ -10022,37 +10022,37 @@ "os_minor_version": 0 }, { - "id": "6a1bcdf4-20a9-4031-85cf-2fe0ecf24568", - "display_name": "schaden-pagac.test", + "id": "809e2e01-1656-4d94-b79b-8155df87d134", + "display_name": "hagenes.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-06T20:51:07.867Z", + "stale_timestamp": "2034-11-22T20:51:07.867Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.867Z", + "updated": "2024-11-22T20:51:07.867Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "digital", - "namespace": "parsing" + "key": "transmitter", + "value": "bluetooth", + "namespace": "overriding" }, { - "key": "feed", - "value": "online", - "namespace": "calculating" + "key": "card", + "value": "haptic", + "namespace": "overriding" }, { - "key": "array", - "value": "redundant", - "namespace": "indexing" + "key": "application", + "value": "1080p", + "namespace": "generating" }, { - "key": "pixel", - "value": "open-source", - "namespace": "overriding" + "key": "bus", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "alarm", + "key": "pixel", "value": "digital", "namespace": "quantifying" } @@ -10070,9 +10070,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/64e38ffb-349b-4c28-ae79-309b06b381c0/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/64e38ffb-349b-4c28-ae79-309b06b381c0/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/64e38ffb-349b-4c28-ae79-309b06b381c0/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", @@ -10082,39 +10082,39 @@ "value": { "data": [ { - "id": "007fc59a-4499-4109-8466-9aefdf19e35f", - "display_name": "christiansen.example", + "id": "15fc1ad4-fbc3-441a-8de2-38e4f739c971", + "display_name": "fahey.example", "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-06T20:51:07.934Z", + "stale_timestamp": "2034-11-22T20:51:07.934Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.934Z", + "updated": "2024-11-22T20:51:07.934Z", "insights_id": null, "tags": [ { - "key": "interface", + "key": "sensor", "value": "cross-platform", - "namespace": "parsing" + "namespace": "synthesizing" }, { - "key": "matrix", - "value": "primary", + "key": "bandwidth", + "value": "mobile", "namespace": "navigating" }, { - "key": "feed", - "value": "back-end", - "namespace": "generating" + "key": "pixel", + "value": "cross-platform", + "namespace": "programming" }, { - "key": "protocol", - "value": "bluetooth", - "namespace": "hacking" + "key": "driver", + "value": "1080p", + "namespace": "navigating" }, { - "key": "microchip", - "value": "solid state", - "namespace": "indexing" + "key": "protocol", + "value": "optical", + "namespace": "overriding" } ], "type": "system", @@ -10122,39 +10122,79 @@ "os_minor_version": 0 }, { - "id": "067c9c35-5662-4211-baa7-3f20d0a1fef5", - "display_name": "runte.example", + "id": "186e425f-51a6-4b43-9e0c-61cfc1419727", + "display_name": "walker.test", "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-06T20:51:07.987Z", + "stale_timestamp": "2034-11-22T20:51:07.987Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.987Z", + "updated": "2024-11-22T20:51:07.987Z", "insights_id": null, "tags": [ { - "key": "hard drive", + "key": "array", + "value": "solid state", + "namespace": "overriding" + }, + { + "key": "pixel", + "value": "virtual", + "namespace": "bypassing" + }, + { + "key": "feed", + "value": "solid state", + "namespace": "calculating" + }, + { + "key": "monitor", "value": "auxiliary", - "namespace": "compressing" + "namespace": "quantifying" }, + { + "key": "firewall", + "value": "mobile", + "namespace": "parsing" + } + ], + "type": "system", + "os_major_version": 8, + "os_minor_version": 0 + }, + { + "id": "274046ba-6670-42fa-b566-fae1105c510d", + "display_name": "hand.test", + "groups": [], + "culled_timestamp": "2034-12-06T20:51:07.982Z", + "stale_timestamp": "2034-11-22T20:51:07.982Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.982Z", + "updated": "2024-11-22T20:51:07.982Z", + "insights_id": null, + "tags": [ { "key": "circuit", + "value": "multi-byte", + "namespace": "bypassing" + }, + { + "key": "matrix", "value": "back-end", - "namespace": "compressing" + "namespace": "indexing" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "quantifying" + "key": "bus", + "value": "multi-byte", + "namespace": "overriding" }, { "key": "system", - "value": "wireless", - "namespace": "navigating" + "value": "primary", + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "1080p", - "namespace": "overriding" + "key": "capacitor", + "value": "online", + "namespace": "bypassing" } ], "type": "system", @@ -10162,39 +10202,39 @@ "os_minor_version": 0 }, { - "id": "09ff46d8-61c3-4b4d-8126-69a0babb8fdb", - "display_name": "fritsch-kirlin.test", + "id": "2a2ff913-642e-477e-afaf-5762a420240d", + "display_name": "auer.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-06T20:51:07.977Z", + "stale_timestamp": "2034-11-22T20:51:07.977Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.977Z", + "updated": "2024-11-22T20:51:07.977Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "solid state", - "namespace": "calculating" - }, - { - "key": "application", - "value": "online", - "namespace": "synthesizing" + "key": "interface", + "value": "wireless", + "namespace": "transmitting" }, { "key": "protocol", - "value": "primary", - "namespace": "connecting" + "value": "digital", + "namespace": "navigating" }, { "key": "driver", "value": "primary", + "namespace": "generating" + }, + { + "key": "matrix", + "value": "multi-byte", "namespace": "indexing" }, { - "key": "capacitor", - "value": "online", - "namespace": "programming" + "key": "system", + "value": "mobile", + "namespace": "overriding" } ], "type": "system", @@ -10202,39 +10242,39 @@ "os_minor_version": 0 }, { - "id": "1808c6a1-4c11-4b8a-8f19-b036d8cbb1dc", - "display_name": "huels.example", + "id": "53a002e6-a087-4ac9-a797-32b0ed613b31", + "display_name": "mckenzie-sawayn.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-06T20:51:08.020Z", + "stale_timestamp": "2034-11-22T20:51:08.020Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.020Z", + "updated": "2024-11-22T20:51:08.020Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "online", - "namespace": "generating" + "key": "protocol", + "value": "cross-platform", + "namespace": "connecting" }, { - "key": "interface", + "key": "circuit", "value": "auxiliary", - "namespace": "generating" + "namespace": "quantifying" }, { - "key": "sensor", - "value": "back-end", - "namespace": "synthesizing" + "key": "matrix", + "value": "mobile", + "namespace": "indexing" }, { - "key": "interface", + "key": "microchip", "value": "redundant", - "namespace": "compressing" + "namespace": "quantifying" }, { - "key": "port", - "value": "optical", - "namespace": "generating" + "key": "hard drive", + "value": "mobile", + "namespace": "programming" } ], "type": "system", @@ -10242,38 +10282,38 @@ "os_minor_version": 0 }, { - "id": "1c816fe6-a96e-4128-a8b3-dc69ec2cdc21", - "display_name": "schaefer-crist.test", + "id": "57027978-de9c-4f97-94a5-ca6814c1c2b9", + "display_name": "orn.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-06T20:51:08.030Z", + "stale_timestamp": "2034-11-22T20:51:08.030Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.030Z", + "updated": "2024-11-22T20:51:08.030Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "bluetooth", - "namespace": "overriding" + "key": "port", + "value": "multi-byte", + "namespace": "indexing" }, { - "key": "firewall", - "value": "cross-platform", - "namespace": "programming" + "key": "application", + "value": "online", + "namespace": "synthesizing" }, { - "key": "port", - "value": "neural", - "namespace": "programming" + "key": "bandwidth", + "value": "back-end", + "namespace": "synthesizing" }, { - "key": "firewall", - "value": "redundant", - "namespace": "indexing" + "key": "sensor", + "value": "open-source", + "namespace": "generating" }, { - "key": "application", - "value": "bluetooth", + "key": "system", + "value": "mobile", "namespace": "backing up" } ], @@ -10282,39 +10322,39 @@ "os_minor_version": 0 }, { - "id": "1dc90305-b673-4991-90c3-8d44258b3439", - "display_name": "hirthe.test", + "id": "6310945d-2215-44b7-a0b7-3745c9579b67", + "display_name": "hauck.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-06T20:51:07.947Z", + "stale_timestamp": "2034-11-22T20:51:07.947Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.947Z", + "updated": "2024-11-22T20:51:07.947Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "haptic", - "namespace": "bypassing" + "key": "port", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "digital", - "namespace": "connecting" + "key": "alarm", + "value": "mobile", + "namespace": "overriding" }, { - "key": "matrix", - "value": "bluetooth", - "namespace": "compressing" + "key": "monitor", + "value": "redundant", + "namespace": "overriding" }, { - "key": "alarm", - "value": "solid state", - "namespace": "synthesizing" + "key": "driver", + "value": "primary", + "namespace": "transmitting" }, { - "key": "panel", + "key": "driver", "value": "back-end", - "namespace": "connecting" + "namespace": "indexing" } ], "type": "system", @@ -10322,38 +10362,38 @@ "os_minor_version": 0 }, { - "id": "29244ad2-263f-4eaf-9940-5b4a1a14c945", - "display_name": "little-hegmann.test", + "id": "6547ed8f-bd8e-4e45-9e8f-c1ec53d0bbc5", + "display_name": "white.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-06T20:51:07.952Z", + "stale_timestamp": "2034-11-22T20:51:07.952Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.952Z", + "updated": "2024-11-22T20:51:07.952Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "neural", - "namespace": "programming" + "key": "monitor", + "value": "haptic", + "namespace": "parsing" }, { - "key": "pixel", - "value": "neural", - "namespace": "calculating" + "key": "bus", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "matrix", - "value": "bluetooth", - "namespace": "synthesizing" + "key": "transmitter", + "value": "solid state", + "namespace": "parsing" }, { - "key": "program", - "value": "haptic", - "namespace": "compressing" + "key": "alarm", + "value": "1080p", + "namespace": "calculating" }, { - "key": "feed", - "value": "online", + "key": "panel", + "value": "cross-platform", "namespace": "backing up" } ], @@ -10362,79 +10402,39 @@ "os_minor_version": 0 }, { - "id": "2b5aae4f-1b0f-4c1d-a1a9-4546e086df0b", - "display_name": "brakus.example", + "id": "677dab05-ffdb-491b-8780-0075cdb9139b", + "display_name": "homenick.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-06T20:51:07.905Z", + "stale_timestamp": "2034-11-22T20:51:07.905Z", + "stale_warning_timestamp": "2034-11-29T20:51:07.905Z", + "updated": "2024-11-22T20:51:07.905Z", "insights_id": null, "tags": [ { - "key": "bandwidth", + "key": "hard drive", "value": "redundant", - "namespace": "bypassing" - }, - { - "key": "protocol", - "value": "1080p", "namespace": "compressing" }, { - "key": "panel", - "value": "primary", - "namespace": "programming" - }, - { - "key": "array", - "value": "haptic", - "namespace": "synthesizing" + "key": "system", + "value": "cross-platform", + "namespace": "hacking" }, { - "key": "driver", - "value": "optical", - "namespace": "generating" - } - ], - "type": "system", - "os_major_version": 8, - "os_minor_version": 0 - }, - { - "id": "2d543a1c-a362-495b-8a2c-85d31a3f6bd4", - "display_name": "zieme-trantow.test", - "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", - "insights_id": null, - "tags": [ - { - "key": "circuit", - "value": "multi-byte", - "namespace": "copying" + "key": "interface", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "protocol", - "value": "open-source", + "key": "system", + "value": "online", "namespace": "synthesizing" }, { - "key": "card", - "value": "mobile", + "key": "sensor", + "value": "virtual", "namespace": "synthesizing" - }, - { - "key": "bus", - "value": "cross-platform", - "namespace": "overriding" - }, - { - "key": "panel", - "value": "bluetooth", - "namespace": "copying" } ], "type": "system", @@ -10442,39 +10442,39 @@ "os_minor_version": 0 }, { - "id": "457b10fa-1649-4ec8-a7ff-9d1904fc4981", - "display_name": "ruecker.test", + "id": "712c3d14-b4ab-481a-9bc5-f81cee646095", + "display_name": "daniel-armstrong.test", "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-06T20:51:08.025Z", + "stale_timestamp": "2034-11-22T20:51:08.025Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.025Z", + "updated": "2024-11-22T20:51:08.025Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "back-end", - "namespace": "calculating" + "key": "pixel", + "value": "virtual", + "namespace": "indexing" }, { - "key": "matrix", - "value": "open-source", - "namespace": "connecting" + "key": "microchip", + "value": "mobile", + "namespace": "programming" }, { - "key": "matrix", - "value": "haptic", - "namespace": "compressing" + "key": "interface", + "value": "wireless", + "namespace": "connecting" }, { - "key": "microchip", + "key": "protocol", "value": "cross-platform", "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "cross-platform", - "namespace": "compressing" + "key": "system", + "value": "virtual", + "namespace": "parsing" } ], "type": "system", @@ -10490,9 +10490,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/a59e7160-e4d4-4f91-8dbe-b82c6af611fc/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/a59e7160-e4d4-4f91-8dbe-b82c6af611fc/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/policies/a59e7160-e4d4-4f91-8dbe-b82c6af611fc/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -10591,39 +10591,39 @@ "value": { "data": [ { - "id": "02730877-191e-4ce0-8816-29583872a2f7", - "display_name": "rau.test", + "id": "175acf1c-e39b-4ee2-bbfc-42a455c10242", + "display_name": "schimmel.test", "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-06T20:51:08.495Z", + "stale_timestamp": "2034-11-22T20:51:08.495Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.495Z", + "updated": "2024-11-22T20:51:08.495Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "1080p", - "namespace": "synthesizing" + "key": "panel", + "value": "online", + "namespace": "bypassing" }, { - "key": "alarm", - "value": "cross-platform", - "namespace": "hacking" + "key": "application", + "value": "virtual", + "namespace": "calculating" }, { "key": "pixel", - "value": "primary", - "namespace": "programming" + "value": "auxiliary", + "namespace": "hacking" }, { - "key": "interface", - "value": "primary", - "namespace": "bypassing" + "key": "capacitor", + "value": "digital", + "namespace": "quantifying" }, { - "key": "alarm", - "value": "neural", - "namespace": "overriding" + "key": "pixel", + "value": "cross-platform", + "namespace": "parsing" } ], "type": "system", @@ -10631,39 +10631,39 @@ "os_minor_version": 0 }, { - "id": "0447640d-95ce-4aa4-b979-a062b0c18b8d", - "display_name": "hodkiewicz.example", + "id": "1a116e85-3c84-41d7-9291-e9faa57efa7a", + "display_name": "flatley-beer.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-06T20:51:08.512Z", + "stale_timestamp": "2034-11-22T20:51:08.512Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.512Z", + "updated": "2024-11-22T20:51:08.512Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "solid state", + "key": "bus", + "value": "bluetooth", "namespace": "programming" }, { - "key": "system", - "value": "mobile", - "namespace": "quantifying" + "key": "array", + "value": "wireless", + "namespace": "connecting" }, { - "key": "alarm", - "value": "back-end", - "namespace": "overriding" + "key": "program", + "value": "multi-byte", + "namespace": "parsing" }, { - "key": "system", - "value": "auxiliary", - "namespace": "hacking" + "key": "array", + "value": "neural", + "namespace": "backing up" }, { - "key": "interface", - "value": "redundant", - "namespace": "overriding" + "key": "array", + "value": "online", + "namespace": "copying" } ], "type": "system", @@ -10671,39 +10671,39 @@ "os_minor_version": 0 }, { - "id": "0e9f3fb2-5c5b-45f6-8b4b-274955fee4dc", - "display_name": "fahey.example", + "id": "1bbe8b54-3555-490a-b010-ec604e5127cb", + "display_name": "kuhn.example", "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-06T20:51:08.500Z", + "stale_timestamp": "2034-11-22T20:51:08.500Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.500Z", + "updated": "2024-11-22T20:51:08.500Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "optical", - "namespace": "calculating" + "key": "microchip", + "value": "solid state", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "digital", - "namespace": "synthesizing" + "key": "hard drive", + "value": "virtual", + "namespace": "transmitting" }, { - "key": "microchip", - "value": "digital", - "namespace": "compressing" + "key": "feed", + "value": "solid state", + "namespace": "bypassing" }, { - "key": "sensor", - "value": "haptic", - "namespace": "copying" + "key": "port", + "value": "auxiliary", + "namespace": "hacking" }, { - "key": "program", - "value": "cross-platform", - "namespace": "indexing" + "key": "firewall", + "value": "auxiliary", + "namespace": "copying" } ], "type": "system", @@ -10711,39 +10711,39 @@ "os_minor_version": 0 }, { - "id": "13acbdda-0e5c-4712-9d72-7093d7bada53", - "display_name": "bailey.test", + "id": "2563f195-479f-4bca-8f59-afdc5af84cf6", + "display_name": "pouros.example", "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-06T20:51:08.499Z", + "stale_timestamp": "2034-11-22T20:51:08.499Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.499Z", + "updated": "2024-11-22T20:51:08.499Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "open-source", - "namespace": "parsing" + "key": "monitor", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "back-end", - "namespace": "synthesizing" + "key": "firewall", + "value": "wireless", + "namespace": "parsing" }, { - "key": "circuit", - "value": "primary", - "namespace": "calculating" + "key": "program", + "value": "redundant", + "namespace": "copying" }, { - "key": "firewall", - "value": "neural", - "namespace": "synthesizing" + "key": "protocol", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "firewall", - "value": "auxiliary", - "namespace": "programming" + "key": "driver", + "value": "virtual", + "namespace": "quantifying" } ], "type": "system", @@ -10751,39 +10751,39 @@ "os_minor_version": 0 }, { - "id": "1a7371a7-1749-4a86-b125-464966ef1087", - "display_name": "oconner.example", + "id": "2f1d6d68-6874-415c-a3d2-aa92a9d86e33", + "display_name": "dooley.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-06T20:51:08.507Z", + "stale_timestamp": "2034-11-22T20:51:08.507Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.507Z", + "updated": "2024-11-22T20:51:08.507Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "auxiliary", - "namespace": "indexing" + "key": "transmitter", + "value": "solid state", + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "auxiliary", - "namespace": "navigating" + "key": "card", + "value": "wireless", + "namespace": "parsing" }, { - "key": "capacitor", - "value": "bluetooth", - "namespace": "transmitting" + "key": "program", + "value": "wireless", + "namespace": "overriding" }, { - "key": "port", - "value": "bluetooth", - "namespace": "parsing" + "key": "protocol", + "value": "optical", + "namespace": "synthesizing" }, { - "key": "monitor", - "value": "redundant", - "namespace": "bypassing" + "key": "sensor", + "value": "mobile", + "namespace": "programming" } ], "type": "system", @@ -10791,39 +10791,39 @@ "os_minor_version": 0 }, { - "id": "466fbe9e-1cf5-40c8-ad15-c5cb17b6e697", - "display_name": "harris.example", + "id": "307a7e50-3dba-42c6-a8b6-c39755d9b916", + "display_name": "conn.example", "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-06T20:51:08.494Z", + "stale_timestamp": "2034-11-22T20:51:08.494Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.494Z", + "updated": "2024-11-22T20:51:08.494Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "primary", - "namespace": "programming" + "key": "card", + "value": "redundant", + "namespace": "navigating" }, { - "key": "protocol", - "value": "bluetooth", - "namespace": "quantifying" + "key": "transmitter", + "value": "wireless", + "namespace": "bypassing" }, { "key": "alarm", - "value": "back-end", + "value": "haptic", "namespace": "indexing" }, { - "key": "matrix", - "value": "multi-byte", - "namespace": "bypassing" + "key": "card", + "value": "bluetooth", + "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "bluetooth", - "namespace": "bypassing" + "key": "application", + "value": "online", + "namespace": "parsing" } ], "type": "system", @@ -10831,39 +10831,39 @@ "os_minor_version": 0 }, { - "id": "496ace30-950b-48a5-b874-37be77c71fb7", - "display_name": "erdman.example", + "id": "4dc0d541-6a59-4bdf-9356-dd401d9e567e", + "display_name": "quitzon-schiller.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-06T20:51:08.501Z", + "stale_timestamp": "2034-11-22T20:51:08.501Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.501Z", + "updated": "2024-11-22T20:51:08.501Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "mobile", - "namespace": "backing up" + "key": "application", + "value": "redundant", + "namespace": "overriding" }, { - "key": "monitor", - "value": "mobile", - "namespace": "quantifying" + "key": "alarm", + "value": "optical", + "namespace": "navigating" }, { - "key": "array", - "value": "open-source", - "namespace": "bypassing" + "key": "application", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "port", + "key": "application", "value": "optical", - "namespace": "quantifying" + "namespace": "bypassing" }, { - "key": "matrix", - "value": "cross-platform", - "namespace": "indexing" + "key": "protocol", + "value": "back-end", + "namespace": "compressing" } ], "type": "system", @@ -10871,39 +10871,39 @@ "os_minor_version": 0 }, { - "id": "77cefe07-0a4f-47c6-95f8-4388196f972d", - "display_name": "ryan-mccullough.example", + "id": "4e21ab75-9c5f-4558-a08c-b6611b9fbb77", + "display_name": "wilkinson.test", "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-06T20:51:08.502Z", + "stale_timestamp": "2034-11-22T20:51:08.502Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.502Z", + "updated": "2024-11-22T20:51:08.502Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "1080p", - "namespace": "transmitting" + "key": "feed", + "value": "cross-platform", + "namespace": "navigating" }, { - "key": "transmitter", - "value": "digital", - "namespace": "backing up" + "key": "card", + "value": "bluetooth", + "namespace": "overriding" }, { - "key": "system", - "value": "multi-byte", - "namespace": "compressing" + "key": "panel", + "value": "haptic", + "namespace": "generating" }, { "key": "sensor", - "value": "auxiliary", - "namespace": "programming" + "value": "back-end", + "namespace": "parsing" }, { - "key": "sensor", - "value": "online", - "namespace": "hacking" + "key": "bus", + "value": "cross-platform", + "namespace": "parsing" } ], "type": "system", @@ -10911,39 +10911,39 @@ "os_minor_version": 0 }, { - "id": "86bcf00f-68f5-4e28-80f8-cbd7c16f9b8f", - "display_name": "reilly-bergstrom.example", + "id": "51978db0-8df0-4505-aec1-0518ca0b398e", + "display_name": "nicolas.example", "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-06T20:51:08.511Z", + "stale_timestamp": "2034-11-22T20:51:08.511Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.511Z", + "updated": "2024-11-22T20:51:08.511Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "open-source", - "namespace": "bypassing" + "key": "matrix", + "value": "neural", + "namespace": "parsing" }, { - "key": "protocol", - "value": "optical", - "namespace": "overriding" + "key": "firewall", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "protocol", - "value": "virtual", - "namespace": "calculating" + "key": "pixel", + "value": "online", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "mobile", - "namespace": "parsing" + "key": "bus", + "value": "auxiliary", + "namespace": "compressing" }, { - "key": "microchip", - "value": "multi-byte", - "namespace": "copying" + "key": "matrix", + "value": "auxiliary", + "namespace": "indexing" } ], "type": "system", @@ -10951,39 +10951,39 @@ "os_minor_version": 0 }, { - "id": "88af878c-f19a-4705-af87-228b696c9255", - "display_name": "casper.test", + "id": "5fcf0191-3dbb-4ae9-ae7a-370c382164cc", + "display_name": "wiegand.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-06T20:51:08.507Z", + "stale_timestamp": "2034-11-22T20:51:08.507Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.507Z", + "updated": "2024-11-22T20:51:08.507Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "neural", - "namespace": "hacking" + "key": "interface", + "value": "online", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "auxiliary", - "namespace": "backing up" + "key": "monitor", + "value": "haptic", + "namespace": "hacking" }, { - "key": "array", - "value": "open-source", - "namespace": "backing up" + "key": "alarm", + "value": "primary", + "namespace": "compressing" }, { - "key": "transmitter", - "value": "back-end", + "key": "bandwidth", + "value": "digital", "namespace": "parsing" }, { - "key": "driver", - "value": "open-source", - "namespace": "compressing" + "key": "program", + "value": "redundant", + "namespace": "parsing" } ], "type": "system", @@ -10998,9 +10998,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/05042f01-bbb5-48df-8e29-92d2bb44440d/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/05042f01-bbb5-48df-8e29-92d2bb44440d/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/05042f01-bbb5-48df-8e29-92d2bb44440d/systems?limit=10&offset=10" } }, "summary": "", @@ -11043,7 +11043,7 @@ "items": { "type": "string", "examples": [ - "e86cfd1e-7ec8-41ce-a3d7-28ca5ad39cb0" + "441c40be-d310-4fa1-a4d2-1e779552c8ee" ] } } @@ -11148,7 +11148,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 +11159,39 @@ "Assigns a System to a Policy": { "value": { "data": { - "id": "4819bc38-ad2a-4c8f-a4ef-311b7c3c80d8", - "display_name": "kohler.test", + "id": "08fb2bdb-50ad-4132-b807-c576b508bf73", + "display_name": "zieme-zemlak.test", "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-06T20:51:08.700Z", + "stale_timestamp": "2034-11-22T20:51:08.700Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.700Z", + "updated": "2024-11-22T20:51:08.700Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "primary", - "namespace": "programming" + "key": "array", + "value": "optical", + "namespace": "calculating" }, { - "key": "system", - "value": "auxiliary", - "namespace": "quantifying" + "key": "application", + "value": "digital", + "namespace": "bypassing" }, { - "key": "monitor", - "value": "haptic", - "namespace": "indexing" + "key": "microchip", + "value": "primary", + "namespace": "connecting" }, { - "key": "application", - "value": "optical", - "namespace": "transmitting" + "key": "microchip", + "value": "cross-platform", + "namespace": "calculating" }, { - "key": "circuit", - "value": "open-source", - "namespace": "bypassing" + "key": "interface", + "value": "online", + "namespace": "backing up" } ], "type": "system", @@ -11227,7 +11227,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 d3d70210-31d2-4328-bea8-c2b1d3a18569" ] }, "summary": "", @@ -11273,7 +11273,7 @@ "tags": [ "Policies" ], - "description": "Unassigns a System from a Policy", + "description": "Remove a specific system from a specific policy.", "operationId": "UnassignSystem", "responses": { "202": { @@ -11284,38 +11284,38 @@ "Unassigns a System from a Policy": { "value": { "data": { - "id": "77505349-e8c0-4fca-a931-f52c29605a80", - "display_name": "kuvalis.example", + "id": "8439e14f-d3fe-4fbd-a163-60850dcf4df4", + "display_name": "ebert.example", "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-06T20:51:08.751Z", + "stale_timestamp": "2034-11-22T20:51:08.751Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.751Z", + "updated": "2024-11-22T20:51:08.751Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "multi-byte", - "namespace": "generating" + "key": "capacitor", + "value": "digital", + "namespace": "parsing" }, { - "key": "microchip", - "value": "mobile", - "namespace": "backing up" + "key": "protocol", + "value": "digital", + "namespace": "copying" }, { - "key": "feed", - "value": "virtual", - "namespace": "calculating" + "key": "firewall", + "value": "auxiliary", + "namespace": "indexing" }, { - "key": "protocol", - "value": "mobile", - "namespace": "synthesizing" + "key": "capacitor", + "value": "auxiliary", + "namespace": "bypassing" }, { - "key": "microchip", - "value": "back-end", + "key": "system", + "value": "wireless", "namespace": "bypassing" } ], @@ -11352,7 +11352,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 35238626-3b00-42be-a93b-163b74cc0962" ] }, "summary": "", @@ -11470,7 +11470,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 +11482,39 @@ "value": { "data": [ { - "id": "01da74b9-c63e-4aa1-8903-15bd4017a20a", - "display_name": "homenick.test", + "id": "035c3ae0-7ca4-4330-87ae-e1e62b1e53ed", + "display_name": "hand.example", "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-06T20:51:09.049Z", + "stale_timestamp": "2034-11-22T20:51:09.049Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.049Z", + "updated": "2024-11-22T20:51:09.049Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "optical", - "namespace": "connecting" + "key": "monitor", + "value": "open-source", + "namespace": "indexing" }, { - "key": "card", - "value": "auxiliary", - "namespace": "connecting" + "key": "hard drive", + "value": "wireless", + "namespace": "navigating" }, { - "key": "microchip", - "value": "primary", - "namespace": "navigating" + "key": "card", + "value": "mobile", + "namespace": "hacking" }, { - "key": "bus", + "key": "firewall", "value": "multi-byte", - "namespace": "copying" + "namespace": "indexing" }, { - "key": "feed", - "value": "primary", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "connecting" } ], "type": "system", @@ -11522,45 +11522,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "2c946902-b643-4f1b-802e-80bd76781df0", - "display_name": "feeney.example", + "id": "261e262a-549c-46f8-a8e3-04ffa04fd218", + "display_name": "fay.example", "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-06T20:51:08.988Z", + "stale_timestamp": "2034-11-22T20:51:08.988Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.988Z", + "updated": "2024-11-22T20:51:08.988Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "cross-platform", - "namespace": "bypassing" + "key": "panel", + "value": "primary", + "namespace": "generating" }, { - "key": "circuit", - "value": "cross-platform", - "namespace": "generating" + "key": "card", + "value": "virtual", + "namespace": "synthesizing" }, { - "key": "hard drive", - "value": "online", - "namespace": "calculating" + "key": "panel", + "value": "virtual", + "namespace": "copying" }, { - "key": "circuit", - "value": "digital", - "namespace": "compressing" + "key": "application", + "value": "neural", + "namespace": "connecting" }, { - "key": "card", - "value": "open-source", - "namespace": "overriding" + "key": "panel", + "value": "back-end", + "namespace": "generating" } ], "type": "system", @@ -11568,45 +11568,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "349b67e6-0c7c-42a4-a6cf-22c24d5bf34d", - "display_name": "schimmel.test", + "id": "265a49f2-e6db-4069-abb8-f20785a62779", + "display_name": "dubuque.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-06T20:51:09.085Z", + "stale_timestamp": "2034-11-22T20:51:09.085Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.085Z", + "updated": "2024-11-22T20:51:09.085Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "1080p", + "key": "feed", + "value": "back-end", + "namespace": "transmitting" + }, + { + "key": "firewall", + "value": "digital", "namespace": "synthesizing" }, { - "key": "circuit", - "value": "primary", + "key": "protocol", + "value": "redundant", "namespace": "quantifying" }, { - "key": "port", - "value": "open-source", + "key": "hard drive", + "value": "bluetooth", "namespace": "compressing" }, { - "key": "capacitor", - "value": "mobile", - "namespace": "copying" - }, - { - "key": "firewall", + "key": "circuit", "value": "neural", - "namespace": "compressing" + "namespace": "quantifying" } ], "type": "system", @@ -11614,45 +11614,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "34c11e6c-e0cf-4ba0-b9e4-4c188730cc78", - "display_name": "crooks.test", + "id": "35e8bcd2-8654-4c27-a4a7-03c044063a9f", + "display_name": "rutherford.example", "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-06T20:51:09.092Z", + "stale_timestamp": "2034-11-22T20:51:09.092Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.092Z", + "updated": "2024-11-22T20:51:09.092Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "online", - "namespace": "hacking" + "key": "protocol", + "value": "mobile", + "namespace": "connecting" }, { - "key": "panel", + "key": "capacitor", "value": "solid state", - "namespace": "overriding" + "namespace": "transmitting" }, { - "key": "card", - "value": "virtual", - "namespace": "generating" + "key": "circuit", + "value": "back-end", + "namespace": "navigating" }, { - "key": "sensor", - "value": "1080p", + "key": "monitor", + "value": "multi-byte", "namespace": "connecting" }, { - "key": "driver", - "value": "bluetooth", - "namespace": "navigating" + "key": "pixel", + "value": "mobile", + "namespace": "quantifying" } ], "type": "system", @@ -11660,45 +11660,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "44b525cf-312d-4bc0-9de8-ea4dbb13a434", - "display_name": "lynch-lowe.test", + "id": "3756c9d7-08b7-4fc9-afc9-de03c768607c", + "display_name": "wintheiser-kozey.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-06T20:51:09.059Z", + "stale_timestamp": "2034-11-22T20:51:09.059Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.059Z", + "updated": "2024-11-22T20:51:09.059Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "optical", - "namespace": "bypassing" + "key": "feed", + "value": "auxiliary", + "namespace": "backing up" }, { - "key": "sensor", - "value": "back-end", - "namespace": "compressing" + "key": "matrix", + "value": "digital", + "namespace": "quantifying" }, { - "key": "sensor", - "value": "optical", - "namespace": "compressing" + "key": "feed", + "value": "redundant", + "namespace": "navigating" }, { - "key": "array", - "value": "solid state", - "namespace": "indexing" + "key": "panel", + "value": "cross-platform", + "namespace": "programming" }, { - "key": "capacitor", - "value": "online", - "namespace": "connecting" + "key": "sensor", + "value": "cross-platform", + "namespace": "indexing" } ], "type": "system", @@ -11706,45 +11706,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "45829dd0-ba4c-46eb-acf7-e2174f943362", - "display_name": "quitzon.test", + "id": "3d61459d-1405-4b87-b53e-a86a8aa40ff2", + "display_name": "gibson.example", "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-06T20:51:09.017Z", + "stale_timestamp": "2034-11-22T20:51:09.017Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.017Z", + "updated": "2024-11-22T20:51:09.017Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "online", - "namespace": "transmitting" + "key": "pixel", + "value": "redundant", + "namespace": "quantifying" }, { - "key": "panel", + "key": "port", "value": "online", "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "neural", + "key": "hard drive", + "value": "1080p", "namespace": "navigating" }, { - "key": "hard drive", - "value": "haptic", - "namespace": "connecting" + "key": "program", + "value": "cross-platform", + "namespace": "hacking" }, { - "key": "system", - "value": "1080p", - "namespace": "calculating" + "key": "circuit", + "value": "solid state", + "namespace": "generating" } ], "type": "system", @@ -11752,45 +11752,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "473b2b9c-ad0c-477b-9e23-a39377ae0962", - "display_name": "hamill.test", + "id": "5701e41f-f804-46fa-9b24-464605d45d0b", + "display_name": "erdman.test", "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-06T20:51:09.044Z", + "stale_timestamp": "2034-11-22T20:51:09.044Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.044Z", + "updated": "2024-11-22T20:51:09.044Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "wireless", - "namespace": "synthesizing" + "key": "capacitor", + "value": "redundant", + "namespace": "quantifying" }, { - "key": "sensor", + "key": "matrix", "value": "redundant", - "namespace": "overriding" + "namespace": "transmitting" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "indexing" + "key": "panel", + "value": "open-source", + "namespace": "overriding" }, { - "key": "array", + "key": "pixel", "value": "primary", - "namespace": "connecting" + "namespace": "parsing" }, { - "key": "sensor", - "value": "bluetooth", - "namespace": "parsing" + "key": "card", + "value": "mobile", + "namespace": "overriding" } ], "type": "system", @@ -11798,44 +11798,44 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "515d761e-dfe2-43c7-a349-e35a5243fa49", - "display_name": "littel-nolan.test", + "id": "5f88ecb7-a59c-4d56-bf20-91fd0690f234", + "display_name": "lowe.test", "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-06T20:51:08.997Z", + "stale_timestamp": "2034-11-22T20:51:08.997Z", + "stale_warning_timestamp": "2034-11-29T20:51:08.997Z", + "updated": "2024-11-22T20:51:08.997Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "redundant", - "namespace": "calculating" + "key": "capacitor", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "array", - "value": "primary", - "namespace": "hacking" + "key": "bandwidth", + "value": "auxiliary", + "namespace": "backing up" }, { "key": "sensor", - "value": "mobile", + "value": "virtual", "namespace": "transmitting" }, { - "key": "application", - "value": "haptic", - "namespace": "programming" + "key": "card", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "protocol", - "value": "open-source", + "key": "interface", + "value": "virtual", "namespace": "programming" } ], @@ -11844,45 +11844,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "5288c9c2-7dde-44f7-a807-42f95054a51b", - "display_name": "feil.example", + "id": "5ff895f1-6685-495e-8c83-8f1cf81d2942", + "display_name": "wisoky-reichel.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-06T20:51:09.103Z", + "stale_timestamp": "2034-11-22T20:51:09.103Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.103Z", + "updated": "2024-11-22T20:51:09.103Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "neural", - "namespace": "navigating" - }, - { - "key": "application", - "value": "multi-byte", - "namespace": "overriding" + "key": "circuit", + "value": "solid state", + "namespace": "programming" }, { - "key": "array", - "value": "bluetooth", - "namespace": "programming" + "key": "matrix", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "panel", - "value": "optical", - "namespace": "backing up" + "key": "program", + "value": "open-source", + "namespace": "copying" }, { - "key": "pixel", - "value": "1080p", - "namespace": "parsing" + "key": "protocol", + "value": "multi-byte", + "namespace": "compressing" + }, + { + "key": "port", + "value": "cross-platform", + "namespace": "connecting" } ], "type": "system", @@ -11890,45 +11890,45 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] }, { - "id": "77d4d842-9f31-4811-b68b-062607e3362a", - "display_name": "lang.test", + "id": "603d22c3-0198-4c20-9c2c-f4c8ea69adfd", + "display_name": "rodriguez.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-06T20:51:09.053Z", + "stale_timestamp": "2034-11-22T20:51:09.053Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.053Z", + "updated": "2024-11-22T20:51:09.054Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "mobile", - "namespace": "hacking" + "key": "hard drive", + "value": "primary", + "namespace": "generating" }, { - "key": "program", - "value": "cross-platform", - "namespace": "connecting" + "key": "driver", + "value": "primary", + "namespace": "overriding" }, { - "key": "microchip", - "value": "optical", - "namespace": "bypassing" + "key": "circuit", + "value": "back-end", + "namespace": "navigating" }, { - "key": "pixel", - "value": "wireless", - "namespace": "calculating" + "key": "bandwidth", + "value": "online", + "namespace": "hacking" }, { - "key": "transmitter", - "value": "haptic", - "namespace": "indexing" + "key": "alarm", + "value": "primary", + "namespace": "parsing" } ], "type": "system", @@ -11936,8 +11936,8 @@ "os_minor_version": 0, "policies": [ { - "id": "46cfcf5a-4a9a-4049-9b3a-99810c2eeaad", - "title": "Cupiditate veritatis voluptatem quasi." + "id": "14270828-737e-4e5d-95f8-bfadf65be6b2", + "title": "Quia optio neque maxime." } ] } @@ -11949,9 +11949,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/14270828-737e-4e5d-95f8-bfadf65be6b2/systems?limit=10&offset=0", + "last": "/api/compliance/v2/reports/14270828-737e-4e5d-95f8-bfadf65be6b2/systems?limit=10&offset=20", + "next": "/api/compliance/v2/reports/14270828-737e-4e5d-95f8-bfadf65be6b2/systems?limit=10&offset=10" } }, "summary": "", @@ -11961,38 +11961,38 @@ "value": { "data": [ { - "id": "07006905-6191-49fc-9e5c-9c86367eb92c", - "display_name": "lehner-bernhard.example", + "id": "02bb7762-7f12-4b84-a81b-46104e359b57", + "display_name": "homenick-cronin.test", "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-06T20:51:09.423Z", + "stale_timestamp": "2034-11-22T20:51:09.423Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.423Z", + "updated": "2024-11-22T20:51:09.423Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "redundant", - "namespace": "programming" - }, - { - "key": "transmitter", - "value": "back-end", + "key": "microchip", + "value": "bluetooth", "namespace": "compressing" }, { - "key": "feed", + "key": "alarm", "value": "neural", - "namespace": "copying" + "namespace": "generating" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "connecting" + "key": "transmitter", + "value": "open-source", + "namespace": "generating" }, { - "key": "capacitor", - "value": "redundant", + "key": "panel", + "value": "1080p", + "namespace": "overriding" + }, + { + "key": "interface", + "value": "solid state", "namespace": "backing up" } ], @@ -12001,45 +12001,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "07c81bdd-5092-47eb-962c-4a154a8acaa7", - "display_name": "terry-parisian.test", + "id": "1980effb-8f86-41ca-9c4a-ab18cc73dc79", + "display_name": "cummerata.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-06T20:51:09.358Z", + "stale_timestamp": "2034-11-22T20:51:09.358Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.358Z", + "updated": "2024-11-22T20:51:09.358Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "solid state", - "namespace": "backing up" - }, - { - "key": "sensor", - "value": "virtual", - "namespace": "bypassing" + "key": "capacitor", + "value": "1080p", + "namespace": "indexing" }, { - "key": "bus", - "value": "1080p", - "namespace": "generating" + "key": "interface", + "value": "back-end", + "namespace": "programming" }, { - "key": "feed", - "value": "online", + "key": "firewall", + "value": "solid state", "namespace": "backing up" }, { - "key": "alarm", - "value": "auxiliary", + "key": "circuit", + "value": "digital", "namespace": "compressing" + }, + { + "key": "matrix", + "value": "online", + "namespace": "transmitting" } ], "type": "system", @@ -12047,45 +12047,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "0f659b4b-97a5-4ee4-adf6-f71bbb8cb808", - "display_name": "kuhlman-beatty.test", + "id": "1d88fedc-ccaa-40e6-a607-abf76b59a6f8", + "display_name": "renner-hermann.example", "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-06T20:51:09.456Z", + "stale_timestamp": "2034-11-22T20:51:09.456Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.456Z", + "updated": "2024-11-22T20:51:09.456Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "mobile", - "namespace": "programming" + "key": "driver", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "navigating" + "key": "array", + "value": "virtual", + "namespace": "programming" }, { "key": "matrix", - "value": "multi-byte", - "namespace": "hacking" + "value": "mobile", + "namespace": "transmitting" }, { - "key": "panel", + "key": "protocol", "value": "open-source", - "namespace": "navigating" + "namespace": "overriding" }, { - "key": "bandwidth", - "value": "auxiliary", - "namespace": "copying" + "key": "microchip", + "value": "optical", + "namespace": "overriding" } ], "type": "system", @@ -12093,45 +12093,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "17683605-7604-403d-8261-020f01eee67b", - "display_name": "sporer.example", + "id": "2a0711b3-09e1-4427-9698-379b57709500", + "display_name": "pagac-cormier.example", "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-06T20:51:09.353Z", + "stale_timestamp": "2034-11-22T20:51:09.353Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.353Z", + "updated": "2024-11-22T20:51:09.353Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "bluetooth", - "namespace": "quantifying" + "key": "monitor", + "value": "open-source", + "namespace": "compressing" }, { - "key": "driver", - "value": "auxiliary", - "namespace": "programming" + "key": "panel", + "value": "wireless", + "namespace": "quantifying" }, { - "key": "application", - "value": "redundant", - "namespace": "hacking" + "key": "driver", + "value": "wireless", + "namespace": "backing up" }, { - "key": "capacitor", - "value": "primary", - "namespace": "indexing" + "key": "protocol", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "hard drive", - "value": "back-end", - "namespace": "copying" + "key": "program", + "value": "auxiliary", + "namespace": "programming" } ], "type": "system", @@ -12139,45 +12139,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "1d8bf7a3-b24e-4bcd-b509-35cc42bd52a9", - "display_name": "reilly.test", + "id": "309ec094-452a-48d4-ab3c-efe12a8c85b9", + "display_name": "altenwerth.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-06T20:51:09.369Z", + "stale_timestamp": "2034-11-22T20:51:09.369Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.369Z", + "updated": "2024-11-22T20:51:09.369Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "multi-byte", - "namespace": "compressing" + "key": "bandwidth", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "monitor", - "value": "mobile", - "namespace": "compressing" + "key": "panel", + "value": "digital", + "namespace": "quantifying" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "calculating" + "key": "hard drive", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "panel", - "value": "redundant", + "key": "sensor", + "value": "back-end", "namespace": "connecting" }, { - "key": "hard drive", - "value": "online", - "namespace": "compressing" + "key": "panel", + "value": "bluetooth", + "namespace": "parsing" } ], "type": "system", @@ -12185,45 +12185,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "30203aea-7566-40d4-a474-f6f62fafd866", - "display_name": "medhurst-paucek.example", + "id": "4dc58304-9dc5-4eaa-a70f-6c7736790de6", + "display_name": "macejkovic.test", "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-06T20:51:09.347Z", + "stale_timestamp": "2034-11-22T20:51:09.347Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.347Z", + "updated": "2024-11-22T20:51:09.347Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "back-end", + "key": "circuit", + "value": "1080p", "namespace": "hacking" }, { - "key": "panel", - "value": "haptic", + "key": "system", + "value": "wireless", "namespace": "calculating" }, { - "key": "bus", - "value": "optical", - "namespace": "overriding" + "key": "hard drive", + "value": "open-source", + "namespace": "parsing" }, { "key": "hard drive", - "value": "solid state", - "namespace": "copying" + "value": "primary", + "namespace": "parsing" }, { - "key": "port", - "value": "neural", - "namespace": "overriding" + "key": "firewall", + "value": "haptic", + "namespace": "connecting" } ], "type": "system", @@ -12231,45 +12231,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "3352df28-21bb-4e0e-abd2-1512e5593f65", - "display_name": "damore-johns.test", + "id": "55790060-f7b4-42f9-9229-6535b1bae306", + "display_name": "halvorson.test", "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-06T20:51:09.462Z", + "stale_timestamp": "2034-11-22T20:51:09.462Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.462Z", + "updated": "2024-11-22T20:51:09.462Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "virtual", - "namespace": "transmitting" + "key": "panel", + "value": "bluetooth", + "namespace": "overriding" }, { - "key": "pixel", - "value": "online", - "namespace": "generating" + "key": "circuit", + "value": "wireless", + "namespace": "compressing" }, { - "key": "interface", - "value": "open-source", - "namespace": "navigating" + "key": "microchip", + "value": "digital", + "namespace": "generating" }, { - "key": "alarm", - "value": "1080p", - "namespace": "navigating" + "key": "system", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "parsing" + "key": "alarm", + "value": "neural", + "namespace": "indexing" } ], "type": "system", @@ -12277,45 +12277,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "3c2b367c-e425-489e-a468-b4e8626762b1", - "display_name": "wisozk.test", + "id": "60b9ec5c-e19a-42d1-b4f9-30872bfd32a2", + "display_name": "wuckert-powlowski.example", "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", - "insights_id": null, - "tags": [ - { - "key": "pixel", - "value": "solid state", - "namespace": "compressing" - }, + "culled_timestamp": "2034-12-06T20:51:09.387Z", + "stale_timestamp": "2034-11-22T20:51:09.387Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.387Z", + "updated": "2024-11-22T20:51:09.387Z", + "insights_id": null, + "tags": [ { - "key": "matrix", - "value": "bluetooth", - "namespace": "quantifying" + "key": "interface", + "value": "neural", + "namespace": "indexing" }, { - "key": "microchip", - "value": "redundant", - "namespace": "generating" + "key": "bus", + "value": "open-source", + "namespace": "copying" }, { - "key": "bandwidth", - "value": "mobile", - "namespace": "navigating" + "key": "card", + "value": "solid state", + "namespace": "transmitting" }, { - "key": "monitor", + "key": "microchip", "value": "optical", - "namespace": "bypassing" + "namespace": "backing up" + }, + { + "key": "sensor", + "value": "primary", + "namespace": "generating" } ], "type": "system", @@ -12323,45 +12323,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "3ca61730-3e9b-4374-bcef-b1a38eb6ac40", - "display_name": "walsh.example", + "id": "6d020b73-9f4a-401c-99a3-1bd1fab1af90", + "display_name": "flatley.test", "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-06T20:51:09.479Z", + "stale_timestamp": "2034-11-22T20:51:09.479Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.479Z", + "updated": "2024-11-22T20:51:09.479Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "multi-byte", - "namespace": "programming" - }, - { - "key": "protocol", - "value": "cross-platform", + "key": "matrix", + "value": "mobile", "namespace": "overriding" }, { - "key": "port", - "value": "cross-platform", + "key": "capacitor", + "value": "1080p", "namespace": "navigating" }, { - "key": "system", - "value": "online", - "namespace": "backing up" + "key": "alarm", + "value": "haptic", + "namespace": "copying" }, { - "key": "sensor", - "value": "back-end", - "namespace": "transmitting" + "key": "driver", + "value": "open-source", + "namespace": "connecting" + }, + { + "key": "microchip", + "value": "1080p", + "namespace": "parsing" } ], "type": "system", @@ -12369,45 +12369,45 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] }, { - "id": "3f32c2a0-1c2e-4777-94b1-daeb75f295e1", - "display_name": "roberts.test", + "id": "7f64019b-0a05-4a05-8512-4cab1bdaa228", + "display_name": "jacobi-herman.test", "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-06T20:51:09.402Z", + "stale_timestamp": "2034-11-22T20:51:09.402Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.402Z", + "updated": "2024-11-22T20:51:09.402Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "auxiliary", - "namespace": "hacking" + "key": "protocol", + "value": "bluetooth", + "namespace": "compressing" }, { - "key": "array", - "value": "optical", - "namespace": "indexing" + "key": "system", + "value": "online", + "namespace": "hacking" }, { - "key": "card", - "value": "back-end", - "namespace": "parsing" + "key": "sensor", + "value": "solid state", + "namespace": "backing up" }, { "key": "panel", - "value": "mobile", - "namespace": "generating" + "value": "1080p", + "namespace": "synthesizing" }, { "key": "port", - "value": "redundant", - "namespace": "connecting" + "value": "haptic", + "namespace": "overriding" } ], "type": "system", @@ -12415,8 +12415,8 @@ "os_minor_version": 0, "policies": [ { - "id": "03f87dec-2804-4e1f-bbd9-6101573e2cee", - "title": "Cum minus et et." + "id": "c253bede-e015-41fd-8154-49d6053c9cc6", + "title": "Fugiat beatae repellendus pariatur." } ] } @@ -12429,9 +12429,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/c253bede-e015-41fd-8154-49d6053c9cc6/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/reports/c253bede-e015-41fd-8154-49d6053c9cc6/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/reports/c253bede-e015-41fd-8154-49d6053c9cc6/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", @@ -12441,39 +12441,39 @@ "value": { "data": [ { - "id": "0578e565-b727-42cf-bf68-8a4d7d5c1fa7", - "display_name": "legros-turcotte.example", + "id": "0194c350-6202-4f03-862c-80796896110e", + "display_name": "kohler.test", "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-06T20:51:09.793Z", + "stale_timestamp": "2034-11-22T20:51:09.793Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.793Z", + "updated": "2024-11-22T20:51:09.793Z", "insights_id": null, "tags": [ { "key": "microchip", - "value": "haptic", - "namespace": "backing up" + "value": "neural", + "namespace": "programming" }, { - "key": "protocol", - "value": "virtual", - "namespace": "programming" + "key": "hard drive", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "port", - "value": "solid state", - "namespace": "backing up" + "key": "bandwidth", + "value": "back-end", + "namespace": "generating" }, { - "key": "system", - "value": "bluetooth", - "namespace": "parsing" + "key": "transmitter", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "sensor", + "key": "array", "value": "optical", - "namespace": "parsing" + "namespace": "overriding" } ], "type": "system", @@ -12481,45 +12481,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "1e4f2f36-30d1-4c2d-8196-300e405ad9f9", - "display_name": "feil.test", + "id": "0d1f88b2-47c0-4fab-b035-5aec85d2c0a5", + "display_name": "larkin.test", "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-06T20:51:09.783Z", + "stale_timestamp": "2034-11-22T20:51:09.783Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.783Z", + "updated": "2024-11-22T20:51:09.783Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "virtual", - "namespace": "overriding" + "key": "port", + "value": "primary", + "namespace": "compressing" }, { - "key": "pixel", - "value": "mobile", - "namespace": "programming" + "key": "card", + "value": "neural", + "namespace": "parsing" }, { - "key": "circuit", - "value": "auxiliary", - "namespace": "quantifying" + "key": "array", + "value": "virtual", + "namespace": "navigating" }, { - "key": "firewall", - "value": "solid state", - "namespace": "overriding" + "key": "bandwidth", + "value": "haptic", + "namespace": "copying" }, { - "key": "bus", - "value": "open-source", - "namespace": "connecting" + "key": "circuit", + "value": "redundant", + "namespace": "synthesizing" } ], "type": "system", @@ -12527,45 +12527,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "2ee8080b-2552-4ce4-96c2-225d0df60535", - "display_name": "spencer-heidenreich.example", + "id": "17d851bb-0f11-4ffe-a516-c2f653b2b2af", + "display_name": "douglas.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-06T20:51:09.736Z", + "stale_timestamp": "2034-11-22T20:51:09.736Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.736Z", + "updated": "2024-11-22T20:51:09.736Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "neural", - "namespace": "generating" + "key": "feed", + "value": "haptic", + "namespace": "programming" }, { - "key": "circuit", - "value": "solid state", - "namespace": "compressing" + "key": "program", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "protocol", - "value": "solid state", - "namespace": "generating" + "key": "card", + "value": "virtual", + "namespace": "compressing" }, { - "key": "matrix", - "value": "open-source", - "namespace": "programming" + "key": "card", + "value": "optical", + "namespace": "parsing" }, { - "key": "microchip", - "value": "redundant", - "namespace": "bypassing" + "key": "panel", + "value": "mobile", + "namespace": "copying" } ], "type": "system", @@ -12573,45 +12573,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "378066ab-4eb3-4f90-bac4-30da504acbc3", - "display_name": "lubowitz-fisher.example", + "id": "2ad310e9-26c6-414e-9459-6282ace4fa9f", + "display_name": "gutmann-schumm.test", "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-06T20:51:09.747Z", + "stale_timestamp": "2034-11-22T20:51:09.747Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.747Z", + "updated": "2024-11-22T20:51:09.747Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "solid state", - "namespace": "navigating" + "key": "circuit", + "value": "online", + "namespace": "overriding" }, { - "key": "circuit", - "value": "redundant", - "namespace": "parsing" + "key": "transmitter", + "value": "neural", + "namespace": "transmitting" }, { "key": "matrix", - "value": "multi-byte", + "value": "mobile", "namespace": "generating" }, { - "key": "circuit", - "value": "neural", - "namespace": "parsing" + "key": "driver", + "value": "auxiliary", + "namespace": "backing up" }, { - "key": "hard drive", - "value": "haptic", - "namespace": "indexing" + "key": "bus", + "value": "bluetooth", + "namespace": "compressing" } ], "type": "system", @@ -12619,45 +12619,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "59b9219c-bb1f-48b7-8543-7d76f23d8801", - "display_name": "dickens.test", + "id": "360c8205-c101-41f3-bea7-63b80219895d", + "display_name": "mcdermott-gutkowski.test", "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-06T20:51:09.751Z", + "stale_timestamp": "2034-11-22T20:51:09.751Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.751Z", + "updated": "2024-11-22T20:51:09.752Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "primary", - "namespace": "hacking" + "key": "port", + "value": "cross-platform", + "namespace": "quantifying" }, { - "key": "transmitter", - "value": "redundant", - "namespace": "parsing" + "key": "system", + "value": "cross-platform", + "namespace": "calculating" }, { - "key": "matrix", - "value": "mobile", - "namespace": "navigating" + "key": "bus", + "value": "optical", + "namespace": "parsing" }, { - "key": "card", - "value": "bluetooth", - "namespace": "copying" + "key": "matrix", + "value": "back-end", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "cross-platform", - "namespace": "bypassing" + "key": "protocol", + "value": "neural", + "namespace": "compressing" } ], "type": "system", @@ -12665,45 +12665,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "5e85b61a-0a54-4cac-9617-b6799c3cbeb8", - "display_name": "fay.test", + "id": "3bfd9c4c-ca74-4190-8c22-65d0d5c7222f", + "display_name": "conn-jacobson.example", "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-06T20:51:09.766Z", + "stale_timestamp": "2034-11-22T20:51:09.766Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.766Z", + "updated": "2024-11-22T20:51:09.766Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "digital", - "namespace": "transmitting" + "key": "circuit", + "value": "optical", + "namespace": "bypassing" }, { - "key": "program", - "value": "cross-platform", - "namespace": "indexing" + "key": "transmitter", + "value": "neural", + "namespace": "programming" }, { - "key": "monitor", - "value": "auxiliary", - "namespace": "bypassing" + "key": "driver", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "program", - "value": "virtual", - "namespace": "generating" + "key": "feed", + "value": "online", + "namespace": "backing up" }, { - "key": "panel", - "value": "1080p", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "primary", + "namespace": "backing up" } ], "type": "system", @@ -12711,45 +12711,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "6e4801a0-a293-4523-bb6a-7876181fa6ac", - "display_name": "goyette.example", + "id": "5672df69-353d-4fdf-b5d7-17c76c193938", + "display_name": "hoeger.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-06T20:51:09.756Z", + "stale_timestamp": "2034-11-22T20:51:09.756Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.756Z", + "updated": "2024-11-22T20:51:09.756Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "optical", - "namespace": "hacking" + "key": "array", + "value": "primary", + "namespace": "generating" }, { - "key": "transmitter", - "value": "virtual", + "key": "panel", + "value": "neural", "namespace": "overriding" }, { "key": "array", - "value": "auxiliary", - "namespace": "bypassing" + "value": "optical", + "namespace": "backing up" }, { - "key": "microchip", - "value": "back-end", - "namespace": "generating" + "key": "pixel", + "value": "online", + "namespace": "indexing" }, { - "key": "sensor", - "value": "open-source", - "namespace": "bypassing" + "key": "bus", + "value": "auxiliary", + "namespace": "quantifying" } ], "type": "system", @@ -12757,45 +12757,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "70b4ccc3-3e2e-45bc-a817-e067cb01a4ec", - "display_name": "flatley.test", + "id": "5f068cc7-7ec8-4b61-8b35-db1740b26227", + "display_name": "fahey.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-06T20:51:09.832Z", + "stale_timestamp": "2034-11-22T20:51:09.832Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.832Z", + "updated": "2024-11-22T20:51:09.832Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "1080p", - "namespace": "transmitting" + "key": "card", + "value": "primary", + "namespace": "generating" }, { - "key": "array", - "value": "primary", - "namespace": "copying" + "key": "capacitor", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "panel", + "key": "port", "value": "digital", - "namespace": "copying" + "namespace": "compressing" }, { - "key": "sensor", - "value": "open-source", - "namespace": "programming" + "key": "application", + "value": "online", + "namespace": "copying" }, { - "key": "program", - "value": "open-source", - "namespace": "calculating" + "key": "feed", + "value": "auxiliary", + "namespace": "overriding" } ], "type": "system", @@ -12803,45 +12803,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "77f76316-2a97-4fa0-b2a2-227eef4257e3", - "display_name": "zemlak.test", + "id": "6471d85c-8fa7-4b82-854a-356bcef12ee2", + "display_name": "hodkiewicz.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-06T20:51:09.823Z", + "stale_timestamp": "2034-11-22T20:51:09.823Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.823Z", + "updated": "2024-11-22T20:51:09.823Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "1080p", - "namespace": "calculating" + "key": "array", + "value": "primary", + "namespace": "bypassing" }, { - "key": "circuit", - "value": "cross-platform", + "key": "pixel", + "value": "neural", "namespace": "programming" }, { - "key": "interface", - "value": "auxiliary", - "namespace": "compressing" + "key": "driver", + "value": "back-end", + "namespace": "navigating" }, { - "key": "matrix", - "value": "haptic", - "namespace": "overriding" + "key": "array", + "value": "neural", + "namespace": "bypassing" }, { - "key": "bus", - "value": "back-end", - "namespace": "parsing" + "key": "transmitter", + "value": "optical", + "namespace": "backing up" } ], "type": "system", @@ -12849,45 +12849,45 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] }, { - "id": "7baa35d0-9d09-4fbc-9ff0-f69b2ae89d35", - "display_name": "runte.example", + "id": "6d494d6a-08ea-4e73-ac3a-339fd66c9c49", + "display_name": "dach-hettinger.example", "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-06T20:51:09.742Z", + "stale_timestamp": "2034-11-22T20:51:09.742Z", + "stale_warning_timestamp": "2034-11-29T20:51:09.742Z", + "updated": "2024-11-22T20:51:09.742Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "multi-byte", - "namespace": "generating" + "key": "program", + "value": "optical", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "solid state", - "namespace": "synthesizing" + "key": "microchip", + "value": "online", + "namespace": "copying" }, { - "key": "feed", - "value": "mobile", - "namespace": "overriding" + "key": "transmitter", + "value": "optical", + "namespace": "synthesizing" }, { - "key": "panel", - "value": "mobile", - "namespace": "copying" + "key": "microchip", + "value": "digital", + "namespace": "hacking" }, { "key": "bandwidth", - "value": "redundant", - "namespace": "compressing" + "value": "optical", + "namespace": "overriding" } ], "type": "system", @@ -12895,8 +12895,8 @@ "os_minor_version": 0, "policies": [ { - "id": "7061f267-cff8-45e2-a2b3-d3e7cf716b6b", - "title": "Ullam est quas voluptatibus." + "id": "b6ce2878-d1e6-4e1c-9013-2483a473fd46", + "title": "Et sit cum accusantium." } ] } @@ -12909,9 +12909,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/b6ce2878-d1e6-4e1c-9013-2483a473fd46/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/b6ce2878-d1e6-4e1c-9013-2483a473fd46/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/reports/b6ce2878-d1e6-4e1c-9013-2483a473fd46/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -13069,7 +13069,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 +13080,39 @@ "Returns a System under a Report": { "value": { "data": { - "id": "2016e398-a531-4aa2-a0bf-2fb584b3c46a", - "display_name": "vonrueden.example", + "id": "9977bdde-cc6f-4576-96d6-2fcb33b831c3", + "display_name": "rice.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-06T20:51:11.107Z", + "stale_timestamp": "2034-11-22T20:51:11.107Z", + "stale_warning_timestamp": "2034-11-29T20:51:11.107Z", + "updated": "2024-11-22T20:51:11.107Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "neural", - "namespace": "overriding" + "key": "matrix", + "value": "online", + "namespace": "programming" }, { - "key": "circuit", - "value": "auxiliary", + "key": "monitor", + "value": "bluetooth", "namespace": "parsing" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "backing up" + "key": "microchip", + "value": "redundant", + "namespace": "compressing" }, { - "key": "program", - "value": "1080p", + "key": "capacitor", + "value": "neural", "namespace": "transmitting" }, { - "key": "application", - "value": "primary", - "namespace": "navigating" + "key": "array", + "value": "solid state", + "namespace": "generating" } ], "type": "system", @@ -13120,8 +13120,8 @@ "os_minor_version": 0, "policies": [ { - "id": "b20e903a-d4cb-490a-b256-af8333d3e68f", - "title": "Ad qui sed sunt." + "id": "d7e7dcd0-8e92-4cdd-9d55-525cb1df5792", + "title": "Voluptatem pariatur ut est." } ] } @@ -13154,7 +13154,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 373ed955-ebc7-4e21-9100-852c1016203b" ] }, "summary": "", @@ -13251,7 +13251,7 @@ "tags": [ "Policies" ], - "description": "Lists Tailorings", + "description": "Retrieve a list of all tailorings", "operationId": "Tailorings", "responses": { "200": { @@ -13263,104 +13263,104 @@ "value": { "data": [ { - "id": "017218fa-d895-40b3-8329-dfbddca8eb73", - "profile_id": "1298b97a-91f0-4367-9c46-038f4cc632d7", - "os_minor_version": 6, + "id": "0205bdb3-0e03-41f9-89d9-7c0d1c5fb160", + "profile_id": "bbd477df-24a5-461e-bee9-57c74cfd2189", + "os_minor_version": 23, "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": "05d48063-92f9-4801-a33c-94023f666d2a", + "security_guide_version": "100.97.5" }, { - "id": "01fb5803-2799-4afe-b660-811afcbbb883", - "profile_id": "a11697a6-4fc7-4780-b49a-db1ac8140990", - "os_minor_version": 23, + "id": "0332ea54-44bd-4ad4-a5d8-10273869fb01", + "profile_id": "7d05df42-5338-4a9c-bad2-99669c03a612", + "os_minor_version": 5, "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": "810c7fe6-f504-4c71-aeac-ccd1939dff3f", + "security_guide_version": "100.96.37" }, { - "id": "03860750-850c-49e5-8f6d-75c4e8696740", - "profile_id": "6d8e7267-d1c6-47a2-8b93-5743a2bb9098", - "os_minor_version": 8, + "id": "07a2e203-ef6c-48e1-b3ad-2c64777181c1", + "profile_id": "1257d4eb-392f-4dd7-81c6-854b4e078766", + "os_minor_version": 22, "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": "b59bc169-c815-4a2b-b734-37c4b6ceabb7", + "security_guide_version": "100.97.4" }, { - "id": "24f31a2e-2b97-4175-a42d-62add283dc42", - "profile_id": "f10c17bb-4b56-4f6b-a830-3f1f66ad0e2a", - "os_minor_version": 24, + "id": "0fbf1c18-12ff-4e22-982d-ac5bd8aa27ec", + "profile_id": "043d18bd-6285-4568-94b8-dd700c091047", + "os_minor_version": 18, "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": "5c35d312-fea6-49c9-869b-2086f92bcbcc", + "security_guide_version": "100.97.0" }, { - "id": "2ef0149d-4752-4f4f-8800-2334c9933c01", - "profile_id": "a60f9749-adc7-4c2e-8a90-dd4555b4f8b7", - "os_minor_version": 20, + "id": "14802ed4-4930-4699-9d0c-b3c85bc4bc72", + "profile_id": "0b25c0f9-c810-4352-9122-7503d1a4506b", + "os_minor_version": 24, "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": "bd3fb41b-ebe6-43b1-9b88-f092cce7f850", + "security_guide_version": "100.97.6" }, { - "id": "5d392a68-4016-4054-aad0-b7e4db65caf1", - "profile_id": "8f30fbdd-9311-454f-a707-11a759cacf6c", - "os_minor_version": 4, + "id": "1bf237d2-b587-41aa-9c70-5964797d16a6", + "profile_id": "827bc0ad-14d3-438a-803c-52c3acdeb38e", + "os_minor_version": 17, "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": "7b7ef46f-9039-437f-aff6-2d711912203f", + "security_guide_version": "100.96.49" }, { - "id": "641842ac-69b0-4f68-bde1-0e83c830ed9f", - "profile_id": "be6b155a-e89b-45e1-8fa1-2caede8858ee", - "os_minor_version": 12, + "id": "281b56a8-7169-4068-b727-80a960db4024", + "profile_id": "021c0564-cb60-4568-a7bb-cd6da20723a4", + "os_minor_version": 2, "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": "138fb444-b247-4918-a271-0f5d44541e2c", + "security_guide_version": "100.96.34" }, { - "id": "6e560df1-972f-4d48-949d-985c8319e5eb", - "profile_id": "78801fe3-9833-45cd-ac60-c94f80a3ecd3", - "os_minor_version": 21, + "id": "33ba167b-5cba-473e-825b-0091c7b3f5d0", + "profile_id": "7d2bd49e-907b-4b16-8ce6-b0d4d633861f", + "os_minor_version": 7, "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": "3f0c8790-9f93-4bec-b29b-85a742cb462f", + "security_guide_version": "100.96.39" }, { - "id": "7153ef50-aaca-40f2-acd9-50703fd6f118", - "profile_id": "81ac7d16-fcec-4fc8-b8d3-1891d3ab2b1b", - "os_minor_version": 13, + "id": "3782627b-22f2-4b83-b7ff-8dadbf739590", + "profile_id": "09d89fa6-36b6-499c-93d5-281bfca0e734", + "os_minor_version": 3, "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": "e9e01e63-9482-4fb0-843d-7a99de41d69e", + "security_guide_version": "100.96.35" }, { - "id": "71582a03-aabd-4eae-87ef-899b8bf20bb7", - "profile_id": "c6821719-28da-4c23-b5c6-d9640213ac24", - "os_minor_version": 2, + "id": "38beb84a-1a7d-41a1-ab06-3a7f0b72c1e9", + "profile_id": "8bb2c509-4b0b-4ae7-bbc6-a8087e7369f6", + "os_minor_version": 21, "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": "5930996f-4007-46c0-aaf3-50f86c93a73b", + "security_guide_version": "100.97.3" } ], "meta": { @@ -13369,9 +13369,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/b54b5443-455c-460d-bce4-096b3037766e/tailorings?limit=10&offset=0", + "last": "/api/compliance/v2/policies/b54b5443-455c-460d-bce4-096b3037766e/tailorings?limit=10&offset=20", + "next": "/api/compliance/v2/policies/b54b5443-455c-460d-bce4-096b3037766e/tailorings?limit=10&offset=10" } }, "summary": "", @@ -13381,104 +13381,104 @@ "value": { "data": [ { - "id": "c5248f8f-c20d-4bb0-b5a8-7baa036c37ed", - "profile_id": "600e600c-9d31-42e6-81b5-2ab1c91f728f", + "id": "ddedaa15-cb36-4404-be6b-d5b0ac506aba", + "profile_id": "0c8c0542-d060-4810-91b8-9973911a5da7", "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": "12952927-e444-433f-a67d-ae43fcf41a8f", + "security_guide_version": "100.97.7" }, { - "id": "d2824ada-e333-47fa-bd25-58e545038963", - "profile_id": "c5dfa7bb-70fa-42ce-849e-81679f1e4be2", + "id": "c522ecbc-e86f-4a60-85e8-a876910a046d", + "profile_id": "3e19e07e-475c-4fa1-afd0-abe63997b88f", "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": "b8c4ba8e-b7aa-4014-9684-575f42737d75", + "security_guide_version": "100.97.8" }, { - "id": "b8276519-2191-4074-9bc3-7a8904f02c2d", - "profile_id": "470ee156-5a72-4135-809e-34a808e7692b", + "id": "f6d84625-7978-431f-90e7-f6ef100a0391", + "profile_id": "ea5d3243-9f07-43f0-860e-615daefed51e", "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": "137c2a0a-4a9d-494b-95c5-7c1233312e43", + "security_guide_version": "100.97.9" }, { - "id": "7d094131-2571-4016-81cf-d8ccf5ff835a", - "profile_id": "787ea0f0-0962-4b16-ac2c-db5c07c5fddc", + "id": "b0ab96c8-3535-442d-976b-81b0defa0781", + "profile_id": "f3fdab15-0c7d-482f-996f-df21a73dc236", "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": "201d7f39-5bd7-42c5-ada3-ee1e43e7c6e5", + "security_guide_version": "100.97.10" }, { - "id": "f8e75944-23c4-445a-82c7-2ae8db133600", - "profile_id": "d55cab9a-504f-4c9b-a3dd-4cbe9b951e20", + "id": "2085f6df-1f5b-4e9f-a90f-85ef2b7af392", + "profile_id": "161e63c6-f47b-4503-b455-aacf82d91494", "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": "dc4349c5-221b-4505-8755-3620ec14c693", + "security_guide_version": "100.97.11" }, { - "id": "e549eac4-3bdd-4740-a62e-760456a3d408", - "profile_id": "722e247c-817d-4191-a53d-788c6ec6ea94", + "id": "99b1b3a0-4efa-4199-99c5-2f3a7b077e77", + "profile_id": "62821cdf-fee5-4a3b-8f18-bb79d135a0dc", "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": "f287dc48-a334-401f-ac48-131a9054a229", + "security_guide_version": "100.97.12" }, { - "id": "1765a63a-d61b-4217-a2e1-5f96c516a1f7", - "profile_id": "6c1d35df-2c98-471c-9296-0536395e7bfc", + "id": "4e24bb9c-afcc-463e-9a9d-049a4c4da210", + "profile_id": "31aa97ff-b40f-4e83-a795-080d4d25cdd5", "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": "3796c6b3-3713-4a28-8110-5e8042b4ebfa", + "security_guide_version": "100.97.13" }, { - "id": "f006c6d1-84eb-421d-abcd-cf6d0fd84249", - "profile_id": "9d464962-f99d-4605-b028-234df26761d8", + "id": "c21c5fe2-2ee9-4ac7-be18-e884f6281fd4", + "profile_id": "461032fc-8dac-42fe-b89d-42a24458fa92", "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": "1766dbd3-868b-4248-b721-9c132dd65d45", + "security_guide_version": "100.97.14" }, { - "id": "a3626185-432a-4bd5-b37f-48637a47da17", - "profile_id": "908ccd80-772a-4fe3-ba1f-91873afeed9c", + "id": "f4976e16-248e-4e3f-b81b-4a07898fd0ca", + "profile_id": "1e4f3608-4d3e-4ea7-86d9-c3a94fc67c90", "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": "3841287c-0954-49d7-92a3-c012c28fedde", + "security_guide_version": "100.97.15" }, { - "id": "c2dafe91-647e-458a-bb8a-51f91a991a4b", - "profile_id": "317cbc1a-05bd-421b-b1b5-dcd937d10016", + "id": "8640258e-648e-45b0-bf90-704225dc0c93", + "profile_id": "0369f638-975d-414c-b190-029cfa7815b8", "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": "16889635-6eb6-41bf-9eb9-bca2aabbbc3b", + "security_guide_version": "100.97.16" } ], "meta": { @@ -13488,37 +13488,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/a2f397bd-c734-4ddf-a343-5e09af4e10a1/tailorings?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/a2f397bd-c734-4ddf-a343-5e09af4e10a1/tailorings?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/a2f397bd-c734-4ddf-a343-5e09af4e10a1/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=14)'": { "value": { "data": [ { - "id": "142816cd-bb3a-4d0b-b6b4-48182ac446c6", - "profile_id": "0528a1c5-b0b7-4008-8e7e-c85142fc3f5a", - "os_minor_version": 23, + "id": "12d30d76-1632-462d-b573-8e70b6db3e80", + "profile_id": "7e06d744-ed41-4588-a4a5-363e8025b3ac", + "os_minor_version": 14, "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": "0580c808-7774-45f4-9ff5-d60811a50267", + "security_guide_version": "100.97.46" } ], "meta": { "total": 1, - "filter": "(os_minor_version=23)", + "filter": "(os_minor_version=14)", "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/1ffd470c-8e51-4df4-869a-43b05dcc1317/tailorings?filter=%28os_minor_version%3D14%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/1ffd470c-8e51-4df4-869a-43b05dcc1317/tailorings?filter=%28os_minor_version%3D14%29&limit=10&offset=0" } }, "summary": "", @@ -13616,14 +13616,14 @@ "Response example": { "value": { "data": { - "id": "a5d88fa7-0644-4622-8088-dc882866e33f", - "profile_id": "ce79966d-72b5-4caa-ac0d-7fd5fed9d4f8", + "id": "8f0e2655-a459-421b-bb08-faf5d1e65885", + "profile_id": "a3c61607-60dd-4d43-9417-ceb1dc04fb36", "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": "cd6d69ce-0bf1-4144-9df8-57f3391cf9d3", + "security_guide_version": "100.99.7" } }, "summary": "", @@ -13691,7 +13691,7 @@ "tags": [ "Policies" ], - "description": "Returns a Tailoring", + "description": "Retrieve a specific tailoring.", "operationId": "Tailoring", "responses": { "200": { @@ -13702,14 +13702,14 @@ "Returns a Tailoring": { "value": { "data": { - "id": "466fdc4b-fd64-44eb-a5f4-63a19842a1f1", - "profile_id": "b7819284-73e6-4749-aad4-fb732592ce8e", + "id": "71bac0eb-fa56-4192-963f-2ec8eabe58d0", + "profile_id": "cbef3391-6c8a-4482-9c04-5cb23d3e418d", "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": "89538a1e-ca5a-4dbc-80da-0afe16ab024f", + "security_guide_version": "100.99.8" } }, "summary": "", @@ -13740,7 +13740,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 46470f84-907a-4d56-9a91-26cfc7857c50" ] }, "summary": "", @@ -13787,7 +13787,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 +13798,16 @@ "Returns the updated Tailoring": { "value": { "data": { - "id": "9a83b88d-f9aa-4c1b-b1c0-3fe1d3dff83b", - "profile_id": "502656ce-77eb-499e-91d8-8a41f4ed5ccc", + "id": "82818135-8f56-4852-9b8f-24a6ce5cc83d", + "profile_id": "4ad9e769-e5b8-428d-862d-3f714fcf6949", "os_minor_version": 1, "value_overrides": { - "43423f44-68bf-4151-bdd5-e0769ffcef6b": "123" + "fa2d3dc3-01d4-4a0b-8a85-f0a1027a70ac": "123" }, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "a0eb03b0-543f-472b-8af3-be0bc76aeb35", - "security_guide_version": "100.99.10" + "security_guide_id": "bfd1ed7c-3d11-4be9-b44b-ee3c3f383f3b", + "security_guide_version": "100.99.9" } }, "summary": "", @@ -13886,101 +13886,101 @@ "Returns the Rule Tree of a Tailoring": { "value": [ { - "id": "408b231f-d476-45da-95a9-991746aa58bf", + "id": "49ebce5b-8571-4c37-b42d-143291a23dfa", "type": "rule_group", "children": [ { - "id": "1e71c2f9-03e3-4fde-8713-7458393da8eb", + "id": "29b9a0c0-a57f-4bb6-a5cc-3a7a0fd47633", "type": "rule" } ] }, { - "id": "3f0f286f-2347-4ab6-b3ae-1e9ee0e4f699", + "id": "c68c1b1c-bbc8-4c87-95f6-9a8ecfa90bcb", "type": "rule_group", "children": [ { - "id": "cf072a23-40d1-4178-9f4d-4cd110062e81", + "id": "882a5e40-55fb-4904-a483-adcbb7126fff", "type": "rule" } ] }, { - "id": "c80afd10-6eaf-4bc5-8630-c04c89b159ff", + "id": "1a2d3d19-69ce-4e1e-b3c6-29806ad316cb", "type": "rule_group", "children": [ { - "id": "3f4ea1ce-9cf6-4144-8458-639a0fe9bc80", + "id": "fc8a2e25-fe25-4287-b196-f7221c6b262b", "type": "rule" } ] }, { - "id": "0cab704d-beef-4182-b282-52a70660c35f", + "id": "ecdec9a8-8262-4f3b-a547-d47097ae6be0", "type": "rule_group", "children": [ { - "id": "3e557c38-e98d-415a-9e98-85927140a9e6", + "id": "1cf5237f-c7a3-4ceb-b850-a5bd26f07094", "type": "rule" } ] }, { - "id": "6d5931b7-55f3-4f6b-8a23-266e83993f87", + "id": "9a0da78e-3ee6-4dbe-875c-5d4b40ad3468", "type": "rule_group", "children": [ { - "id": "532b1ba7-4cbc-4304-b1d6-1ac85ba55d91", + "id": "dd6a4025-7972-4070-b8e7-e2c716c64c8d", "type": "rule" } ] }, { - "id": "f4be9eb4-3f07-4b61-aaa6-efd03a520b13", + "id": "200dc18d-9d62-4abe-b7ae-a6148a277588", "type": "rule_group", "children": [ { - "id": "3116408d-f26d-45a4-bc14-2921a58134e0", + "id": "8d84a89d-ea4c-4a45-bd22-8b2c3f1b4e7a", "type": "rule" } ] }, { - "id": "9e5c485b-adf1-4b78-a3d2-eb339c992555", + "id": "82796027-d60c-4cce-aa06-a0f7411fb96d", "type": "rule_group", "children": [ { - "id": "dcac6001-94c8-4577-9898-555356645237", + "id": "09fcf975-59ae-4c93-974b-34a187c3ea49", "type": "rule" } ] }, { - "id": "78f29873-263c-486d-b016-fb6634240d04", + "id": "e09a8170-c86f-462f-8315-29773b5b13d9", "type": "rule_group", "children": [ { - "id": "3d495a4c-0550-4630-be3d-70b635bac60a", + "id": "967640bd-71f4-4b0d-a6fa-b8fdff2d9695", "type": "rule" } ] }, { - "id": "5d723e5a-a898-445c-a481-62fbb987ef48", + "id": "963c9aac-b41c-43c1-8b29-6a7df32d8f8b", "type": "rule_group", "children": [ { - "id": "e69209f5-e143-4b0e-b98c-daa334666e74", + "id": "a71f07c7-0647-4b0c-bd03-2021e0ad5795", "type": "rule" } ] }, { - "id": "f2e23f4b-e03e-41fb-be61-5eb7732a305b", + "id": "3688129f-1395-4329-871c-e893ae38c8dc", "type": "rule_group", "children": [ { - "id": "8617b7e7-f022-4f87-b2f7-73301829bb2d", + "id": "5583d3ee-1128-4d6a-b34f-cbaf6779a94c", "type": "rule" } ] @@ -14004,7 +14004,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 af55ab56-5cd4-47e0-89c8-01a8d03425ef" ] }, "summary": "", @@ -14053,7 +14053,7 @@ "tags": [ "Policies" ], - "description": "Returns a Tailoring File", + "description": "Retrieve a tailoring file of a specific tailoring.", "operationId": "TailoringFile", "responses": { "200": { @@ -14065,16 +14065,16 @@ "value": { "profiles": [ { - "id": "xccdf_org.ssgproject.content_profile_7c77240c8a3e6302586d8f87e46f17c1", - "title": "Eius tempore dignissimos explicabo.", + "id": "xccdf_org.ssgproject.content_profile_2e758d17249674e0f348e0db67eb07bd", + "title": "Et eos nihil ut.", "groups": {}, "rules": {}, "variables": { - "foo_value_253f58ce-de29-40dc-95ae-877ef0d83b96": { - "value": "531970" + "foo_value_dbe6afc1-bc72-4e24-8ac6-c09e367f87b8": { + "value": "446635" }, - "foo_value_807cf1a3-150f-4bf0-aae0-8d8c6ff5e572": { - "value": "530019" + "foo_value_3affc33a-a585-4dcc-9fd1-b4fcbdc98047": { + "value": "196250" } } } @@ -14201,7 +14201,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 +14213,424 @@ "value": { "data": [ { - "id": "0c95d9f4-63aa-4e08-8fdb-33cfc5468f0f", - "end_time": "2024-11-14T12:11:22.340Z", + "id": "0b4e707d-ef67-4b10-9567-081f7cbb29d6", + "end_time": "2024-11-22T20:50:13.171Z", "failed_rule_count": 0, "supported": true, - "score": 12.9133372308315, + "score": 32.59908262669862, "type": "test_result", - "display_name": "kris.test", + "display_name": "weber.example", "groups": [], "tags": [ { - "key": "protocol", + "key": "monitor", "value": "online", - "namespace": "backing up" + "namespace": "navigating" }, { "key": "card", - "value": "open-source", - "namespace": "calculating" + "value": "solid state", + "namespace": "compressing" }, { - "key": "card", - "value": "primary", - "namespace": "quantifying" + "key": "array", + "value": "digital", + "namespace": "copying" }, { - "key": "system", - "value": "mobile", + "key": "interface", + "value": "online", "namespace": "backing up" }, { - "key": "interface", - "value": "primary", - "namespace": "indexing" + "key": "panel", + "value": "auxiliary", + "namespace": "compressing" } ], "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": "d1dad9e5-2850-4351-a110-6bba3ccf884d", + "security_guide_version": "100.101.35" }, { - "id": "14af3f41-38ee-4661-85c1-5434a87df3ca", - "end_time": "2024-11-14T12:11:22.322Z", + "id": "13809652-bdae-46cf-b834-d233aaa2d02b", + "end_time": "2024-11-22T20:50:13.130Z", "failed_rule_count": 0, "supported": true, - "score": 70.74461592383477, + "score": 12.98478234586277, "type": "test_result", - "display_name": "waelchi.test", + "display_name": "wisoky.test", "groups": [], "tags": [ { - "key": "bus", - "value": "back-end", - "namespace": "bypassing" + "key": "alarm", + "value": "neural", + "namespace": "backing up" }, { - "key": "sensor", - "value": "virtual", - "namespace": "calculating" + "key": "panel", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "application", - "value": "mobile", - "namespace": "compressing" + "key": "sensor", + "value": "digital", + "namespace": "copying" }, { - "key": "application", - "value": "back-end", - "namespace": "quantifying" + "key": "hard drive", + "value": "mobile", + "namespace": "copying" }, { - "key": "port", - "value": "open-source", - "namespace": "hacking" + "key": "system", + "value": "redundant", + "namespace": "parsing" } ], "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": "3ebb2285-c499-422f-8e7e-d50bc63cd508", + "security_guide_version": "100.101.35" }, { - "id": "1f15765c-c430-41eb-9d90-b002c61f3358", - "end_time": "2024-11-14T12:11:22.308Z", + "id": "1a39c862-9cec-4804-92b4-f28d3a72cfc0", + "end_time": "2024-11-22T20:50:13.067Z", "failed_rule_count": 0, "supported": true, - "score": 50.82618716631207, + "score": 46.89448047014185, "type": "test_result", - "display_name": "price.example", + "display_name": "oberbrunner.test", "groups": [], "tags": [ { - "key": "bus", - "value": "back-end", - "namespace": "connecting" + "key": "protocol", + "value": "online", + "namespace": "programming" }, { - "key": "program", - "value": "multi-byte", - "namespace": "compressing" + "key": "transmitter", + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "back-end", - "namespace": "copying" + "key": "sensor", + "value": "multi-byte", + "namespace": "transmitting" }, { - "key": "card", - "value": "back-end", - "namespace": "overriding" + "key": "microchip", + "value": "solid state", + "namespace": "calculating" }, { - "key": "monitor", - "value": "auxiliary", - "namespace": "backing up" + "key": "bus", + "value": "open-source", + "namespace": "parsing" } ], "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": "39cae536-ca61-42b4-901f-926c505ffb5e", + "security_guide_version": "100.101.35" }, { - "id": "208eb43b-77c6-4668-86ab-6babf4a0990e", - "end_time": "2024-11-14T12:11:22.385Z", + "id": "260bcf49-7619-4f04-b90f-1cbc4b5e938e", + "end_time": "2024-11-22T20:50:13.104Z", "failed_rule_count": 0, "supported": true, - "score": 67.40866902110365, + "score": 62.66677098585325, "type": "test_result", - "display_name": "brakus.test", + "display_name": "hayes.test", "groups": [], "tags": [ { - "key": "card", - "value": "auxiliary", - "namespace": "quantifying" + "key": "monitor", + "value": "neural", + "namespace": "bypassing" }, { - "key": "monitor", - "value": "wireless", - "namespace": "programming" + "key": "alarm", + "value": "virtual", + "namespace": "synthesizing" }, { - "key": "panel", - "value": "multi-byte", - "namespace": "transmitting" + "key": "array", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "driver", - "value": "virtual", - "namespace": "compressing" + "key": "alarm", + "value": "digital", + "namespace": "hacking" }, { - "key": "application", - "value": "bluetooth", - "namespace": "compressing" + "key": "interface", + "value": "solid state", + "namespace": "synthesizing" } ], "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": "2fb5c01d-b991-4f77-bb6b-2a34f5bcb0ad", + "security_guide_version": "100.101.35" }, { - "id": "2524e3bb-ed3c-4f88-8cb8-9ac0887873dc", - "end_time": "2024-11-14T12:11:22.351Z", + "id": "2ab6471b-bc72-4a21-abd6-90c77fa85c47", + "end_time": "2024-11-22T20:50:13.060Z", "failed_rule_count": 0, "supported": true, - "score": 8.950532411403566, + "score": 28.04242850653998, "type": "test_result", - "display_name": "cremin-hayes.test", + "display_name": "rohan-altenwerth.test", "groups": [], "tags": [ { - "key": "array", - "value": "primary", - "namespace": "bypassing" + "key": "bandwidth", + "value": "cross-platform", + "namespace": "generating" }, { - "key": "feed", - "value": "virtual", - "namespace": "parsing" + "key": "card", + "value": "optical", + "namespace": "generating" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "synthesizing" + "key": "monitor", + "value": "haptic", + "namespace": "hacking" }, { - "key": "firewall", - "value": "back-end", - "namespace": "backing up" + "key": "application", + "value": "multi-byte", + "namespace": "bypassing" }, { - "key": "transmitter", - "value": "multi-byte", + "key": "program", + "value": "virtual", "namespace": "hacking" } ], "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": "c465372e-504c-483f-8df3-025808661731", + "security_guide_version": "100.101.35" }, { - "id": "298509bc-9ac7-4a04-93d9-08fc52846c1a", - "end_time": "2024-11-14T12:11:22.269Z", + "id": "2acdc2a2-d483-4167-bc9c-5416fd31a758", + "end_time": "2024-11-22T20:50:13.110Z", "failed_rule_count": 0, "supported": true, - "score": 29.02026610741167, + "score": 6.853674509655693, "type": "test_result", - "display_name": "bogisich.test", + "display_name": "hand.example", "groups": [], "tags": [ { - "key": "protocol", - "value": "redundant", - "namespace": "parsing" + "key": "interface", + "value": "optical", + "namespace": "navigating" }, { "key": "firewall", - "value": "bluetooth", - "namespace": "copying" + "value": "auxiliary", + "namespace": "calculating" }, { "key": "matrix", - "value": "back-end", - "namespace": "programming" + "value": "cross-platform", + "namespace": "overriding" }, { - "key": "bus", - "value": "bluetooth", - "namespace": "connecting" + "key": "bandwidth", + "value": "back-end", + "namespace": "backing up" }, { - "key": "hard drive", - "value": "wireless", - "namespace": "synthesizing" + "key": "monitor", + "value": "auxiliary", + "namespace": "navigating" } ], "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": "c7a124ce-2c6f-482a-85d3-12d8cbbf9f8d", + "security_guide_version": "100.101.35" }, { - "id": "2ef06a23-53dd-4fdf-812f-6f02479db5b5", - "end_time": "2024-11-14T12:11:22.303Z", + "id": "2c3e2c7e-6d88-4974-8e00-17a608612b15", + "end_time": "2024-11-22T20:50:13.136Z", "failed_rule_count": 0, "supported": true, - "score": 26.73628702891804, + "score": 49.35351071384942, "type": "test_result", - "display_name": "kohler.example", + "display_name": "bogan.test", "groups": [], "tags": [ { - "key": "feed", - "value": "virtual", - "namespace": "generating" + "key": "pixel", + "value": "auxiliary", + "namespace": "calculating" }, { - "key": "program", - "value": "wireless", - "namespace": "backing up" + "key": "microchip", + "value": "haptic", + "namespace": "generating" }, { - "key": "bandwidth", - "value": "back-end", - "namespace": "backing up" + "key": "monitor", + "value": "redundant", + "namespace": "copying" }, { - "key": "matrix", - "value": "digital", + "key": "array", + "value": "multi-byte", "namespace": "programming" }, { - "key": "program", - "value": "mobile", - "namespace": "bypassing" + "key": "application", + "value": "auxiliary", + "namespace": "quantifying" } ], "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": "57766366-13f3-4816-b48c-7f0f5bca8ddb", + "security_guide_version": "100.101.35" }, { - "id": "45796db9-098d-4e90-a3b4-c44a9383afb0", - "end_time": "2024-11-14T12:11:22.316Z", + "id": "2c6228a9-c793-41de-bc5a-5d616106a052", + "end_time": "2024-11-22T20:50:13.048Z", "failed_rule_count": 0, "supported": true, - "score": 60.20046351478584, + "score": 66.3652664540794, "type": "test_result", - "display_name": "thompson-ohara.test", + "display_name": "parisian.example", "groups": [], "tags": [ { - "key": "interface", - "value": "primary", - "namespace": "parsing" + "key": "alarm", + "value": "back-end", + "namespace": "programming" }, { - "key": "hard drive", - "value": "solid state", + "key": "program", + "value": "auxiliary", "namespace": "programming" }, { "key": "pixel", "value": "online", - "namespace": "compressing" + "namespace": "transmitting" }, { - "key": "pixel", - "value": "wireless", - "namespace": "generating" + "key": "protocol", + "value": "1080p", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "multi-byte", - "namespace": "backing up" + "key": "system", + "value": "haptic", + "namespace": "bypassing" } ], "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": "870f77bd-48ef-4fe4-8cc2-a2608ab68ecb", + "security_guide_version": "100.101.35" }, { - "id": "4606b7fa-bc4d-44c9-b951-050d04cecf1e", - "end_time": "2024-11-14T12:11:22.258Z", + "id": "2ff121d0-d4e9-403b-bb96-c54dff719e42", + "end_time": "2024-11-22T20:50:13.090Z", "failed_rule_count": 0, "supported": true, - "score": 3.016392543304624, + "score": 15.76167868435505, "type": "test_result", - "display_name": "fritsch.example", + "display_name": "yundt.example", "groups": [], "tags": [ { - "key": "sensor", + "key": "system", "value": "online", - "namespace": "navigating" + "namespace": "transmitting" }, { - "key": "sensor", - "value": "open-source", - "namespace": "transmitting" + "key": "matrix", + "value": "haptic", + "namespace": "navigating" }, { - "key": "alarm", - "value": "online", - "namespace": "compressing" + "key": "monitor", + "value": "auxiliary", + "namespace": "parsing" }, { - "key": "microchip", - "value": "mobile", - "namespace": "hacking" + "key": "transmitter", + "value": "virtual", + "namespace": "copying" }, { - "key": "circuit", - "value": "redundant", - "namespace": "backing up" + "key": "firewall", + "value": "wireless", + "namespace": "bypassing" } ], "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": "c7ee4ba8-7221-4733-9c9b-7ab713256e07", + "security_guide_version": "100.101.35" }, { - "id": "55707c45-84e5-4d46-a8e4-fec2e189e974", - "end_time": "2024-11-14T12:11:22.362Z", + "id": "3e5f493a-371a-4132-ab5f-dba9731d0864", + "end_time": "2024-11-22T20:50:13.156Z", "failed_rule_count": 0, "supported": true, - "score": 68.08139419780311, + "score": 6.309742948670927, "type": "test_result", - "display_name": "spinka.test", + "display_name": "cruickshank.example", "groups": [], "tags": [ { - "key": "capacitor", - "value": "neural", - "namespace": "synthesizing" + "key": "transmitter", + "value": "multi-byte", + "namespace": "programming" }, { - "key": "driver", - "value": "bluetooth", - "namespace": "indexing" + "key": "card", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "hard drive", - "value": "optical", - "namespace": "parsing" + "key": "microchip", + "value": "1080p", + "namespace": "copying" }, { - "key": "array", - "value": "virtual", - "namespace": "generating" + "key": "program", + "value": "digital", + "namespace": "transmitting" }, { - "key": "protocol", - "value": "haptic", - "namespace": "synthesizing" + "key": "program", + "value": "back-end", + "namespace": "compressing" } ], "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": "e42f7e6d-38a2-4442-a4f3-dc3be30a7987", + "security_guide_version": "100.101.35" } ], "meta": { @@ -14640,9 +14640,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/6a020adb-c37c-43be-8cae-574a80bbc653/test_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/6a020adb-c37c-43be-8cae-574a80bbc653/test_results?limit=10&offset=20", + "next": "/api/compliance/v2/reports/6a020adb-c37c-43be-8cae-574a80bbc653/test_results?limit=10&offset=10" } }, "summary": "", @@ -14652,424 +14652,424 @@ "value": { "data": [ { - "id": "3029f2d8-cdaa-4d66-9af3-1741a99c81ee", - "end_time": "2024-11-14T12:11:22.772Z", + "id": "1558e983-d380-4f57-b40d-cff31ac93dcc", + "end_time": "2024-11-22T20:50:13.484Z", "failed_rule_count": 0, "supported": true, - "score": 1.540058734495675, + "score": 2.65360560729071, "type": "test_result", - "display_name": "sauer.example", + "display_name": "casper.test", "groups": [], "tags": [ { - "key": "sensor", - "value": "online", - "namespace": "bypassing" + "key": "monitor", + "value": "solid state", + "namespace": "programming" }, { - "key": "card", - "value": "redundant", - "namespace": "connecting" + "key": "alarm", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "array", - "value": "1080p", - "namespace": "connecting" + "key": "alarm", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "program", - "value": "digital", + "key": "array", + "value": "haptic", "namespace": "calculating" }, { - "key": "firewall", - "value": "haptic", - "namespace": "programming" + "key": "system", + "value": "bluetooth", + "namespace": "copying" } ], "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": "168ccca1-176b-4ff7-a535-402ab8fc3c07", + "security_guide_version": "100.102.43" }, { - "id": "7f80afcd-7ef8-4c59-9562-17c5117ca827", - "end_time": "2024-11-14T12:11:22.798Z", + "id": "035b7292-b8a2-477a-b158-b15b7d7dffe6", + "end_time": "2024-11-22T20:50:13.478Z", "failed_rule_count": 0, "supported": true, - "score": 5.972276671378762, + "score": 3.416130864624855, "type": "test_result", - "display_name": "abshire-bednar.test", + "display_name": "legros.test", "groups": [], "tags": [ { - "key": "driver", - "value": "digital", - "namespace": "synthesizing" + "key": "protocol", + "value": "1080p", + "namespace": "indexing" }, { - "key": "application", - "value": "neural", - "namespace": "synthesizing" + "key": "panel", + "value": "digital", + "namespace": "quantifying" }, { - "key": "monitor", + "key": "transmitter", "value": "redundant", - "namespace": "generating" + "namespace": "programming" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "quantifying" + "key": "firewall", + "value": "wireless", + "namespace": "calculating" }, { - "key": "hard drive", - "value": "solid state", + "key": "bandwidth", + "value": "auxiliary", "namespace": "navigating" } ], "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": "fef12c96-88e9-4641-ac93-ad8439d04b95", + "security_guide_version": "100.102.43" }, { - "id": "d4a4ab09-98e1-4ec9-8fa8-a3c6d211d66c", - "end_time": "2024-11-14T12:11:22.754Z", + "id": "a86ceafd-b5d9-4f4d-bc1d-54ecd1eeb5cd", + "end_time": "2024-11-22T20:50:13.512Z", "failed_rule_count": 0, "supported": true, - "score": 7.020926051189457, + "score": 11.30804100866374, "type": "test_result", - "display_name": "greenfelder-bernier.example", + "display_name": "kuphal.example", "groups": [], "tags": [ { - "key": "protocol", - "value": "redundant", - "namespace": "programming" + "key": "hard drive", + "value": "optical", + "namespace": "calculating" }, { - "key": "circuit", - "value": "online", - "namespace": "navigating" + "key": "sensor", + "value": "neural", + "namespace": "indexing" }, { - "key": "hard drive", - "value": "redundant", - "namespace": "transmitting" + "key": "capacitor", + "value": "cross-platform", + "namespace": "programming" }, { - "key": "pixel", - "value": "back-end", - "namespace": "transmitting" + "key": "system", + "value": "bluetooth", + "namespace": "overriding" }, { - "key": "matrix", - "value": "primary", - "namespace": "synthesizing" + "key": "alarm", + "value": "solid state", + "namespace": "indexing" } ], "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": "60fd8429-3452-4447-9985-60f34f2ca30b", + "security_guide_version": "100.102.43" }, { - "id": "e26c07ab-45d5-4c52-9716-d328c6bacb83", - "end_time": "2024-11-14T12:11:22.766Z", + "id": "bd1326bf-d8be-4568-baad-cd2f1d1165a1", + "end_time": "2024-11-22T20:50:13.490Z", "failed_rule_count": 0, "supported": true, - "score": 9.348092977041544, + "score": 14.49979559545869, "type": "test_result", - "display_name": "kassulke-dooley.test", + "display_name": "harris-koelpin.example", "groups": [], "tags": [ { - "key": "matrix", - "value": "multi-byte", - "namespace": "hacking" + "key": "application", + "value": "auxiliary", + "namespace": "synthesizing" }, { - "key": "bus", - "value": "online", - "namespace": "parsing" + "key": "protocol", + "value": "digital", + "namespace": "transmitting" }, { - "key": "array", - "value": "solid state", - "namespace": "copying" + "key": "interface", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "monitor", - "value": "haptic", - "namespace": "hacking" + "key": "pixel", + "value": "primary", + "namespace": "connecting" }, { - "key": "sensor", + "key": "card", "value": "1080p", - "namespace": "synthesizing" + "namespace": "generating" } ], "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": "10fd41e3-a6c8-4bfd-ba59-87226a21ad56", + "security_guide_version": "100.102.43" }, { - "id": "56883183-f575-42ec-9c05-a2479a1e83d0", - "end_time": "2024-11-14T12:11:22.622Z", + "id": "9d056e32-0f76-488c-aef7-3a804152f27d", + "end_time": "2024-11-22T20:50:13.562Z", "failed_rule_count": 0, "supported": true, - "score": 12.08279348774866, + "score": 15.89173373697758, "type": "test_result", - "display_name": "kutch.example", + "display_name": "stracke.test", "groups": [], "tags": [ { - "key": "driver", - "value": "cross-platform", - "namespace": "transmitting" + "key": "hard drive", + "value": "redundant", + "namespace": "compressing" }, { - "key": "bandwidth", - "value": "bluetooth", - "namespace": "parsing" + "key": "firewall", + "value": "redundant", + "namespace": "connecting" }, { - "key": "port", - "value": "optical", - "namespace": "synthesizing" + "key": "pixel", + "value": "auxiliary", + "namespace": "hacking" }, { - "key": "panel", - "value": "open-source", + "key": "microchip", + "value": "wireless", "namespace": "backing up" }, { - "key": "alarm", - "value": "redundant", - "namespace": "copying" + "key": "card", + "value": "primary", + "namespace": "bypassing" } ], "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": "b5ba5b98-7f92-43a7-8845-8a679d1a611a", + "security_guide_version": "100.102.43" }, { - "id": "abbb2a02-8130-4a90-8c77-073b5e3f3a06", - "end_time": "2024-11-14T12:11:22.702Z", + "id": "a217d33c-4687-497e-ada4-94ced30ca0ca", + "end_time": "2024-11-22T20:50:13.424Z", "failed_rule_count": 0, "supported": true, - "score": 27.2755784567125, + "score": 20.23006847563834, "type": "test_result", - "display_name": "ullrich.test", + "display_name": "cartwright.example", "groups": [], "tags": [ { - "key": "firewall", - "value": "wireless", - "namespace": "navigating" + "key": "card", + "value": "solid state", + "namespace": "programming" }, { - "key": "transmitter", - "value": "mobile", - "namespace": "bypassing" + "key": "card", + "value": "primary", + "namespace": "calculating" }, { - "key": "application", - "value": "primary", - "namespace": "generating" + "key": "panel", + "value": "wireless", + "namespace": "backing up" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "indexing" + "key": "system", + "value": "cross-platform", + "namespace": "quantifying" }, { - "key": "hard drive", - "value": "online", - "namespace": "hacking" + "key": "sensor", + "value": "digital", + "namespace": "programming" } ], "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": "dfc043f8-337d-4df8-9d0d-983386cbb811", + "security_guide_version": "100.102.43" }, { - "id": "1d61af86-4507-49e5-8c1b-360ae3a07eae", - "end_time": "2024-11-14T12:11:22.657Z", + "id": "34af37f6-7d4f-4047-8bd4-5f56e61f5073", + "end_time": "2024-11-22T20:50:13.454Z", "failed_rule_count": 0, "supported": true, - "score": 27.58047727361587, + "score": 22.98878698906242, "type": "test_result", - "display_name": "mcdermott-thompson.test", + "display_name": "wiegand-fisher.example", "groups": [], "tags": [ { - "key": "feed", + "key": "capacitor", "value": "online", - "namespace": "transmitting" + "namespace": "navigating" }, { "key": "panel", - "value": "bluetooth", - "namespace": "bypassing" + "value": "wireless", + "namespace": "hacking" }, { - "key": "transmitter", - "value": "back-end", - "namespace": "overriding" + "key": "microchip", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "matrix", - "value": "redundant", - "namespace": "copying" + "key": "circuit", + "value": "multi-byte", + "namespace": "overriding" }, { "key": "feed", - "value": "virtual", - "namespace": "indexing" + "value": "solid state", + "namespace": "connecting" } ], "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": "c4cd27cb-efbc-4fa7-a08e-9eb9fb3ffae5", + "security_guide_version": "100.102.43" }, { - "id": "5086816c-e9a4-4429-a445-a1c47407d7a3", - "end_time": "2024-11-14T12:11:22.626Z", + "id": "9d946f91-aec8-46fb-8145-baf2ee8af36e", + "end_time": "2024-11-22T20:50:13.535Z", "failed_rule_count": 0, "supported": true, - "score": 32.43491081461354, + "score": 25.61479707305623, "type": "test_result", - "display_name": "kulas.test", + "display_name": "klein.example", "groups": [], "tags": [ { - "key": "protocol", - "value": "neural", - "namespace": "hacking" + "key": "feed", + "value": "virtual", + "namespace": "calculating" }, { - "key": "firewall", - "value": "mobile", + "key": "circuit", + "value": "1080p", "namespace": "navigating" }, { - "key": "capacitor", - "value": "primary", - "namespace": "programming" + "key": "array", + "value": "redundant", + "namespace": "transmitting" }, { - "key": "monitor", - "value": "solid state", - "namespace": "backing up" + "key": "matrix", + "value": "digital", + "namespace": "copying" }, { - "key": "feed", - "value": "optical", - "namespace": "navigating" + "key": "port", + "value": "back-end", + "namespace": "parsing" } ], "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": "f1e491c5-ebb5-428f-9b7a-ec2c9f3a71b3", + "security_guide_version": "100.102.43" }, { - "id": "2fe248a5-a859-4468-a5c4-71cb5d8d7b61", - "end_time": "2024-11-14T12:11:22.792Z", + "id": "82b13404-4324-4af3-bcab-c32397584dad", + "end_time": "2024-11-22T20:50:13.466Z", "failed_rule_count": 0, "supported": true, - "score": 33.82463620559125, + "score": 25.63965185688458, "type": "test_result", - "display_name": "kling.test", + "display_name": "davis.example", "groups": [], "tags": [ { - "key": "microchip", - "value": "haptic", - "namespace": "calculating" + "key": "array", + "value": "neural", + "namespace": "hacking" }, { - "key": "hard drive", - "value": "primary", - "namespace": "generating" + "key": "transmitter", + "value": "virtual", + "namespace": "transmitting" }, { - "key": "firewall", - "value": "solid state", - "namespace": "quantifying" + "key": "panel", + "value": "neural", + "namespace": "backing up" }, { - "key": "array", - "value": "primary", - "namespace": "parsing" + "key": "driver", + "value": "haptic", + "namespace": "overriding" }, { - "key": "port", - "value": "online", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "bluetooth", + "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": "5e6d2225-b605-4943-a969-71f82f2af211", + "security_guide_version": "100.102.43" }, { - "id": "c024ae23-846b-4a50-9b64-f07cbc0615d6", - "end_time": "2024-11-14T12:11:22.785Z", + "id": "9ab47927-8aff-4bf5-8f87-76af8a1fa70b", + "end_time": "2024-11-22T20:50:13.518Z", "failed_rule_count": 0, "supported": true, - "score": 34.77100911240797, + "score": 26.00220286990775, "type": "test_result", - "display_name": "barton-wolff.test", + "display_name": "miller-stiedemann.test", "groups": [], "tags": [ { - "key": "transmitter", - "value": "wireless", - "namespace": "generating" + "key": "driver", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "application", - "value": "redundant", - "namespace": "connecting" + "key": "capacitor", + "value": "haptic", + "namespace": "overriding" }, { - "key": "application", - "value": "haptic", - "namespace": "indexing" + "key": "bus", + "value": "redundant", + "namespace": "generating" }, { - "key": "transmitter", - "value": "mobile", + "key": "array", + "value": "back-end", "namespace": "programming" }, { - "key": "interface", - "value": "primary", - "namespace": "compressing" + "key": "matrix", + "value": "1080p", + "namespace": "hacking" } ], "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": "85660e82-958b-4e9d-aeeb-236c7c08abf4", + "security_guide_version": "100.102.43" } ], "meta": { @@ -15080,9 +15080,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/7a93a608-af7c-41da-bd83-3470a37c3ed6/test_results?limit=10&offset=0&sort_by=score", + "last": "/api/compliance/v2/reports/7a93a608-af7c-41da-bd83-3470a37c3ed6/test_results?limit=10&offset=20&sort_by=score", + "next": "/api/compliance/v2/reports/7a93a608-af7c-41da-bd83-3470a37c3ed6/test_results?limit=10&offset=10&sort_by=score" } }, "summary": "", @@ -15099,8 +15099,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/6184a57e-86b0-4e83-abc5-172dd8c5e46b/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/6184a57e-86b0-4e83-abc5-172dd8c5e46b/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0" } }, "summary": "", @@ -15261,7 +15261,7 @@ "examples": { "List of available Security Guide versions": { "value": [ - "100.109.1" + "100.109.15" ], "summary": "", "description": "" @@ -15311,7 +15311,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 +15322,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": "3ea4ae77-52db-4fe9-8ecd-4186727e9ddb", + "end_time": "2024-11-22T20:50:15.757Z", "failed_rule_count": 0, "supported": true, - "score": 9.975277134915117, + "score": 14.13971661695738, "type": "test_result", - "display_name": "johnston.test", + "display_name": "blanda-becker.example", "groups": [], "tags": [ { - "key": "circuit", - "value": "haptic", - "namespace": "calculating" + "key": "application", + "value": "digital", + "namespace": "quantifying" }, { - "key": "capacitor", - "value": "wireless", - "namespace": "indexing" + "key": "system", + "value": "haptic", + "namespace": "calculating" }, { - "key": "pixel", - "value": "multi-byte", - "namespace": "bypassing" + "key": "protocol", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "alarm", - "value": "bluetooth", - "namespace": "generating" + "key": "protocol", + "value": "mobile", + "namespace": "overriding" }, { - "key": "bandwidth", - "value": "mobile", - "namespace": "indexing" + "key": "system", + "value": "online", + "namespace": "copying" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "3ba6ef8d-c8d3-438b-9c27-210677e98c95", - "security_guide_version": "100.110.17" + "system_id": "9e8ab1c4-1fa7-4f89-bbb0-5768f8c1ad2b", + "security_guide_version": "100.110.26" } }, "summary": "", @@ -15392,7 +15392,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 7f91201a-8699-4caf-ab2c-5e79c1022821" ] }, "summary": "", @@ -15489,7 +15489,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 +15501,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": "20323553-9e12-4b37-bf7b-968f13c55bf7", + "ref_id": "foo_value_445b691f-886b-403e-8d13-c24dafb0e988", + "title": "Officia sit fugiat omnis.", + "description": "Fugiat ex minus. Autem rerum voluptatem. Dolorum atque pariatur.", "value_type": "number", - "default_value": "0.46183725289148514", + "default_value": "0.6965675824014532", "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": "2894190c-5545-45e0-ad3b-ba610bdb5af5", + "ref_id": "foo_value_05068ae7-409b-4d45-a0cf-d3c8f25f62e2", + "title": "Magnam et maxime iste.", + "description": "Totam voluptas est. Quos aut dicta. Fugiat dolorem ut.", "value_type": "number", - "default_value": "0.4731278274625662", + "default_value": "0.2589850190098574", "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": "3613507f-a940-4dbb-bf43-61fd0323cd64", + "ref_id": "foo_value_4fb566e1-a319-49c8-9007-6cf8de5a6208", + "title": "Magni quia recusandae eum.", + "description": "Modi eveniet et. Ut modi dolor. Eius quia delectus.", "value_type": "number", - "default_value": "0.0360667747414134", + "default_value": "0.6482121772317709", "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": "4393a814-d329-45d9-bfee-afa423df63f2", + "ref_id": "foo_value_b543eb09-8efb-49d4-a512-cc51985a455f", + "title": "Aperiam autem repellat odio.", + "description": "Velit fuga et. Exercitationem deleniti quidem. Magnam labore ut.", "value_type": "number", - "default_value": "0.8393024464198549", + "default_value": "0.320330781587046", "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": "45a66ba6-22f2-44ae-a31c-dc651c9456eb", + "ref_id": "foo_value_b9ffe2e1-e4b5-4f77-9dfb-15abb659ca25", + "title": "Vel voluptatem modi officiis.", + "description": "Iure mollitia omnis. Voluptas voluptate doloribus. Dolor omnis laboriosam.", "value_type": "number", - "default_value": "0.20653753436453526", + "default_value": "0.7430073512849196", "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": "4c9e67b5-479d-42c6-94af-a716f7c2ecb3", + "ref_id": "foo_value_88c291d0-2340-4bdb-aa7d-2813c2f1b2a7", + "title": "Alias delectus culpa atque.", + "description": "Cupiditate exercitationem aut. Suscipit molestias quia. Est earum cum.", "value_type": "number", - "default_value": "0.49041127569466003", + "default_value": "0.9772160076942237", "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": "4f8c5073-6295-408d-b8e4-e8bd2846a5c8", + "ref_id": "foo_value_f0546819-7dd2-4682-9211-0dac6071d93c", + "title": "Sunt consequatur et dolorum.", + "description": "Voluptate sed cumque. Consequatur explicabo in. Iste animi et.", "value_type": "number", - "default_value": "0.22538016464817057", + "default_value": "0.0012470488867477592", "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": "5274339c-d5f2-43ff-a578-7ed623fb2426", + "ref_id": "foo_value_7b4d5f10-a5ac-4eda-9bb1-26d1e2cbc654", + "title": "Aperiam voluptatem vitae vel.", + "description": "Velit incidunt sed. Reprehenderit non reiciendis. Repudiandae explicabo qui.", "value_type": "number", - "default_value": "0.6394214040047392", + "default_value": "0.47967360842416107", "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": "57c12375-8ccf-4046-bf06-c36bb51e9052", + "ref_id": "foo_value_c3c66d61-2eea-4ae5-a345-c921cdf132f7", + "title": "A sit corporis at.", + "description": "Unde in quos. Eos quisquam repellendus. Voluptate inventore facilis.", "value_type": "number", - "default_value": "0.13035805981086968", + "default_value": "0.030029473160252285", "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": "5b3f5fa9-82f4-4dea-a0ed-c4948d0bd0cc", + "ref_id": "foo_value_ab2a0bd5-ae35-4c07-9641-c51a1f6ed2fd", + "title": "Quia voluptatem voluptatum sit.", + "description": "Perferendis ducimus perspiciatis. Dolor soluta aliquam. Qui tenetur voluptates.", "value_type": "number", - "default_value": "0.14766503638699824", + "default_value": "0.8994086204959182", "type": "value_definition" } ], @@ -15597,9 +15597,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/bb1977e0-8b38-41cd-a462-0df006c3ab67/value_definitions?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/bb1977e0-8b38-41cd-a462-0df006c3ab67/value_definitions?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/bb1977e0-8b38-41cd-a462-0df006c3ab67/value_definitions?limit=10&offset=10" } }, "summary": "", @@ -15609,93 +15609,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": "0f667b04-a65c-473b-b55e-14ac59fbc2a0", + "ref_id": "foo_value_8febdfcf-fe43-497d-843e-86fceb49fc5f", + "title": "Ab nobis alias assumenda.", + "description": "Dolores aliquam voluptate. Sit recusandae et. Deleniti et consequatur.", "value_type": "number", - "default_value": "0.9356452690118262", + "default_value": "0.9792156696265967", "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": "a8fdd372-58cf-40cd-a2dd-56afe34e79fa", + "ref_id": "foo_value_6c284166-4e04-4139-89a3-ce6bc6b40b12", + "title": "Amet itaque ut neque.", + "description": "Ad minima sunt. Architecto assumenda hic. Ut cum earum.", "value_type": "number", - "default_value": "0.4756454997509203", + "default_value": "0.813442196127025", "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": "76a06267-59d5-432c-9451-96d004c488f0", + "ref_id": "foo_value_5fc6c8b9-3431-49e5-8f39-cd35e7aa1063", + "title": "Animi beatae eum ratione.", + "description": "Qui ipsum aspernatur. Aut ut eos. Expedita necessitatibus id.", "value_type": "number", - "default_value": "0.3506275660085497", + "default_value": "0.10028689626583132", "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": "3a2b4d7c-20de-47f9-9e69-87698b137f0d", + "ref_id": "foo_value_f9fdb3c4-eb93-4ff9-a027-718ddbe11647", + "title": "Assumenda deleniti enim quaerat.", + "description": "Aliquid atque placeat. Cupiditate eos vel. Ea ipsum tempore.", "value_type": "number", - "default_value": "0.9734886232778274", + "default_value": "0.05596222681198726", "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": "f2fb3d93-ca98-440d-a2e7-c4f3d5bfbcc4", + "ref_id": "foo_value_b6fdea2c-a608-41cc-8a6c-8278ec8b7c6d", + "title": "Beatae aut officia voluptas.", + "description": "Numquam itaque velit. Accusantium quos non. Nobis at dolorem.", "value_type": "number", - "default_value": "0.5357189259065366", + "default_value": "0.2630917690876192", "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": "8e84a5ed-73a1-4e18-8c13-297c0d4967bd", + "ref_id": "foo_value_5d072a57-1c16-43e1-9508-990b6fbc7176", + "title": "Consequatur et vel non.", + "description": "Nemo quidem repellat. Blanditiis ullam laudantium. Voluptas autem rerum.", "value_type": "number", - "default_value": "0.4038867303700415", + "default_value": "0.0048366584018054715", "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": "0714c197-e16d-45ba-9e35-fa2e00ce62bc", + "ref_id": "foo_value_1dd03a1e-7ff2-406e-a0a6-65c45db836de", + "title": "Error blanditiis nulla placeat.", + "description": "Velit in quasi. Unde velit occaecati. Ipsum modi fuga.", "value_type": "number", - "default_value": "0.4827035039362456", + "default_value": "0.8636503418203472", "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": "30b76293-4e57-421b-9f67-b08a46976a0c", + "ref_id": "foo_value_dbb0465d-9e8c-4782-9b1c-4f5747587ae3", + "title": "Esse culpa iusto dicta.", + "description": "Eveniet odio exercitationem. Et sit earum. Possimus reprehenderit a.", "value_type": "number", - "default_value": "0.3719251356108413", + "default_value": "0.16616820882602923", "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": "f28786eb-d3fd-4063-8c1a-6b9ee47bda88", + "ref_id": "foo_value_3466f3c2-532e-438a-9d03-fff36d691915", + "title": "Est dolor nam facere.", + "description": "Et nam incidunt. Totam nesciunt labore. Id asperiores cum.", "value_type": "number", - "default_value": "0.2592610387958234", + "default_value": "0.5133044791693989", "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": "357750fc-a5fa-472d-95a3-b46b8bb60dd9", + "ref_id": "foo_value_45cf9468-735a-4b78-b6e4-4fdea474546c", + "title": "Est ut qui et.", + "description": "Veniam deleniti voluptatibus. Aut nisi repellendus. Tempora dignissimos distinctio.", "value_type": "number", - "default_value": "0.10662876184039705", + "default_value": "0.2503022000550449", "type": "value_definition" } ], @@ -15706,36 +15706,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/9358532c-8226-4854-80a2-58039f2890b1/value_definitions?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/9358532c-8226-4854-80a2-58039f2890b1/value_definitions?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/9358532c-8226-4854-80a2-58039f2890b1/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=Voluptas perferendis totam in.)'": { "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": "09ddbb9c-d012-4e31-86fe-4192aa12a6eb", + "ref_id": "foo_value_1ec05b8f-8453-4324-a8b0-6ce42758c40e", + "title": "Voluptas perferendis totam in.", + "description": "Qui ea ratione. Voluptatum eum molestiae. Rerum ut laboriosam.", "value_type": "number", - "default_value": "0.2201059934462225", + "default_value": "0.07513412021806554", "type": "value_definition" } ], "meta": { "total": 1, - "filter": "(title=\"Iusto cumque libero quo.\")", + "filter": "(title=\"Voluptas perferendis totam in.\")", "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/3af7f8a5-d55e-4393-acc4-fc15847f65e7/value_definitions?filter=%28title%3D%22Voluptas+perferendis+totam+in.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/3af7f8a5-d55e-4393-acc4-fc15847f65e7/value_definitions?filter=%28title%3D%22Voluptas+perferendis+totam+in.%22%29&limit=10&offset=0" } }, "summary": "", @@ -15831,7 +15831,7 @@ "tags": [ "Content" ], - "description": "Returns a Value Definition", + "description": "Retrieve a specific value definition.", "operationId": "ValueDefinition", "responses": { "200": { @@ -15842,12 +15842,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": "058e0377-0e0b-413a-9038-b8342f8c8fb8", + "ref_id": "foo_value_a76db33c-c457-4ab9-8563-bd6bc2b5ae30", + "title": "Sint unde vitae voluptas.", + "description": "Nisi officia nesciunt. Et voluptas et. Voluptatem qui esse.", "value_type": "number", - "default_value": "0.9034230648585917", + "default_value": "0.043250849605870445", "type": "value_definition" } }, @@ -15879,7 +15879,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 b514d548-0db9-4267-8d06-9a9b57acf498" ] }, "summary": "", @@ -17035,9 +17035,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" + "ab9922a7-d231-44af-9d19-bda3d48093bf": "foo", + "b1333c21-c303-4d8d-9f6a-ab628995a0f1": "123", + "558f3db2-7e5c-42cc-ad6e-ce09d7f5241c": "false" } ] }