From c6016c8d59a02b542b7649aaa066621cbf99030e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Hal=C3=A1sz?= Date: Fri, 11 Oct 2024 16:41:59 +0200 Subject: [PATCH] feat(APIv2): RHINENG-13519 expose the RuleTree on profiles/tailorings --- app/controllers/v2/profiles_controller.rb | 10 + app/controllers/v2/tailorings_controller.rb | 6 + app/models/concerns/v2/rule_tree.rb | 25 + app/models/v2/policy.rb | 3 + app/models/v2/profile.rb | 3 + app/models/v2/security_guide.rb | 17 +- app/models/v2/tailoring.rb | 3 + app/policies/v2/profile_policy.rb | 4 + app/policies/v2/tailoring_policy.rb | 4 + config/routes.rb | 6 +- .../v2/profiles_controller_spec.rb | 62 +- .../v2/tailorings_controller_spec.rb | 20 + spec/integration/v2/profiles_spec.rb | 35 + spec/integration/v2/security_guides_spec.rb | 2 +- spec/integration/v2/tailorings_spec.rb | 43 + swagger/v2/openapi.json | 9572 +++++++++-------- 16 files changed, 5165 insertions(+), 4650 deletions(-) create mode 100644 app/models/concerns/v2/rule_tree.rb diff --git a/app/controllers/v2/profiles_controller.rb b/app/controllers/v2/profiles_controller.rb index f353d2a34..48499c787 100644 --- a/app/controllers/v2/profiles_controller.rb +++ b/app/controllers/v2/profiles_controller.rb @@ -13,6 +13,12 @@ def show end permission_for_action :show, Rbac::COMPLIANCE_VIEWER + def rule_tree + render json: profile.rule_tree + end + permission_for_action :rule_tree, Rbac::COMPLIANCE_VIEWER + permitted_params_for_action :rule_tree, id: ID_TYPE.required + private def profiles @@ -30,5 +36,9 @@ def resource def serializer V2::ProfileSerializer end + + def extra_fields + %i[security_guide_id] + end end end diff --git a/app/controllers/v2/tailorings_controller.rb b/app/controllers/v2/tailorings_controller.rb index 119976d75..e842bbb4f 100644 --- a/app/controllers/v2/tailorings_controller.rb +++ b/app/controllers/v2/tailorings_controller.rb @@ -16,6 +16,12 @@ def show end permission_for_action :show, Rbac::POLICY_READ + def rule_tree + render json: tailoring.rule_tree + end + permission_for_action :rule_tree, Rbac::COMPLIANCE_VIEWER + permitted_params_for_action :rule_tree, id: ID_TYPE.required + def create # Look up the latest Profile supporting the given OS minor version new_tailoring = V2::Tailoring.for_policy(policy, permitted_params[:os_minor_version]) diff --git a/app/models/concerns/v2/rule_tree.rb b/app/models/concerns/v2/rule_tree.rb new file mode 100644 index 000000000..28cdf3fc9 --- /dev/null +++ b/app/models/concerns/v2/rule_tree.rb @@ -0,0 +1,25 @@ +# frozen_string_literal: true + +module V2 + # Methods that are related to getting hierarchical structure of rules and rule groups + module RuleTree + extend ActiveSupport::Concern + + included do + # Builds the hierarchical structure of groups and rules + def rule_tree + cached_rules = rules.order(:precedence).select(:id, :rule_group_id).group_by(&:rule_group_id) + + rule_groups.order(:precedence).select(:id, :ancestry).arrange_serializable do |group, children| + { + id: group.id, + type: :rule_group, + children: children + (cached_rules[group.id]&.map do |rule| + { id: rule.id, type: :rule } + end || []) + } + end + end + end + end +end diff --git a/app/models/v2/policy.rb b/app/models/v2/policy.rb index 1e74e41f4..c4325fb1d 100644 --- a/app/models/v2/policy.rb +++ b/app/models/v2/policy.rb @@ -3,6 +3,8 @@ module V2 # Model for SCAP policies class Policy < ApplicationRecord + include V2::RuleTree + # FIXME: clean up after the remodel self.table_name = :v2_policies self.primary_key = :id @@ -18,6 +20,7 @@ class Policy < ApplicationRecord has_many :rules, through: :tailoring_rules, class_name: 'V2::Rule' has_many :policy_systems, class_name: 'V2::PolicySystem', dependent: :destroy has_many :systems, through: :policy_systems, class_name: 'V2::System' + has_many :rule_groups, through: :security_guide, class_name: 'V2::RuleGroup' validates :account, presence: true validates :profile, presence: true diff --git a/app/models/v2/profile.rb b/app/models/v2/profile.rb index 699d40136..f6636dcb2 100644 --- a/app/models/v2/profile.rb +++ b/app/models/v2/profile.rb @@ -3,6 +3,8 @@ module V2 # Model for Canonical Profile class Profile < ApplicationRecord + include V2::RuleTree + # FIXME: clean up after the remodel self.table_name = :canonical_profiles self.primary_key = :id @@ -18,6 +20,7 @@ class Profile < ApplicationRecord has_many :profile_rules, class_name: 'V2::ProfileRule', dependent: :destroy has_many :rules, through: :profile_rules, class_name: 'V2::Rule' has_many :os_minor_versions, class_name: 'V2::ProfileOsMinorVersion', dependent: :destroy + has_many :rule_groups, through: :security_guide, class_name: 'V2::RuleGroup' def variant_for_minor(version) self.class.joins(:security_guide, :os_minor_versions) diff --git a/app/models/v2/security_guide.rb b/app/models/v2/security_guide.rb index 22fe9fb91..7fa94243e 100644 --- a/app/models/v2/security_guide.rb +++ b/app/models/v2/security_guide.rb @@ -3,6 +3,8 @@ module V2 # Model for Security Guides class SecurityGuide < ApplicationRecord + include V2::RuleTree + # FIXME: clean up after the remodel self.primary_key = :id @@ -37,20 +39,5 @@ class SecurityGuide < ApplicationRecord def self.os_versions reselect(:os_major_version).distinct.reorder(:os_major_version).map(&:os_major_version) end - - # Builds the hierarchical structure of groups and rules - def rule_tree - cached_rules = rules.order(:precedence).select(:id, :rule_group_id).group_by(&:rule_group_id) - - rule_groups.order(:precedence).select(:id, :ancestry).arrange_serializable do |group, children| - { - id: group.id, - type: :rule_group, - children: children + (cached_rules[group.id]&.map do |rule| - { id: rule.id, type: :rule } - end || []) - } - end - end end end diff --git a/app/models/v2/tailoring.rb b/app/models/v2/tailoring.rb index 2e1976e9c..fc9461d56 100644 --- a/app/models/v2/tailoring.rb +++ b/app/models/v2/tailoring.rb @@ -3,6 +3,8 @@ module V2 # Model for profile tailoring class Tailoring < ApplicationRecord + include V2::RuleTree + GROUP_ANCESTRY_IDS = Arel::Nodes::NamedFunction.new( 'CAST', [ @@ -40,6 +42,7 @@ class Tailoring < ApplicationRecord inverse_of: :tailoring has_many :rules, class_name: 'V2::Rule', through: :tailoring_rules has_many :test_results, class_name: 'V2::TestResult', dependent: :destroy + has_many :rule_groups, through: :security_guide, class_name: 'V2::RuleGroup' searchable_by :os_minor_version, %i[eq ne] diff --git a/app/policies/v2/profile_policy.rb b/app/policies/v2/profile_policy.rb index bb23390a7..59bf83d69 100644 --- a/app/policies/v2/profile_policy.rb +++ b/app/policies/v2/profile_policy.rb @@ -11,6 +11,10 @@ def show? true end + def rule_tree? + true + end + # All users should see all Profiles currently class Scope < V2::ApplicationPolicy::Scope end diff --git a/app/policies/v2/tailoring_policy.rb b/app/policies/v2/tailoring_policy.rb index a7956fca2..592b1c217 100644 --- a/app/policies/v2/tailoring_policy.rb +++ b/app/policies/v2/tailoring_policy.rb @@ -11,6 +11,10 @@ def show? match_account? end + def rule_tree? + match_account? + end + def update? match_account? end diff --git a/config/routes.rb b/config/routes.rb index 8378e0021..67c605021 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -33,14 +33,18 @@ def draw_routes(prefix) resources :rule_groups, only: %i[index show], parents: %i[security_guide] resources :profiles, only: %i[index show], parents: %i[security_guide] do + get :rule_tree, on: :member, parents: %i[security_guide] + resources :rules, only: %i[index show], parents: %i[security_guide profiles] end end resources :policies, except: %i[new edit] do resources :tailorings, only: %i[index show create update], parents: %i[policy] do - resources :rules, only: %i[index create update destroy], parents: %i[policies tailorings] get :tailoring_file, on: :member, defaults: { format: 'xml' }, constraints: { format: /json|xml/ } + get :rule_tree, on: :member, parents: %i[policy] + + resources :rules, only: %i[index create update destroy], parents: %i[policies tailorings] end resources :systems, only: %i[index create update destroy], parents: %i[policies] do diff --git a/spec/controllers/v2/profiles_controller_spec.rb b/spec/controllers/v2/profiles_controller_spec.rb index 2a26201fa..23b7e2970 100644 --- a/spec/controllers/v2/profiles_controller_spec.rb +++ b/spec/controllers/v2/profiles_controller_spec.rb @@ -21,33 +21,47 @@ allow(controller).to receive(:rbac_allowed?).and_return(rbac_allowed?) end - describe 'GET index' do - let(:parent) { FactoryBot.create(:v2_security_guide) } - let(:extra_params) { { security_guide_id: parent.id } } - let(:item_count) { 2 } - let(:items) do - FactoryBot.create_list( - :v2_profile, - item_count, - value_count: 10, - security_guide: parent - ).sort_by(&:id) + context '/security_guides/:id/profiles' do + describe 'GET index' do + let(:parent) { FactoryBot.create(:v2_security_guide) } + let(:extra_params) { { security_guide_id: parent.id } } + let(:item_count) { 2 } + let(:items) do + FactoryBot.create_list( + :v2_profile, + item_count, + value_count: 10, + security_guide: parent + ).sort_by(&:id) + end + + it_behaves_like 'collection', :security_guide + include_examples 'with metadata', :security_guide + it_behaves_like 'paginable', :security_guide + it_behaves_like 'sortable', :security_guide + it_behaves_like 'searchable', :security_guide end - it_behaves_like 'collection', :security_guide - include_examples 'with metadata', :security_guide - it_behaves_like 'paginable', :security_guide - it_behaves_like 'sortable', :security_guide - it_behaves_like 'searchable', :security_guide - end + describe 'GET show' do + let(:item) { FactoryBot.create(:v2_profile) } + let(:parent) { item.security_guide } + let(:extra_params) { { security_guide_id: parent.id, id: item.id } } + let(:notfound_params) { extra_params.merge(security_guide_id: FactoryBot.create(:v2_security_guide).id) } + + it_behaves_like 'individual', :security_guide + it_behaves_like 'indexable', :ref_id, :security_guide + end + + describe 'GET rule_tree' do + let(:item) { FactoryBot.create(:v2_profile, rule_count: 5) } + let(:parent) { item.security_guide } - describe 'GET show' do - let(:item) { FactoryBot.create(:v2_profile) } - let(:parent) { item.security_guide } - let(:extra_params) { { security_guide_id: parent.id, id: item.id } } - let(:notfound_params) { extra_params.merge(security_guide_id: FactoryBot.create(:v2_security_guide).id) } + it 'calls the rule tree on the model' do + get :rule_tree, params: { id: item.id, security_guide_id: parent.id, parents: %i[security_guide] } - it_behaves_like 'individual', :security_guide - it_behaves_like 'indexable', :ref_id, :security_guide + expect(response).to have_http_status :ok + expect(response.parsed_body).not_to be_empty + end + end end end diff --git a/spec/controllers/v2/tailorings_controller_spec.rb b/spec/controllers/v2/tailorings_controller_spec.rb index 0c9c30f67..a6104fc9a 100644 --- a/spec/controllers/v2/tailorings_controller_spec.rb +++ b/spec/controllers/v2/tailorings_controller_spec.rb @@ -70,6 +70,26 @@ it_behaves_like 'indexable', :os_minor_version, :policy end + describe 'GET rule_tree' do + let(:os_minor_version) { SecureRandom.random_number(10) } + let(:parent) { FactoryBot.create(:v2_policy, account: current_user.account, profile: canonical_profile) } + + let(:item) do + FactoryBot.create(:v2_tailoring, :with_mixed_rules, policy: parent, os_minor_version: os_minor_version) + end + + let(:canonical_profile) do + FactoryBot.create(:v2_profile, rule_count: 5, ref_id_suffix: 'foo', supports_minors: [os_minor_version]) + end + + it 'calls the rule tree on the model' do + get :rule_tree, params: { id: item.id, policy_id: parent.id, parents: %i[policy] } + + expect(response).to have_http_status :ok + expect(response.parsed_body).not_to be_empty + end + end + describe 'POST create' do let(:os_minor_version) { SecureRandom.random_number(10) } let(:parent) { FactoryBot.create(:v2_policy, account: current_user.account, profile: canonical_profile) } diff --git a/spec/integration/v2/profiles_spec.rb b/spec/integration/v2/profiles_spec.rb index 043445639..ed1436431 100644 --- a/spec/integration/v2/profiles_spec.rb +++ b/spec/integration/v2/profiles_spec.rb @@ -106,4 +106,39 @@ end end end + + path '/security_guides/{security_guide_id}/profiles/{profile_id}/rule_tree' do + let(:item) { FactoryBot.create(:v2_profile, rule_count: 10) } + + get 'Request the Rule Tree of a Profile' do + v2_auth_header + tags 'Content' + description 'Returns the Rule Tree of a Profile' + operationId 'ProfileTree' + content_types + + parameter name: :security_guide_id, in: :path, type: :string, required: true + parameter name: :profile_id, in: :path, type: :string, required: true + + response '200', 'Returns the Rule Tree of a Profile' do + let(:profile_id) { item.id } + let(:security_guide_id) { item.security_guide.id } + schema ref_schema('rule_tree') + + after { |e| autogenerate_examples(e, 'Returns the Rule Tree of a Profile') } + + run_test! + end + + response '404', 'Returns with Not Found' do + let(:profile_id) { Faker::Internet.uuid } + let(:security_guide_id) { Faker::Internet.uuid } + schema ref_schema('errors') + + after { |e| autogenerate_examples(e, 'Description of an error when requesting a non-existing Profile') } + + run_test! + end + end + end end diff --git a/spec/integration/v2/security_guides_spec.rb b/spec/integration/v2/security_guides_spec.rb index 302aebb9c..7272cbf57 100644 --- a/spec/integration/v2/security_guides_spec.rb +++ b/spec/integration/v2/security_guides_spec.rb @@ -133,7 +133,7 @@ parameter name: :security_guide_id, in: :path, type: :string, required: true - response '200', 'Returns a the Rule Tree of Security Guide' do + response '200', 'Returns the Rule Tree of a Security Guide' do let(:security_guide_id) { item.id } schema ref_schema('rule_tree') diff --git a/spec/integration/v2/tailorings_spec.rb b/spec/integration/v2/tailorings_spec.rb index 9ae4b6753..12c780bef 100644 --- a/spec/integration/v2/tailorings_spec.rb +++ b/spec/integration/v2/tailorings_spec.rb @@ -195,6 +195,49 @@ end end + path '/policies/{policy_id}/tailorings/{tailoring_id}/rule_tree' do + let(:policy_id) do + FactoryBot.create( + :v2_policy, + account: user.account, + profile: FactoryBot.create(:v2_profile, rule_count: 10, ref_id_suffix: 'foo', supports_minors: [1]) + ).id + end + + let(:item) do + FactoryBot.create(:v2_tailoring, :with_mixed_rules, policy: V2::Policy.find(policy_id), os_minor_version: 1) + end + + get 'Request the Rule Tree of a Tailoring' do + v2_auth_header + tags 'Policies' + description 'Returns the Rule Tree of a Tailoring' + operationId 'TailoringRuleTree' + content_types + + parameter name: :policy_id, in: :path, type: :string, required: true + parameter name: :tailoring_id, in: :path, type: :string, required: true + + response '200', 'Returns the Rule Tree of a Tailoring' do + let(:tailoring_id) { item.id } + schema ref_schema('rule_tree') + + after { |e| autogenerate_examples(e, 'Returns the Rule Tree of a Tailoring') } + + run_test! + end + + response '404', 'Returns with Not Found' do + let(:tailoring_id) { Faker::Internet.uuid } + schema ref_schema('errors') + + after { |e| autogenerate_examples(e, 'Description of an error when requesting a non-existing Tailoring') } + + run_test! + end + end + end + path '/policies/{policy_id}/tailorings/{tailoring_id}/tailoring_file.json' do let(:policy_id) do FactoryBot.create(:v2_policy, :for_tailoring, account: user.account, supports_minors: [1]).id diff --git a/swagger/v2/openapi.json b/swagger/v2/openapi.json index d75830186..442212755 100644 --- a/swagger/v2/openapi.json +++ b/swagger/v2/openapi.json @@ -113,124 +113,124 @@ "value": { "data": [ { - "id": "048b88a4-6541-406a-ac37-af06df9655db", - "title": "Eum exercitationem quos deserunt.", - "description": "Voluptas distinctio explicabo. Incidunt eos corrupti. Et facere et.", + "id": "01184e5d-c388-4b2b-a618-dcec7025211d", + "title": "In quia placeat dolor.", + "description": "Molestias dolorum minus. Fuga molestias nesciunt. Alias est quas.", "business_objective": null, - "compliance_threshold": 8.0, + "compliance_threshold": 34.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Qui sunt enim et.", - "ref_id": "xccdf_org.ssgproject.content_profile_4f719baa44299b3e70eabf5a26b07d20" + "profile_title": "Voluptas est corporis sint.", + "ref_id": "xccdf_org.ssgproject.content_profile_857a9144bd82bf97e71fc2c4ea1c7cf7" }, { - "id": "0e0f505f-571b-4a8b-a70b-ac41bdff492d", - "title": "Optio iusto modi est.", - "description": "Nihil aspernatur dolores. Libero reprehenderit non. Quia neque ut.", + "id": "055eaac9-e5d6-47b0-a7df-743f6c820bd4", + "title": "Earum voluptatem suscipit laudantium.", + "description": "Molestias eum doloremque. Labore nihil deserunt. Quis officia ut.", "business_objective": null, - "compliance_threshold": 92.0, + "compliance_threshold": 40.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Consequatur animi et magni.", - "ref_id": "xccdf_org.ssgproject.content_profile_bcf76e47115118c40e20aa1270c0522a" + "profile_title": "Eveniet neque dolor eos.", + "ref_id": "xccdf_org.ssgproject.content_profile_dbd619bdcc03a4b3ad70d7e014daa006" }, { - "id": "1434baa6-ae66-40c6-8ae4-07febef95d0b", - "title": "Ipsum adipisci quaerat dolor.", - "description": "Odit corporis fugit. Velit officia et. Repudiandae cumque unde.", + "id": "2f641552-7841-4ed8-92ee-5298409acaca", + "title": "Ullam dolor rerum ea.", + "description": "Ea et eos. Libero facilis commodi. Sint sit aliquid.", "business_objective": null, - "compliance_threshold": 89.0, + "compliance_threshold": 45.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Occaecati et repellendus qui.", - "ref_id": "xccdf_org.ssgproject.content_profile_d1ccc00b8dcd91a1ba7b5ef3ea81d6b0" + "profile_title": "Molestiae voluptatem quos odio.", + "ref_id": "xccdf_org.ssgproject.content_profile_c777e4c215de51eab020f8ce4fcc0f26" }, { - "id": "19fcff25-9807-42fe-b250-d76c8c0551df", - "title": "Reprehenderit soluta aut beatae.", - "description": "Minima blanditiis consequatur. Earum sed ut. Molestias et vero.", + "id": "451a94c2-e4e0-47fd-a94d-1a5b0e05972c", + "title": "Neque consequatur consequatur accusantium.", + "description": "Rem quia id. Nobis iure et. Ullam magni cum.", "business_objective": null, - "compliance_threshold": 17.0, + "compliance_threshold": 65.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ullam repellendus blanditiis saepe.", - "ref_id": "xccdf_org.ssgproject.content_profile_5ae15981ad6c7fbc8cd67d75a4d2f055" + "profile_title": "Provident voluptatem molestias incidunt.", + "ref_id": "xccdf_org.ssgproject.content_profile_363d478a295711a7c486faa1a9ff8a27" }, { - "id": "1d7abe8b-ec14-4399-8eda-7a02a9675eec", - "title": "Velit dolores voluptatem aut.", - "description": "Et quo illum. Magni maxime aspernatur. Vel et omnis.", + "id": "579e90d8-ad62-48cb-a976-667dd8503b40", + "title": "Dolores aut sit assumenda.", + "description": "Voluptas at dolor. Cum saepe consequuntur. Earum sit recusandae.", "business_objective": null, - "compliance_threshold": 78.0, + "compliance_threshold": 1.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Illum fuga rerum dolorum.", - "ref_id": "xccdf_org.ssgproject.content_profile_459966a452e5e2ec50ba8db41a4b2295" + "profile_title": "Nihil omnis optio rerum.", + "ref_id": "xccdf_org.ssgproject.content_profile_ac2c144e24bde824de6a56a442b3a2d3" }, { - "id": "21941586-c40d-41e7-a282-2bb4f27dcfe5", - "title": "Occaecati maxime perspiciatis debitis.", - "description": "Et suscipit necessitatibus. Ut aut numquam. Dolores ut fugit.", + "id": "58bdc347-24a6-4888-948b-90ed03ef331b", + "title": "Voluptatum ducimus est iure.", + "description": "Dolor asperiores eius. Dignissimos vel temporibus. Minus repudiandae quasi.", "business_objective": null, - "compliance_threshold": 24.0, + "compliance_threshold": 71.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Qui cumque sequi qui.", - "ref_id": "xccdf_org.ssgproject.content_profile_a7977f4e591b513899232282746fc094" + "profile_title": "Id vel nam commodi.", + "ref_id": "xccdf_org.ssgproject.content_profile_1faea546b9954a5ee3667c8682976d7f" }, { - "id": "2d635e44-adbf-444a-bed3-f53853aaff39", - "title": "Consectetur laboriosam quod dolorem.", - "description": "Est doloremque omnis. Qui quas quos. Dignissimos modi voluptas.", + "id": "5dd66251-9eda-4dfa-b226-686bc3b11c1d", + "title": "Sit eum voluptatem veritatis.", + "description": "Nostrum magni enim. Omnis praesentium et. Ullam quisquam aut.", "business_objective": null, "compliance_threshold": 18.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Commodi vel eum eius.", - "ref_id": "xccdf_org.ssgproject.content_profile_7dfaabea0917ce0d39a9c54686b2e0c0" + "profile_title": "Quos nihil commodi possimus.", + "ref_id": "xccdf_org.ssgproject.content_profile_832ba9502aeeb12e5b1b1b985b2d90d5" }, { - "id": "3f064e23-40d9-4866-b0b2-af3228a7f8e7", - "title": "Nihil id asperiores beatae.", - "description": "Sed voluptas voluptatem. Vitae eos nulla. Asperiores quia minima.", + "id": "644e5ec3-91ae-4b04-9736-14891c040cf6", + "title": "Architecto illum voluptate modi.", + "description": "Possimus voluptate placeat. Necessitatibus suscipit molestiae. Qui est fugit.", "business_objective": null, - "compliance_threshold": 98.0, + "compliance_threshold": 94.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "A facere officia nam.", - "ref_id": "xccdf_org.ssgproject.content_profile_4dae79fcbd344665a647abab16682cfd" + "profile_title": "Ipsa vero qui est.", + "ref_id": "xccdf_org.ssgproject.content_profile_c4277917873ce535b59a04db5d7d869c" }, { - "id": "428bf7f4-d9ce-47c1-80d4-d59cd66e9317", - "title": "Atque accusamus corporis qui.", - "description": "Sunt et voluptatum. Voluptatem non molestiae. Delectus error architecto.", + "id": "65853db3-d9fc-430a-b173-c3bce9720416", + "title": "Soluta et sit non.", + "description": "Nihil ipsum voluptatem. Hic repudiandae aliquam. Esse qui cupiditate.", "business_objective": null, - "compliance_threshold": 78.0, + "compliance_threshold": 75.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Tempora quas ratione optio.", - "ref_id": "xccdf_org.ssgproject.content_profile_2e10dc0ae5925a49700131d8b1af32bf" + "profile_title": "Placeat doloremque vel dolores.", + "ref_id": "xccdf_org.ssgproject.content_profile_ce463a4fb097a5d6049e2a254500a796" }, { - "id": "431c47f5-114d-4aa4-b7ff-27e45a714a78", - "title": "Est minus reprehenderit voluptate.", - "description": "Aut delectus porro. Vel sequi vero. Ipsum quia pariatur.", + "id": "676db388-12a1-4cc1-9a4b-723fdd5466d4", + "title": "Nesciunt saepe et non.", + "description": "Et magnam ut. Laboriosam maiores in. Quia delectus amet.", "business_objective": null, - "compliance_threshold": 54.0, + "compliance_threshold": 1.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ex nisi occaecati est.", - "ref_id": "xccdf_org.ssgproject.content_profile_990007f225442158a56bd4830d1d07b7" + "profile_title": "Provident at dolore repudiandae.", + "ref_id": "xccdf_org.ssgproject.content_profile_01e69c82b60a0cd74cae3c73b7886003" } ], "meta": { @@ -251,124 +251,124 @@ "value": { "data": [ { - "id": "11067756-37c7-4fb3-baa1-9f92d4789c76", - "title": "Ut rerum voluptas tenetur.", - "description": "Nihil perferendis accusantium. Laudantium qui veritatis. Eum quam saepe.", + "id": "2b01eb3b-31f9-454b-9f6f-b5853b10ea8c", + "title": "Suscipit vero laborum qui.", + "description": "Provident repellendus aut. Est et magni. Quia in vero.", "business_objective": null, - "compliance_threshold": 50.0, + "compliance_threshold": 37.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Quia assumenda labore aut.", - "ref_id": "xccdf_org.ssgproject.content_profile_907fe3cf3ed45888ba30973f9104f4d1" + "profile_title": "Laboriosam placeat ut et.", + "ref_id": "xccdf_org.ssgproject.content_profile_8c7a9e47aca4624a54aa63285c89392c" }, { - "id": "156c6499-0669-4c8f-a85a-e6f71f3e37fb", - "title": "Tempora dolorem nisi optio.", - "description": "Sint blanditiis dolores. Ea dolorem fugit. In esse dolorem.", + "id": "33182f2e-fa29-403f-b263-c79dd1d01aa2", + "title": "Magni ut aut voluptatem.", + "description": "Corrupti ea corporis. Repellendus et error. Aliquam qui ratione.", "business_objective": null, - "compliance_threshold": 66.0, + "compliance_threshold": 0.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Temporibus et ad esse.", - "ref_id": "xccdf_org.ssgproject.content_profile_541cedc5e5bed77ac0042b8978ac2853" + "profile_title": "Consequatur omnis nisi non.", + "ref_id": "xccdf_org.ssgproject.content_profile_2bb716510f2350453cf2e1aa86beefc2" }, { - "id": "16a09683-2b80-4286-b176-43753b10126d", - "title": "Aut perspiciatis ratione nam.", - "description": "Vel repellendus quia. Sunt vitae in. Enim ex animi.", + "id": "3b26cd4f-a5d7-4305-baf6-fde61bb9c1aa", + "title": "Eveniet distinctio ipsam molestias.", + "description": "Aliquam hic odio. Incidunt facere magnam. Tenetur accusantium iure.", "business_objective": null, - "compliance_threshold": 94.0, + "compliance_threshold": 35.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Non illum aliquid harum.", - "ref_id": "xccdf_org.ssgproject.content_profile_d7c7e2947e96b73464435042e66d98de" + "profile_title": "Unde voluptatibus quaerat assumenda.", + "ref_id": "xccdf_org.ssgproject.content_profile_b3446b1e30f11e127c955a60ff645459" }, { - "id": "3ea9eb76-da16-4080-bb36-5442d25df5ea", - "title": "Aliquam expedita inventore nihil.", - "description": "Doloribus voluptatem dignissimos. Aut cumque sit. Ut in est.", + "id": "3dffdbf5-429b-4ec1-a83f-83d46197de43", + "title": "Illo aperiam itaque accusamus.", + "description": "Commodi et optio. Autem eaque et. Ducimus adipisci inventore.", "business_objective": null, - "compliance_threshold": 8.0, + "compliance_threshold": 58.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptatem assumenda error officiis.", - "ref_id": "xccdf_org.ssgproject.content_profile_9d4b4050dc59a52889b2e5cbdeba2df4" + "profile_title": "Modi temporibus et explicabo.", + "ref_id": "xccdf_org.ssgproject.content_profile_9596cc98c342c2dc41cfffa79e086201" }, { - "id": "42b29610-b3c8-4e18-be59-ff810e343b7b", - "title": "Tenetur repellat ut sit.", - "description": "Labore molestias dolorem. Dolor tempora et. Ad laudantium facere.", + "id": "441308a9-f98b-4f81-92e1-84f2fef1bc54", + "title": "Pariatur cumque accusamus laboriosam.", + "description": "Incidunt possimus nemo. Est fugiat est. Sapiente dolorem est.", "business_objective": null, - "compliance_threshold": 9.0, + "compliance_threshold": 99.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Alias reprehenderit ea officiis.", - "ref_id": "xccdf_org.ssgproject.content_profile_0f94f874842d230e0cc2f1d57f090b29" + "profile_title": "Illo ut error vel.", + "ref_id": "xccdf_org.ssgproject.content_profile_2b370b8d1d0622e1de4b29fdba783550" }, { - "id": "52d93ce7-c5ca-474b-a669-7289e32eaeb4", - "title": "Veniam nesciunt quaerat qui.", - "description": "Sint mollitia atque. Atque temporibus neque. Voluptate molestiae sint.", + "id": "4a6e9971-f483-490a-9ca0-6a35a02a00a8", + "title": "Omnis unde reprehenderit inventore.", + "description": "Eaque delectus culpa. Similique nesciunt quaerat. Dicta reprehenderit eaque.", "business_objective": null, - "compliance_threshold": 11.0, + "compliance_threshold": 67.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Eius vitae maiores iure.", - "ref_id": "xccdf_org.ssgproject.content_profile_d441781d530096010a14308da09761c0" + "profile_title": "Rerum consectetur in illo.", + "ref_id": "xccdf_org.ssgproject.content_profile_c72184383f8220f40cdedc5be8da7f5c" }, { - "id": "574609b4-e01d-49ac-a818-77a7f890ca4a", - "title": "Adipisci dolorum illum reprehenderit.", - "description": "Voluptates asperiores voluptatem. Aut ut quia. Animi nisi consequatur.", + "id": "60db59b6-3600-4c94-a407-add03bf51506", + "title": "Et modi nostrum et.", + "description": "Praesentium unde et. Odit dicta doloribus. Velit error sapiente.", "business_objective": null, - "compliance_threshold": 65.0, + "compliance_threshold": 48.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Eius similique est labore.", - "ref_id": "xccdf_org.ssgproject.content_profile_6341e66431e6554d79a295581cfae496" + "profile_title": "Quis aut nesciunt saepe.", + "ref_id": "xccdf_org.ssgproject.content_profile_ce8131dbc43367340c947a6e443f150e" }, { - "id": "69791eae-2849-4974-95d0-669f1a9f4ce0", - "title": "Assumenda tempora ad aliquam.", - "description": "Quia sunt aspernatur. Ut et beatae. Molestiae odio maxime.", + "id": "630ce2b9-c372-4578-94d4-e2ffd6c50c98", + "title": "Non officia nesciunt et.", + "description": "Hic quae libero. Nemo dolorem sed. Qui quibusdam delectus.", "business_objective": null, - "compliance_threshold": 43.0, + "compliance_threshold": 57.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Officia quod fugit architecto.", - "ref_id": "xccdf_org.ssgproject.content_profile_aa953c2d4f86567ce58a18061457d540" + "profile_title": "Id non nam quis.", + "ref_id": "xccdf_org.ssgproject.content_profile_73244df7f2774d828fe65399e4219415" }, { - "id": "6d6412fc-6164-4751-9dcd-b5a5495e9422", - "title": "Error placeat natus maxime.", - "description": "Et quibusdam voluptatem. In rerum vitae. Voluptas autem sint.", + "id": "677e440c-5c7d-41d1-b362-6bb277447edf", + "title": "Debitis temporibus cumque numquam.", + "description": "Architecto id quia. Aut voluptas aut. Omnis molestiae unde.", "business_objective": null, - "compliance_threshold": 80.0, + "compliance_threshold": 75.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Adipisci delectus facilis non.", - "ref_id": "xccdf_org.ssgproject.content_profile_ed1d9aab1e287086dfe98cdf5fa0e6f0" + "profile_title": "Mollitia ut laudantium consequuntur.", + "ref_id": "xccdf_org.ssgproject.content_profile_2f7b1489306a9c0c2ab4031cdcf94c48" }, { - "id": "79d6cfda-62f9-4d4b-8881-9faee092822f", - "title": "Quas ut in autem.", - "description": "Cum et animi. Aut nihil accusamus. Ullam velit quam.", + "id": "69cba408-d926-41f7-926a-fb050df4ae91", + "title": "Aut ad et velit.", + "description": "Nobis unde omnis. Ad molestias eum. Id cum sit.", "business_objective": null, - "compliance_threshold": 64.0, + "compliance_threshold": 86.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Qui rem vitae et.", - "ref_id": "xccdf_org.ssgproject.content_profile_14eb7b2a667939f0366781214bcd8f20" + "profile_title": "Itaque adipisci et repellendus.", + "ref_id": "xccdf_org.ssgproject.content_profile_d0cdffb313f89d534ac49c444fb201bd" } ], "meta": { @@ -486,7 +486,7 @@ "Response example": { "value": { "data": { - "id": "746de74c-8523-474f-a065-ccfe74b5dce8", + "id": "d818d549-9704-44eb-a8b1-3f6411bb1771", "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": "Ipsa est deserunt temporibus.", - "ref_id": "xccdf_org.ssgproject.content_profile_966cfe96360adc725de56127638e8895" + "profile_title": "Ut voluptatem nobis facere.", + "ref_id": "xccdf_org.ssgproject.content_profile_f6f6405cbe9285ae197f043245e34f7c" } }, "summary": "", @@ -565,16 +565,16 @@ "Returns a Policy": { "value": { "data": { - "id": "960287f2-8c6b-44de-896a-fee235a05f66", - "title": "Consequuntur laboriosam aperiam blanditiis.", - "description": "Esse voluptas quod. Sed dignissimos optio. Quo adipisci a.", + "id": "72465aac-9133-4747-9cd1-bc5c551261e7", + "title": "Sed ex aut fuga.", + "description": "Dolores maiores quia. Assumenda soluta necessitatibus. Laboriosam saepe dicta.", "business_objective": null, - "compliance_threshold": 71.0, + "compliance_threshold": 89.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Esse saepe quos vel.", - "ref_id": "xccdf_org.ssgproject.content_profile_fe190a5fa3be8472434491ed79275507" + "profile_title": "Porro dolorem quidem culpa.", + "ref_id": "xccdf_org.ssgproject.content_profile_afe88e8e1f1d1cd4806477eafed337f6" } }, "summary": "", @@ -605,7 +605,7 @@ "Description of an error when requesting a non-existing Policy": { "value": { "errors": [ - "V2::Policy not found with ID eae70966-1909-4481-ba49-ddf2080032e8" + "V2::Policy not found with ID c1e64259-6e72-4d1a-9812-6513e65e7881" ] }, "summary": "", @@ -654,16 +654,16 @@ "Returns the updated Policy": { "value": { "data": { - "id": "376a37c5-d532-4d65-87d4-55f6f6fb775b", - "title": "Unde omnis autem ut.", - "description": "Sunt ipsam quia. Occaecati qui qui. Qui soluta beatae.", + "id": "fb350890-977a-43d2-8d86-3376b3d00f7c", + "title": "Sapiente unde deleniti quaerat.", + "description": "Nihil sunt et. Quia voluptates quidem. Nihil consectetur perspiciatis.", "business_objective": null, "compliance_threshold": 100.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "In quibusdam voluptatem omnis.", - "ref_id": "xccdf_org.ssgproject.content_profile_f6783480dfec5d7fb45c05393997031b" + "profile_title": "Nemo hic molestias qui.", + "ref_id": "xccdf_org.ssgproject.content_profile_c96e5d493ffa1208abdae403b49a44d4" } }, "summary": "", @@ -731,16 +731,16 @@ "Deletes a Policy": { "value": { "data": { - "id": "4962c194-e89e-4274-883c-050d2a47cf5d", - "title": "Eligendi asperiores consequatur officia.", - "description": "Et nostrum vitae. Blanditiis aliquid dolores. Officiis suscipit quia.", + "id": "100f4ac8-cb29-4ea0-a152-8d694fd39a45", + "title": "Doloribus magni qui quam.", + "description": "Est voluptatibus non. Sit vel adipisci. Quos quam et.", "business_objective": null, - "compliance_threshold": 5.0, + "compliance_threshold": 92.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Laborum placeat vitae atque.", - "ref_id": "xccdf_org.ssgproject.content_profile_cbfa8d5a7ec4ddc084df5a96603bbb22" + "profile_title": "Veniam quas qui sint.", + "ref_id": "xccdf_org.ssgproject.content_profile_24c025256845075eef311a4d816f79ad" } }, "summary": "", @@ -865,124 +865,124 @@ "value": { "data": [ { - "id": "005aaeb8-79a1-44e7-b26f-00316e41ee02", - "title": "Consectetur cumque et ea.", - "description": "Soluta sed amet. Quisquam unde facilis. Et blanditiis eius.", + "id": "01efea43-2c3a-491b-abd2-157e4c0cafc5", + "title": "Tempora id dolores saepe.", + "description": "Cumque qui deleniti. Dicta modi delectus. Modi non velit.", "business_objective": null, - "compliance_threshold": 79.0, + "compliance_threshold": 61.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Expedita est quia tenetur.", - "ref_id": "xccdf_org.ssgproject.content_profile_7e857f303d596b88e688d8d34975f177" + "profile_title": "Dolores tempore ut consequuntur.", + "ref_id": "xccdf_org.ssgproject.content_profile_82be44e224a156047755b084a4037ca0" }, { - "id": "0b1975a2-1d66-4afa-b045-7d7c00fc110e", - "title": "Ea nemo blanditiis ut.", - "description": "Officia quaerat sunt. Numquam voluptatem voluptas. Est sint labore.", + "id": "0e1170ee-6217-480f-9b32-fdf7b75890d2", + "title": "Dolorem a fuga est.", + "description": "Est esse illo. Incidunt commodi ut. Consectetur ipsam non.", "business_objective": null, - "compliance_threshold": 14.0, + "compliance_threshold": 20.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Tenetur quisquam provident occaecati.", - "ref_id": "xccdf_org.ssgproject.content_profile_d9805e0cf71869dca0f2b20be5bbefe8" + "profile_title": "In saepe voluptatem est.", + "ref_id": "xccdf_org.ssgproject.content_profile_d7e11f46e667d3fd53fbe2cc53ee6bd3" }, { - "id": "1efbfdc9-4efe-4b3e-a020-c65e46caebb2", - "title": "Et illum quam et.", - "description": "Odit quis dolore. A repellendus et. Autem voluptatibus ipsam.", + "id": "145b1e9b-4d39-42eb-9163-ab0f28aac7b2", + "title": "Reprehenderit rerum velit optio.", + "description": "Totam iure aut. Aut temporibus aut. Facere soluta voluptate.", "business_objective": null, - "compliance_threshold": 40.0, + "compliance_threshold": 94.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Culpa nihil repudiandae eaque.", - "ref_id": "xccdf_org.ssgproject.content_profile_bebf3a475d4a6428f4491617ddda74f6" + "profile_title": "Ut assumenda quidem eum.", + "ref_id": "xccdf_org.ssgproject.content_profile_b1e6d0d45407dffb1b5f8656b6583df0" }, { - "id": "287a8838-0116-494b-912a-8e48c543515a", - "title": "Nesciunt repellendus deserunt ut.", - "description": "Et tempore sapiente. Omnis deserunt accusamus. Est reprehenderit quas.", + "id": "1e34608b-d161-4fb9-9b9c-c8d4a8873954", + "title": "Quo tempora doloremque recusandae.", + "description": "Culpa sit earum. Quia officiis ex. Cupiditate doloribus cum.", "business_objective": null, - "compliance_threshold": 43.0, + "compliance_threshold": 65.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Eius aut quia ut.", - "ref_id": "xccdf_org.ssgproject.content_profile_92eb8f6267608d2449279f397c088d36" + "profile_title": "Et voluptatem maiores quae.", + "ref_id": "xccdf_org.ssgproject.content_profile_657a84bd4eb898880e7503eea45b6b56" }, { - "id": "30dbb73f-288a-4310-9670-000051c5ba49", - "title": "Quis ut illo explicabo.", - "description": "Neque eaque aperiam. Eveniet quod magnam. Voluptatem sed est.", + "id": "2130fd0a-12f1-4ebb-8411-fe1253cce54f", + "title": "Eaque qui officia molestias.", + "description": "Quia dolore aperiam. Dolorum voluptatum quam. Dignissimos quia velit.", "business_objective": null, - "compliance_threshold": 99.0, + "compliance_threshold": 31.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Eaque ea aut est.", - "ref_id": "xccdf_org.ssgproject.content_profile_c818af9ca48fdf589cb1619dc132818d" + "profile_title": "Commodi omnis nihil exercitationem.", + "ref_id": "xccdf_org.ssgproject.content_profile_ffffce66475626926e30bf9af14bbab6" }, { - "id": "347abf78-3bc9-46fe-a241-4cf974e3aad2", - "title": "Numquam nam provident earum.", - "description": "Recusandae tenetur est. Laboriosam dolorum nam. Sint ut accusantium.", + "id": "3a096a7d-e8d5-45e6-b4c9-82dab9131c42", + "title": "Omnis sunt est neque.", + "description": "Molestias amet alias. Dicta consequatur quod. Rerum modi exercitationem.", "business_objective": null, - "compliance_threshold": 29.0, + "compliance_threshold": 26.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Possimus quisquam ut est.", - "ref_id": "xccdf_org.ssgproject.content_profile_3dcaed96ee3acf2951ae36d283b80806" + "profile_title": "Aperiam et nulla architecto.", + "ref_id": "xccdf_org.ssgproject.content_profile_d500a54ae969083a110334db4079ac0e" }, { - "id": "37589869-53c8-42d2-9019-71450f43db42", - "title": "Assumenda maiores qui eveniet.", - "description": "Quia qui expedita. Placeat nulla minus. Atque sint voluptatibus.", + "id": "4fb4905a-836c-4a43-9c22-4359444e7e87", + "title": "Adipisci vel nihil deleniti.", + "description": "Sed assumenda id. Aut neque alias. Sint incidunt sed.", "business_objective": null, - "compliance_threshold": 74.0, + "compliance_threshold": 22.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Veritatis minima aut accusamus.", - "ref_id": "xccdf_org.ssgproject.content_profile_43ed4bf8e1d51e330edf5af3aa95977a" + "profile_title": "Qui sequi harum voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_3a06d1c6a4640943bd8095381d087b54" }, { - "id": "3958494e-9f73-4555-ade5-1551bcdfe836", - "title": "Illum aut ipsum voluptatem.", - "description": "Officia iste repudiandae. Odio similique atque. Maxime illum consectetur.", + "id": "600d1b65-ac2a-41f8-9f6e-2a06a17ff0f8", + "title": "Minus esse aut distinctio.", + "description": "Est necessitatibus molestiae. Et ut accusantium. Et dicta ex.", "business_objective": null, - "compliance_threshold": 69.0, + "compliance_threshold": 95.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Fugit libero excepturi magni.", - "ref_id": "xccdf_org.ssgproject.content_profile_0fca9e0eeeb9d40bc3d91b10111edd3e" + "profile_title": "Temporibus quas ut id.", + "ref_id": "xccdf_org.ssgproject.content_profile_22ad498cc227fc22949c76760a192880" }, { - "id": "3caac79a-f108-4cfe-8901-577db4fbd4f3", - "title": "Qui et qui ratione.", - "description": "Qui inventore accusantium. Non nam sed. Aspernatur sunt at.", + "id": "60987185-b3c5-4d8f-84dc-a50e20e44f26", + "title": "Omnis possimus voluptas et.", + "description": "Delectus in ea. Assumenda omnis eveniet. Ea cum et.", "business_objective": null, - "compliance_threshold": 73.0, + "compliance_threshold": 60.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Necessitatibus quo totam ut.", - "ref_id": "xccdf_org.ssgproject.content_profile_598c89208ee6130eea3633327233fd66" + "profile_title": "Officiis aut sequi adipisci.", + "ref_id": "xccdf_org.ssgproject.content_profile_801cc076e567e4df206ce937deb4d1aa" }, { - "id": "5a2dff30-46d5-4edc-b59e-a06c5172dd40", - "title": "Enim iusto reprehenderit blanditiis.", - "description": "Tempore eum repellendus. Delectus sit vero. Accusamus et vero.", + "id": "6a8fdf54-82e4-4257-911b-36c6f8a54561", + "title": "Est et minima ut.", + "description": "Beatae aut accusamus. Veniam commodi et. Amet vero assumenda.", "business_objective": null, - "compliance_threshold": 20.0, + "compliance_threshold": 86.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Aut accusantium quia corrupti.", - "ref_id": "xccdf_org.ssgproject.content_profile_eecd432acb1f2e1364ead5746eeec338" + "profile_title": "Ad aspernatur vel ipsum.", + "ref_id": "xccdf_org.ssgproject.content_profile_fec338aaac43c03219fc8b2adb48b472" } ], "meta": { @@ -991,9 +991,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/systems/d284cdb9-40af-478b-a674-be025736ae99/policies?limit=10&offset=0", - "last": "/api/compliance/v2/systems/d284cdb9-40af-478b-a674-be025736ae99/policies?limit=10&offset=20", - "next": "/api/compliance/v2/systems/d284cdb9-40af-478b-a674-be025736ae99/policies?limit=10&offset=10" + "first": "/api/compliance/v2/systems/522cb035-d8fa-445a-8091-9b8a874e0f30/policies?limit=10&offset=0", + "last": "/api/compliance/v2/systems/522cb035-d8fa-445a-8091-9b8a874e0f30/policies?limit=10&offset=20", + "next": "/api/compliance/v2/systems/522cb035-d8fa-445a-8091-9b8a874e0f30/policies?limit=10&offset=10" } }, "summary": "", @@ -1120,82 +1120,82 @@ "value": { "data": [ { - "id": "033d5ff0-ef61-442e-b616-7d90aa5caf0d", - "ref_id": "xccdf_org.ssgproject.content_profile_26f9cdebada7bd48ac8ed86e2983047e", - "title": "Saepe reprehenderit quisquam quos.", - "description": "Voluptatum qui maiores. Et qui quod. Fugit reiciendis sit.", + "id": "044335fa-d8d3-4813-b87c-6ad26900180b", + "ref_id": "xccdf_org.ssgproject.content_profile_b12b216050ac5220f9ca0047c494f096", + "title": "Aliquam et quisquam facere.", + "description": "Magnam excepturi laborum. Rerum quia dolores. Excepturi occaecati quisquam.", "value_overrides": {}, "type": "profile" }, { - "id": "0bc591b1-4eba-45e8-986a-d81743f417f9", - "ref_id": "xccdf_org.ssgproject.content_profile_da5b979c1635b84940617e850b8a6890", - "title": "Id qui quod velit.", - "description": "Ea inventore laudantium. Excepturi facere ut. Cupiditate vitae ut.", + "id": "0ec1e73b-7845-4a01-aefe-6265f0b9f679", + "ref_id": "xccdf_org.ssgproject.content_profile_8a11adfa4cb38cac5b85e7ac16d1fb0c", + "title": "Rem saepe nemo doloribus.", + "description": "Dicta aliquid quae. Autem hic quia. Unde explicabo dolorem.", "value_overrides": {}, "type": "profile" }, { - "id": "130dd202-b618-43f4-9435-362fca971870", - "ref_id": "xccdf_org.ssgproject.content_profile_55b48ecd43e407ae9ebda3a68333be6b", - "title": "Modi iusto et et.", - "description": "Laborum repellendus quia. Eum ratione est. Qui tempora ut.", + "id": "4223f4f1-88d2-4fbd-a370-934fcfbd2a86", + "ref_id": "xccdf_org.ssgproject.content_profile_2538ed1d2a96de8ca9a84f75d1116349", + "title": "Necessitatibus quasi delectus sunt.", + "description": "Facilis voluptas sit. Maiores et blanditiis. Dicta in aliquam.", "value_overrides": {}, "type": "profile" }, { - "id": "148ac750-4708-4bdd-bb41-df7add212504", - "ref_id": "xccdf_org.ssgproject.content_profile_527c1fbd52ca021da288aad7e7e5eed4", - "title": "Sint rem ea dolorem.", - "description": "Nulla in quibusdam. Incidunt ea consequuntur. Molestiae est nostrum.", + "id": "475d59cf-99e9-47ff-8ee1-8a89a9976aac", + "ref_id": "xccdf_org.ssgproject.content_profile_d2396cd23ef77c13f4aeada0d093e883", + "title": "Qui consequatur cumque similique.", + "description": "Fugit eum quo. Dolores recusandae et. Ad voluptas odio.", "value_overrides": {}, "type": "profile" }, { - "id": "1874fd05-9407-4dd3-a0d1-38717db5f4cd", - "ref_id": "xccdf_org.ssgproject.content_profile_451dc806d208410dcf081cd05095c24d", - "title": "Qui ut minima maiores.", - "description": "Veritatis natus reiciendis. Autem qui dolor. Consequatur et voluptatem.", + "id": "4dc9696f-d1ec-44f5-9b64-6e79f8790782", + "ref_id": "xccdf_org.ssgproject.content_profile_10555aefc53012b5fb5271cc80bb61be", + "title": "Et ea voluptates pariatur.", + "description": "Sed blanditiis qui. Voluptatibus tenetur suscipit. In et sint.", "value_overrides": {}, "type": "profile" }, { - "id": "19c8f825-658e-432e-b493-0d7a03923d6c", - "ref_id": "xccdf_org.ssgproject.content_profile_d5d9191f651744658bcc028798162895", - "title": "Quae mollitia totam qui.", - "description": "Ut odit quaerat. Et fugiat est. Qui eum consectetur.", + "id": "505515b0-600f-4e57-bcf8-692321856b58", + "ref_id": "xccdf_org.ssgproject.content_profile_67916fec917575eafe88e0b503f163da", + "title": "Consectetur minima et ut.", + "description": "Omnis pariatur non. Consequuntur laboriosam sed. Sunt laboriosam eligendi.", "value_overrides": {}, "type": "profile" }, { - "id": "31232423-3cf7-47e2-95c4-3af26f9b0bda", - "ref_id": "xccdf_org.ssgproject.content_profile_abc2fa2d1e06bc8bd3b6b2e97b63efff", - "title": "At et culpa in.", - "description": "Quisquam deleniti maxime. Voluptatem quis commodi. Alias iste odit.", + "id": "5d8f4a56-6952-4f65-9a7f-ed33956cd662", + "ref_id": "xccdf_org.ssgproject.content_profile_f8489de644eef71a468fbca03bcebfd6", + "title": "Quia libero dolor voluptates.", + "description": "Earum praesentium ut. Qui aliquam veritatis. Pariatur sit consequatur.", "value_overrides": {}, "type": "profile" }, { - "id": "3234a3da-0ca6-4b0c-bc47-b1b0741c6a92", - "ref_id": "xccdf_org.ssgproject.content_profile_6e667b99a2bed4903a6f8ea2343638f0", - "title": "Vel enim eos amet.", - "description": "Sed assumenda omnis. Et dolor omnis. Est inventore dolor.", + "id": "602699db-5bb6-4e38-8811-86b73763f6d9", + "ref_id": "xccdf_org.ssgproject.content_profile_d3d778e65d7eee826e4588f41f2cb790", + "title": "Nostrum non laudantium blanditiis.", + "description": "Aut natus saepe. Ea numquam ut. Deleniti suscipit et.", "value_overrides": {}, "type": "profile" }, { - "id": "325e1464-847e-45fd-b79f-5297be758f2f", - "ref_id": "xccdf_org.ssgproject.content_profile_ed3c4c56960e8a3b1d968113bb6e8c86", - "title": "Eius voluptatum temporibus nihil.", - "description": "Voluptatem dolorem eaque. At dolorem eum. Qui dolore adipisci.", + "id": "7112970d-2422-402b-8b16-286ed216f4d8", + "ref_id": "xccdf_org.ssgproject.content_profile_e0c0fea6acf0e7f5165a4ae1a1ec806b", + "title": "Voluptatibus vitae perferendis maiores.", + "description": "Nihil ea deserunt. Qui architecto reiciendis. Non recusandae fuga.", "value_overrides": {}, "type": "profile" }, { - "id": "3adcf526-94b8-46d6-ac36-8008a4b490e7", - "ref_id": "xccdf_org.ssgproject.content_profile_3837cf27de4a6896acc07ac27931b9ff", - "title": "Ut id illum quidem.", - "description": "Ut sed sit. Ut corporis qui. Voluptate et aut.", + "id": "80771282-d3c9-46bd-9d62-39a04dd662eb", + "ref_id": "xccdf_org.ssgproject.content_profile_dd00bdf7df5252384b68fd1f12ba78f5", + "title": "Et rerum doloremque officiis.", + "description": "Dolore ad quis. Dolores et est. Vero et modi.", "value_overrides": {}, "type": "profile" } @@ -1206,9 +1206,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/34c84c2d-ad6a-490d-928b-b071b36358e6/profiles?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/34c84c2d-ad6a-490d-928b-b071b36358e6/profiles?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/34c84c2d-ad6a-490d-928b-b071b36358e6/profiles?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/ea7f5303-620b-4670-a921-dcc0c9520497/profiles?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/ea7f5303-620b-4670-a921-dcc0c9520497/profiles?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/ea7f5303-620b-4670-a921-dcc0c9520497/profiles?limit=10&offset=10" } }, "summary": "", @@ -1218,82 +1218,82 @@ "value": { "data": [ { - "id": "723e8668-92c0-43d9-ad8c-08671337e3cb", - "ref_id": "xccdf_org.ssgproject.content_profile_58348396d2e5c094d1787e1d928a184d", - "title": "Ad beatae delectus animi.", - "description": "Blanditiis deleniti molestiae. Adipisci error placeat. Sit minima ad.", + "id": "3ab3224c-90c1-4f0b-a86c-0acdca2c95e3", + "ref_id": "xccdf_org.ssgproject.content_profile_f5eba4b16be302d5050b0bce7f0c09ff", + "title": "Ad quis expedita minima.", + "description": "Repellendus et aut. Adipisci quod nam. Saepe dignissimos pariatur.", "value_overrides": {}, "type": "profile" }, { - "id": "69c10a54-0346-4a6f-b992-770b9c80164a", - "ref_id": "xccdf_org.ssgproject.content_profile_93d9fd685ba41b564dd3cab474238903", - "title": "Amet aut voluptas perferendis.", - "description": "Laborum commodi explicabo. Sed quis et. Est dolor et.", + "id": "8da34660-624a-4b83-8bba-a9f3f6b589ad", + "ref_id": "xccdf_org.ssgproject.content_profile_ab1e400d118bde4cbcf7138910368cfc", + "title": "Aspernatur facilis dolor est.", + "description": "Iste perspiciatis in. Quidem dolorum voluptas. Numquam et tempora.", "value_overrides": {}, "type": "profile" }, { - "id": "998147d2-4e33-4308-b3d7-3a18f52c97fd", - "ref_id": "xccdf_org.ssgproject.content_profile_91b633fdba0ef94f07ea30aedd4b1772", - "title": "Aut totam porro ut.", - "description": "Ex dicta aut. Fuga ipsam nisi. Nihil libero amet.", + "id": "32cec5bd-6836-43b9-aa0a-3873bfeefa50", + "ref_id": "xccdf_org.ssgproject.content_profile_7ab26a095b2bcffd04ab01dc9696510b", + "title": "Aut quam officiis ut.", + "description": "Reiciendis commodi officiis. Eum numquam reprehenderit. Aliquid mollitia vitae.", "value_overrides": {}, "type": "profile" }, { - "id": "976ba338-e2ee-475f-b2e1-467f6b9e5ce4", - "ref_id": "xccdf_org.ssgproject.content_profile_557d9b9ccbd78bfca385a11e9015479b", - "title": "Consequatur minima consectetur dolore.", - "description": "Omnis voluptatibus velit. Velit et voluptatum. Impedit totam voluptas.", + "id": "20367b18-0127-4f01-9b24-8e1f4f4e442f", + "ref_id": "xccdf_org.ssgproject.content_profile_a6829ff014a57ac1f597e2a05b1e5d46", + "title": "Autem et possimus itaque.", + "description": "Consequuntur eos impedit. Commodi molestias corrupti. Hic illum ut.", "value_overrides": {}, "type": "profile" }, { - "id": "1b08be90-9bad-4c1f-b077-b1d9bbfb5390", - "ref_id": "xccdf_org.ssgproject.content_profile_126ae6138125913456f23f544010bde9", - "title": "Dignissimos occaecati mollitia cumque.", - "description": "Aut fugit magnam. Accusantium nobis eligendi. Voluptatem maiores tempora.", + "id": "2ab3d214-b5d5-48d8-a81b-5f528be5fb21", + "ref_id": "xccdf_org.ssgproject.content_profile_50095fb8c0cb5f999c481b6200063fb7", + "title": "Commodi non omnis tempore.", + "description": "Consequatur non error. Non officia minus. Asperiores accusantium mollitia.", "value_overrides": {}, "type": "profile" }, { - "id": "27b1a231-75d3-4db7-a366-5db8bf6e6cf9", - "ref_id": "xccdf_org.ssgproject.content_profile_40ddb5541d4966039dfef60732eced17", - "title": "Dolor dolor recusandae enim.", - "description": "Amet qui sed. Eum error atque. Et vero et.", + "id": "2e418be4-301e-4fcd-a87a-87758b9ccb72", + "ref_id": "xccdf_org.ssgproject.content_profile_92add586333268638f4d4d932e39aa83", + "title": "Distinctio quo et veritatis.", + "description": "Et quis et. Et molestias sed. Quia possimus molestiae.", "value_overrides": {}, "type": "profile" }, { - "id": "d2e8a6ad-cdeb-4ec6-a27d-410f583b7d9d", - "ref_id": "xccdf_org.ssgproject.content_profile_7b790d0c12e4be3b5f854a559ba79178", - "title": "Doloremque totam et repellendus.", - "description": "Facilis qui vero. Molestiae aliquam assumenda. Vero non voluptas.", + "id": "b4d3552b-e2f9-4817-bedf-b690f6c1f72b", + "ref_id": "xccdf_org.ssgproject.content_profile_28577626cf552400529db52f5a95e7f5", + "title": "Dolor est soluta ratione.", + "description": "Dolor architecto iure. Neque vitae autem. Accusantium ipsam similique.", "value_overrides": {}, "type": "profile" }, { - "id": "8cac91cb-6a71-4302-9e59-e9b0e2d6fd9a", - "ref_id": "xccdf_org.ssgproject.content_profile_515c6d253a8f03dbc47777808299ac3d", - "title": "Dolores eos saepe tempore.", - "description": "Voluptate impedit doloribus. Distinctio sunt id. Sit eligendi omnis.", + "id": "ff016ef3-3e5d-4b1c-996f-0423eff7506c", + "ref_id": "xccdf_org.ssgproject.content_profile_2f57904eba9cfe25a617f2eb4aab262a", + "title": "Dolore quo sint soluta.", + "description": "Quaerat ut odit. Blanditiis et placeat. Nisi exercitationem ut.", "value_overrides": {}, "type": "profile" }, { - "id": "64ef0e81-8cc5-42a6-9171-a0f93e5cafd1", - "ref_id": "xccdf_org.ssgproject.content_profile_6eed1f8bd8e777230352ce63e7703998", - "title": "Et laudantium et ut.", - "description": "Harum voluptas eum. Laudantium omnis exercitationem. Voluptatem distinctio nobis.", + "id": "b95465fa-7b7e-42e5-9f8b-6d0904438151", + "ref_id": "xccdf_org.ssgproject.content_profile_a8640c1adb417eed4a2ca1c80ee1fdf7", + "title": "Doloribus repudiandae velit iusto.", + "description": "Doloribus et autem. Vero recusandae quia. Molestiae dignissimos voluptas.", "value_overrides": {}, "type": "profile" }, { - "id": "99e39d38-147e-4f3f-ae38-0afc1451c572", - "ref_id": "xccdf_org.ssgproject.content_profile_4f1195816724307dd5fc68588f508fef", - "title": "Expedita eaque consectetur aperiam.", - "description": "Unde eum sed. Quia quos possimus. Quis ullam necessitatibus.", + "id": "18835146-6fc8-4136-bb10-cf50fa12d396", + "ref_id": "xccdf_org.ssgproject.content_profile_b09ed685fc7953635bb51b04fbabde65", + "title": "Hic officiis recusandae autem.", + "description": "Et autem rerum. Eum doloribus et. Sequi saepe culpa.", "value_overrides": {}, "type": "profile" } @@ -1305,35 +1305,35 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/5310a462-3590-46d1-94a0-c1b0d9246737/profiles?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/5310a462-3590-46d1-94a0-c1b0d9246737/profiles?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/5310a462-3590-46d1-94a0-c1b0d9246737/profiles?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/5ab6b8cd-034a-4c7d-96d0-5ad3f55d8143/profiles?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/5ab6b8cd-034a-4c7d-96d0-5ad3f55d8143/profiles?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/5ab6b8cd-034a-4c7d-96d0-5ad3f55d8143/profiles?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Profiles filtered by '(title=Nam non est voluptate.)'": { + "List of Profiles filtered by '(title=Eos qui possimus suscipit.)'": { "value": { "data": [ { - "id": "05e2ae9c-853f-44a7-8980-d4e96dba6984", - "ref_id": "xccdf_org.ssgproject.content_profile_ad82391fdbe233dcc784ebdb3a814091", - "title": "Nam non est voluptate.", - "description": "In sed voluptatem. Deserunt quos est. Amet ducimus possimus.", + "id": "0f7fdaaf-923b-449b-be25-73f9b542d713", + "ref_id": "xccdf_org.ssgproject.content_profile_72cfa0be5c48195e5544e60e8fa0092e", + "title": "Eos qui possimus suscipit.", + "description": "Dolor quaerat et. Vitae autem earum. Voluptate aspernatur assumenda.", "value_overrides": {}, "type": "profile" } ], "meta": { "total": 1, - "filter": "(title=\"Nam non est voluptate.\")", + "filter": "(title=\"Eos qui possimus suscipit.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/f8414c0a-420c-4b31-b547-bfe346ff7690/profiles?filter=%28title%3D%22Nam+non+est+voluptate.%22%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/f8414c0a-420c-4b31-b547-bfe346ff7690/profiles?filter=%28title%3D%22Nam+non+est+voluptate.%22%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/91acfae3-af25-4445-8a61-ced8759fc20f/profiles?filter=%28title%3D%22Eos+qui+possimus+suscipit.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/91acfae3-af25-4445-8a61-ced8759fc20f/profiles?filter=%28title%3D%22Eos+qui+possimus+suscipit.%22%29&limit=10&offset=0" } }, "summary": "", @@ -1441,10 +1441,10 @@ "Returns a Profile": { "value": { "data": { - "id": "b695d80c-b0c2-434f-9da6-7846eda0f39b", - "ref_id": "xccdf_org.ssgproject.content_profile_a6b2be0e32b3da2350683ba4a5984407", - "title": "Fuga fugiat similique sint.", - "description": "Aut repellendus eius. Id explicabo nam. Veritatis assumenda inventore.", + "id": "ea34348d-7621-4e1e-b35c-771c27895eff", + "ref_id": "xccdf_org.ssgproject.content_profile_1be7f856db8ab54fa88adb4984d38a03", + "title": "Sed nisi pariatur dolorum.", + "description": "Ut autem aspernatur. Magnam soluta pariatur. Dolores molestiae ut.", "value_overrides": {}, "type": "profile" } @@ -1477,7 +1477,184 @@ "Description of an error when requesting a non-existing Profile": { "value": { "errors": [ - "V2::Profile not found with ID abdb581d-a5a3-4d1f-9366-21bf6b59b844" + "V2::Profile not found with ID bb78254c-fc96-4238-8bcc-6c0873a2e193" + ] + }, + "summary": "", + "description": "" + } + }, + "schema": { + "$ref": "#/components/schemas/errors" + } + } + } + } + } + } + }, + "/security_guides/{security_guide_id}/profiles/{profile_id}/rule_tree": { + "get": { + "summary": "Request the Rule Tree of a Profile", + "parameters": [ + { + "name": "X-RH-IDENTITY", + "in": "header", + "schema": { + "type": "string" + }, + "description": "For internal use only" + }, + { + "name": "security_guide_id", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "profile_id", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "tags": [ + "Content" + ], + "description": "Returns the Rule Tree of a Profile", + "operationId": "ProfileTree", + "responses": { + "200": { + "description": "Returns the Rule Tree of a Profile", + "content": { + "application/vnd.api+json": { + "examples": { + "Returns the Rule Tree of a Profile": { + "value": [ + { + "id": "e5946422-6f41-4790-88c7-edb0c72e3f19", + "type": "rule_group", + "children": [ + { + "id": "7d67295f-903f-4f40-a1f2-d9b383ea252a", + "type": "rule" + } + ] + }, + { + "id": "305cb5f7-e70f-4070-9a0f-5d75c8887db7", + "type": "rule_group", + "children": [ + { + "id": "323a9d38-899c-4ac4-9b5f-9e79e0eaf478", + "type": "rule" + } + ] + }, + { + "id": "86fee73b-a291-4064-b7c2-ca47af7cc567", + "type": "rule_group", + "children": [ + { + "id": "37a6be97-5788-4531-8bc5-7560106b82d9", + "type": "rule" + } + ] + }, + { + "id": "7f8e997e-3361-4d47-b790-a7f204099359", + "type": "rule_group", + "children": [ + { + "id": "fa60246f-c7d4-42cb-bfd3-44352cbab0cd", + "type": "rule" + } + ] + }, + { + "id": "8ff7a4c1-9c63-4ce7-9cee-5e64b008917c", + "type": "rule_group", + "children": [ + { + "id": "ce11b602-6407-46f5-8e8d-1300dbd6c4f8", + "type": "rule" + } + ] + }, + { + "id": "9dfa1d40-22f1-4e29-ab4a-faacff128f86", + "type": "rule_group", + "children": [ + { + "id": "441d203d-4822-43f0-a22c-99144438b276", + "type": "rule" + } + ] + }, + { + "id": "d65357f9-077b-4584-a011-1648d3721138", + "type": "rule_group", + "children": [ + { + "id": "7ea9d0bd-d42c-42ae-8d90-e72efd99c81e", + "type": "rule" + } + ] + }, + { + "id": "0b2d088b-c370-4b0a-b195-29020578511e", + "type": "rule_group", + "children": [ + { + "id": "bdf222bd-d13c-461d-a95e-9ddf5bf9ce97", + "type": "rule" + } + ] + }, + { + "id": "a6e25aa9-184d-4a02-815a-2e1f2a2f1a38", + "type": "rule_group", + "children": [ + { + "id": "5dcb1343-5ffb-486f-9230-003d7844cdd1", + "type": "rule" + } + ] + }, + { + "id": "d5b249a4-e31c-4b76-8554-7ad82cbb0448", + "type": "rule_group", + "children": [ + { + "id": "675f829f-dfe9-48d4-b0a7-671c059bf0a8", + "type": "rule" + } + ] + } + ], + "summary": "", + "description": "" + } + }, + "schema": { + "$ref": "#/components/schemas/rule_tree" + } + } + } + }, + "404": { + "description": "Returns with Not Found", + "content": { + "application/vnd.api+json": { + "examples": { + "Description of an error when requesting a non-existing Profile": { + "value": { + "errors": [ + "V2::Profile not found with ID 5a9206d1-aafb-4d9c-9878-0a8cccf11f01" ] }, "summary": "", @@ -1590,15 +1767,15 @@ "value": { "data": [ { - "id": "2cc00f22-9663-4355-81bd-cd4135683ab8", - "title": "Deleniti autem molestias atque.", - "description": "Sapiente eos et. Animi tenetur ratione. Dolore dolores accusantium.", - "business_objective": "matrix", + "id": "0370c1cb-6e99-4a58-ae0f-b7f055c23f09", + "title": "Est animi aperiam autem.", + "description": "Molestias aspernatur excepturi. Quo numquam reprehenderit. Sed soluta numquam.", + "business_objective": "hard drive", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Cupiditate voluptatem enim nam.", - "ref_id": "xccdf_org.ssgproject.content_profile_2b821d624b31b7321a67165bfb4e1956", + "profile_title": "Quos culpa distinctio laboriosam.", + "ref_id": "xccdf_org.ssgproject.content_profile_c8319f83b0893a326f7703b758322ed0", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1607,15 +1784,15 @@ "reported_system_count": 4 }, { - "id": "2d7184de-2384-484e-8041-be4cc48d3842", - "title": "Nisi ut et dolorum.", - "description": "Quas et dolorem. Voluptatem sint ut. Magnam neque ut.", - "business_objective": "feed", + "id": "05d8a9f1-15c9-4bdd-8519-a52e577a62a3", + "title": "Omnis doloribus ut expedita.", + "description": "Rem quia ex. Temporibus iste exercitationem. Omnis inventore modi.", + "business_objective": "panel", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Dolores sunt dolores fugit.", - "ref_id": "xccdf_org.ssgproject.content_profile_52482c5a91487eaf2f9b2d2923fd5ab1", + "profile_title": "Rem est odit et.", + "ref_id": "xccdf_org.ssgproject.content_profile_67ba7466d711439dfee053d4fbc28989", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1624,15 +1801,15 @@ "reported_system_count": 4 }, { - "id": "2e32fb25-00f4-4460-8bbb-40242150a526", - "title": "Eum ratione consequatur repellat.", - "description": "Velit quia aspernatur. Et explicabo nisi. Et quod est.", - "business_objective": "hard drive", + "id": "108c7cd2-c11d-4092-9e66-a13880d91334", + "title": "Rem similique dolorem odit.", + "description": "Et esse dolores. Nam nihil dignissimos. Non numquam distinctio.", + "business_objective": "sensor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Debitis quo qui nihil.", - "ref_id": "xccdf_org.ssgproject.content_profile_edd696c3b836b1bb845331b5ee0b2e77", + "profile_title": "Quos accusamus hic similique.", + "ref_id": "xccdf_org.ssgproject.content_profile_419abd4adcf8e0359c60a24e56b82113", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1641,15 +1818,15 @@ "reported_system_count": 4 }, { - "id": "9f65fe0f-f88e-469c-af9a-174fd05ac7fe", - "title": "Neque facere porro ab.", - "description": "Repudiandae nihil ut. Ab non quia. Dolorum et velit.", - "business_objective": "circuit", + "id": "82fd3f67-0352-474f-ae98-6ba9fe9bba5f", + "title": "Dolores ad culpa provident.", + "description": "Facere sed et. Tempore qui totam. Corrupti perferendis id.", + "business_objective": "bandwidth", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Ipsam blanditiis est facilis.", - "ref_id": "xccdf_org.ssgproject.content_profile_eef005f27cbf6aae17c2a0a3283d2f0a", + "profile_title": "Nostrum ullam occaecati minima.", + "ref_id": "xccdf_org.ssgproject.content_profile_56e9fbb444774b70f2be2de0a3ec5470", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1658,15 +1835,15 @@ "reported_system_count": 4 }, { - "id": "d81f0a3d-a585-47be-a5b5-e85018b88af4", - "title": "Enim ad nostrum accusamus.", - "description": "Qui voluptatum itaque. Molestias et aliquam. Excepturi ut vitae.", + "id": "85370e21-d8f1-4176-9c91-3037d6884c01", + "title": "Veritatis quibusdam hic odit.", + "description": "Dolorum ut assumenda. Veritatis ea expedita. Quia vel assumenda.", "business_objective": "bus", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Placeat quas et odio.", - "ref_id": "xccdf_org.ssgproject.content_profile_b4854dea64ff20ae9ba13586cda1b665", + "profile_title": "Labore ut sequi repellat.", + "ref_id": "xccdf_org.ssgproject.content_profile_4cf8572fe15307dd1f9485da8a38356c", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1692,15 +1869,15 @@ "value": { "data": [ { - "id": "731aa746-7e71-47da-9205-b256de097fe6", - "title": "Autem dolor deleniti repudiandae.", - "description": "Delectus vel occaecati. Laboriosam neque consequatur. Consectetur aspernatur ad.", - "business_objective": "monitor", + "id": "14821b6b-de01-4d34-b523-3f64e234a6de", + "title": "Odit mollitia inventore at.", + "description": "Dolor doloremque voluptas. Nemo libero voluptas. Ea possimus beatae.", + "business_objective": "program", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Voluptatem quam laboriosam doloribus.", - "ref_id": "xccdf_org.ssgproject.content_profile_ab22acb04db80787960dc9a8b4e5cf4e", + "profile_title": "Consequatur quas iusto blanditiis.", + "ref_id": "xccdf_org.ssgproject.content_profile_6e8d0621c68f1236d6354f26e1162e5a", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1709,15 +1886,15 @@ "reported_system_count": 4 }, { - "id": "aa871d49-1a27-4fb6-9ee6-d4746a4383b0", - "title": "Cumque dolore sit nam.", - "description": "Sint officia dolores. Porro rerum nostrum. Ad animi est.", - "business_objective": "monitor", + "id": "1e337372-42c5-4621-9536-64135635cbd3", + "title": "Magni dolor voluptas recusandae.", + "description": "Unde cupiditate asperiores. Atque explicabo voluptate. Illum quia ipsam.", + "business_objective": "interface", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Veniam eveniet perferendis atque.", - "ref_id": "xccdf_org.ssgproject.content_profile_f60ef7fd02dfb37c40cd1279e9ada2e7", + "profile_title": "Nemo occaecati delectus saepe.", + "ref_id": "xccdf_org.ssgproject.content_profile_bf7439cb9f6be8867a22f7b855e81440", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1726,15 +1903,15 @@ "reported_system_count": 4 }, { - "id": "aeaf9316-b905-4219-baa9-9bbec8235a91", - "title": "Placeat optio at quas.", - "description": "Nihil doloremque eaque. Numquam temporibus facilis. Aut tenetur non.", - "business_objective": "pixel", + "id": "45195988-d38a-4c8f-8070-b7aff7cdbe7c", + "title": "Harum asperiores velit laboriosam.", + "description": "Amet quibusdam deleniti. Alias impedit ut. Pariatur itaque inventore.", + "business_objective": "application", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Quod quidem ea omnis.", - "ref_id": "xccdf_org.ssgproject.content_profile_32637ff34564db435e2d4cb81bcb68bb", + "profile_title": "Vel perspiciatis quas animi.", + "ref_id": "xccdf_org.ssgproject.content_profile_434eb7ce8d37305076d4c00b71688db1", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1743,15 +1920,15 @@ "reported_system_count": 4 }, { - "id": "c026c5b8-3373-4350-80fa-766b1ef796d4", - "title": "Temporibus dignissimos consequatur nesciunt.", - "description": "Voluptatem et dicta. Vel voluptatem ut. Eligendi nostrum similique.", - "business_objective": "array", + "id": "ad4026b8-ce96-48f0-ab97-2738d337817a", + "title": "Totam aut officiis voluptates.", + "description": "Quos sunt nostrum. Error nihil ut. Qui id qui.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Cupiditate velit quod quo.", - "ref_id": "xccdf_org.ssgproject.content_profile_890526824db832635e27b11fe007156b", + "profile_title": "Nobis unde sed maiores.", + "ref_id": "xccdf_org.ssgproject.content_profile_e182d2eaf5d2e3ef75a897b65af5f325", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1760,15 +1937,15 @@ "reported_system_count": 4 }, { - "id": "d6a322fa-3326-4601-9010-3e6d761e0352", - "title": "Expedita aut porro sit.", - "description": "Aperiam dignissimos exercitationem. Facere totam qui. Error harum iure.", - "business_objective": "firewall", + "id": "d638a262-5314-4a92-b5e8-34283c70d2b4", + "title": "Et blanditiis qui et.", + "description": "Assumenda voluptatem sed. Enim minus est. Ea reprehenderit amet.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Voluptatibus quia quidem eos.", - "ref_id": "xccdf_org.ssgproject.content_profile_1dd85186ccabd7167e577e77d60a3e99", + "profile_title": "Repellendus odio nobis et.", + "ref_id": "xccdf_org.ssgproject.content_profile_181e9eb27a7dd87445414c0a6a5d6d82", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1936,15 +2113,15 @@ "Returns a Report": { "value": { "data": { - "id": "918aeada-3482-428e-9b68-dd44217ff9b6", - "title": "Laboriosam eos dolor rerum.", - "description": "Aspernatur temporibus cumque. Repellendus iusto ut. Iusto sunt cum.", - "business_objective": "bandwidth", + "id": "faf468a2-1905-4ddc-9fc0-28a7342d609f", + "title": "Fugiat rem ut dolor.", + "description": "Et eius beatae. Esse omnis quo. Omnis iure rerum.", + "business_objective": "microchip", "compliance_threshold": 90.0, "type": "report", "os_major_version": 9, - "profile_title": "Eius quia quos dolorem.", - "ref_id": "xccdf_org.ssgproject.content_profile_973a27d65a8c45adf99f575a9ea442f9", + "profile_title": "Veniam ea et natus.", + "ref_id": "xccdf_org.ssgproject.content_profile_630b8b834a4ce8b962511aac0fbd0715", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1981,7 +2158,7 @@ "Description of an error when requesting a non-existing Report": { "value": { "errors": [ - "V2::Report not found with ID 67e0819e-b0de-4d04-9832-5914326f74f0" + "V2::Report not found with ID 7d13342e-1393-4fbb-aeb9-69b2e9b314ab" ] }, "summary": "", @@ -2030,15 +2207,15 @@ "Deletes Report's test results": { "value": { "data": { - "id": "6bb593f4-82d6-4315-bcdb-83c096149453", - "title": "Et placeat in ut.", - "description": "Illum eius nihil. Itaque et ipsa. Quam numquam temporibus.", - "business_objective": "port", + "id": "49dddd98-09e7-4fae-8d53-ec454ee83907", + "title": "Saepe laborum provident quasi.", + "description": "Enim consequatur nesciunt. Amet ut iure. Animi excepturi quidem.", + "business_objective": "panel", "compliance_threshold": 90.0, "type": "report", "os_major_version": 9, - "profile_title": "Repellendus voluptate sed qui.", - "ref_id": "xccdf_org.ssgproject.content_profile_2d50f8a29f269bb3e00fa3dbf3df764e", + "profile_title": "Iusto consequatur ipsa ut.", + "ref_id": "xccdf_org.ssgproject.content_profile_b084ba4919f40140d258ccb1e7e86fed", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -2122,7 +2299,7 @@ "Description of an error when requesting a non-existing Report": { "value": { "errors": [ - "V2::Report not found with ID a0944806-cd9e-4c83-afcf-71b0fff24b4b" + "V2::Report not found with ID 233045bc-71b1-4c10-a368-7edd146810bf" ] }, "summary": "", @@ -2240,15 +2417,15 @@ "value": { "data": [ { - "id": "34661aa5-fee6-4e11-b5aa-1743205637f9", - "title": "Enim odit qui vel.", - "description": "Incidunt non possimus. Ad tenetur sequi. Quae eum voluptas.", - "business_objective": "pixel", + "id": "10ff624b-4a66-4571-8d63-ee636403a84f", + "title": "Sequi minima inventore nihil.", + "description": "Eveniet nesciunt velit. Repellat laborum in. Laborum omnis dolorem.", + "business_objective": "sensor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Voluptates deserunt veritatis facere.", - "ref_id": "xccdf_org.ssgproject.content_profile_e817c6ba87af13759d3c639ee994484f", + "profile_title": "Sit ipsa ullam ut.", + "ref_id": "xccdf_org.ssgproject.content_profile_b91c6832c904c540aba4f0fe0e7d6454", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2256,15 +2433,15 @@ "reported_system_count": 0 }, { - "id": "542bf92e-626a-4396-a447-c0317c010af2", - "title": "Impedit inventore qui ut.", - "description": "Consequatur repudiandae consequatur. Omnis distinctio non. Et voluptas sapiente.", - "business_objective": "card", + "id": "4524a903-01d7-4d46-8c8b-67723ab0acf9", + "title": "Assumenda mollitia tenetur veniam.", + "description": "Ullam aut amet. Sint eius veritatis. Ab nobis maxime.", + "business_objective": "driver", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Rerum molestias quis occaecati.", - "ref_id": "xccdf_org.ssgproject.content_profile_10a575ac9478fb96e07893f1701a667c", + "profile_title": "Soluta porro totam iure.", + "ref_id": "xccdf_org.ssgproject.content_profile_27f450d54046d7c5be7a429a16239d5c", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2272,15 +2449,15 @@ "reported_system_count": 0 }, { - "id": "74eefebe-5787-423d-8e45-78d1645169f0", - "title": "Necessitatibus alias velit ea.", - "description": "Consectetur voluptates in. Nesciunt sint dicta. Occaecati est doloribus.", - "business_objective": "interface", + "id": "6517a7b3-c938-408d-a6f0-516f6f40d073", + "title": "Minus illum temporibus et.", + "description": "Sint qui et. Sit fugit necessitatibus. Quo aut deleniti.", + "business_objective": "alarm", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Culpa sed ut quaerat.", - "ref_id": "xccdf_org.ssgproject.content_profile_e618fecbb8252d88fc8f2daf7be979a2", + "profile_title": "Minima occaecati error earum.", + "ref_id": "xccdf_org.ssgproject.content_profile_1ace74ffb1457dd33843720da4cc8b84", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2288,15 +2465,15 @@ "reported_system_count": 0 }, { - "id": "966d847e-a370-4ba1-ae31-06dc0e46b895", - "title": "Sit adipisci porro nisi.", - "description": "Sit id magnam. Iusto accusamus aliquid. Quis tenetur dolor.", - "business_objective": "card", + "id": "912415a6-0220-4ecd-a276-1219fd0b0777", + "title": "Reiciendis dolores sapiente officia.", + "description": "Nulla maiores nemo. Pariatur quae et. Quos beatae adipisci.", + "business_objective": "monitor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Aut temporibus id ipsa.", - "ref_id": "xccdf_org.ssgproject.content_profile_d282010bfa5f607c0ba259644a37289c", + "profile_title": "Quo culpa expedita quia.", + "ref_id": "xccdf_org.ssgproject.content_profile_0461ec22704d613d5eaa71350668579e", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2304,15 +2481,15 @@ "reported_system_count": 0 }, { - "id": "b4380898-0808-4c16-b488-9581b0b35de7", - "title": "Qui quia eos sapiente.", - "description": "Tenetur nihil molestiae. Iste dolore et. Earum ut molestiae.", - "business_objective": "capacitor", + "id": "f3948fe2-8b77-4898-8546-5e260c261699", + "title": "Ut numquam dolorem enim.", + "description": "Sed nobis molestiae. Sunt voluptatem fugit. Omnis qui tempore.", + "business_objective": "port", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Enim explicabo aut tempore.", - "ref_id": "xccdf_org.ssgproject.content_profile_54a83ec89b3f97f6aaa016b5b09380a4", + "profile_title": "Iste repudiandae quod qui.", + "ref_id": "xccdf_org.ssgproject.content_profile_eac684b068d6a284923e7b810edcb88e", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2326,8 +2503,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/systems/1b68fad4-dacf-4710-9a1d-a2d58e547bbe/reports?limit=10&offset=0", - "last": "/api/compliance/v2/systems/1b68fad4-dacf-4710-9a1d-a2d58e547bbe/reports?limit=10&offset=0" + "first": "/api/compliance/v2/systems/2a12ffe5-7d98-4d82-a8ac-bc0d428c8022/reports?limit=10&offset=0", + "last": "/api/compliance/v2/systems/2a12ffe5-7d98-4d82-a8ac-bc0d428c8022/reports?limit=10&offset=0" } }, "summary": "", @@ -2337,15 +2514,15 @@ "value": { "data": [ { - "id": "74732185-ae6b-4a4d-9fc0-7ded8df73ec6", - "title": "Et qui qui nihil.", - "description": "Ex et molestiae. Quia iste animi. Iure dolore necessitatibus.", - "business_objective": "firewall", + "id": "61808bc8-367c-4937-b3ad-95bd25c34836", + "title": "Esse earum aut officia.", + "description": "Sunt voluptatem alias. Neque corrupti repudiandae. Vero atque quia.", + "business_objective": "matrix", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Laborum culpa earum illo.", - "ref_id": "xccdf_org.ssgproject.content_profile_9b5bcb77c68a9a9cb1684986ad9cc902", + "profile_title": "Ad sit quam et.", + "ref_id": "xccdf_org.ssgproject.content_profile_ea5052fb1dc89e0fb40566d5155f3b62", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2353,15 +2530,15 @@ "reported_system_count": 0 }, { - "id": "f15524f8-b055-41a3-b3d8-3db02754cb04", - "title": "Eveniet doloremque expedita consectetur.", - "description": "Rerum qui dolorum. Temporibus sint ab. Quod veniam eos.", - "business_objective": "interface", + "id": "57e2c119-f9b0-4c40-82ab-d925a40a49f3", + "title": "Nisi nemo ut delectus.", + "description": "Sit similique est. Dignissimos ipsa debitis. Vel ratione hic.", + "business_objective": "feed", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Ducimus sequi quam dolorum.", - "ref_id": "xccdf_org.ssgproject.content_profile_d79c8d48a4063da4996d2b5c9cc6859d", + "profile_title": "Nihil voluptate temporibus qui.", + "ref_id": "xccdf_org.ssgproject.content_profile_0fef21c108b6f5227754c6e31a0ff73e", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2369,15 +2546,15 @@ "reported_system_count": 0 }, { - "id": "4daa3cdf-d1ab-4eba-9d63-5aabe3edfd84", - "title": "Fugiat exercitationem omnis dignissimos.", - "description": "Velit harum et. At blanditiis aperiam. Inventore officia voluptatem.", - "business_objective": "protocol", + "id": "3205d98c-18d0-423b-911c-eb0c158a70bd", + "title": "Omnis inventore in velit.", + "description": "Reiciendis fuga et. Debitis voluptatem nulla. Asperiores quia ut.", + "business_objective": "microchip", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Quis illum eveniet omnis.", - "ref_id": "xccdf_org.ssgproject.content_profile_7c8f75d191f04ede60bd7e5d8b894450", + "profile_title": "Alias laboriosam sint optio.", + "ref_id": "xccdf_org.ssgproject.content_profile_d66b5332187e39ff42b9e200d2a2c519", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2385,15 +2562,15 @@ "reported_system_count": 0 }, { - "id": "a7e32d18-83cd-43f2-b3da-243996a8321c", - "title": "Quis quia voluptatem a.", - "description": "Et odit non. Eligendi quo voluptas. Molestiae sequi cupiditate.", - "business_objective": "capacitor", + "id": "a744ac34-6140-43f7-8c66-2ba2c327e8c3", + "title": "Sint debitis nobis necessitatibus.", + "description": "Reprehenderit eius corporis. Quia sed quibusdam. Autem fugiat suscipit.", + "business_objective": "microchip", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Est alias doloremque vero.", - "ref_id": "xccdf_org.ssgproject.content_profile_d2657bcd9d2fc498267fdff1ceaa3a68", + "profile_title": "Voluptatum corporis rerum aut.", + "ref_id": "xccdf_org.ssgproject.content_profile_17932895fd62346ff7910c0c409059bd", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2401,15 +2578,15 @@ "reported_system_count": 0 }, { - "id": "5a1df11d-e838-43f7-85af-7cc7fa880516", - "title": "Quisquam et qui repellendus.", - "description": "Mollitia omnis ut. Dolorem quidem qui. Vel ipsa sapiente.", - "business_objective": "firewall", + "id": "29a87edf-1f76-418d-8e5f-7051af180ff0", + "title": "Voluptates dolores consequatur voluptate.", + "description": "Voluptates facilis sapiente. Totam est mollitia. Voluptate aliquid culpa.", + "business_objective": "application", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Et exercitationem voluptatibus minus.", - "ref_id": "xccdf_org.ssgproject.content_profile_02a63cd368ebb6248b7edcd56c91f790", + "profile_title": "Debitis eos labore repellendus.", + "ref_id": "xccdf_org.ssgproject.content_profile_2ea23cf23eae4a53a7dedadeb43b6f90", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2424,8 +2601,8 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/systems/9f52fce2-81f8-475b-84e2-81ec611526bb/reports?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/systems/9f52fce2-81f8-475b-84e2-81ec611526bb/reports?limit=10&offset=0&sort_by=title" + "first": "/api/compliance/v2/systems/3b5e4653-0661-44ef-843d-db5c82c7f024/reports?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/systems/3b5e4653-0661-44ef-843d-db5c82c7f024/reports?limit=10&offset=0&sort_by=title" } }, "summary": "", @@ -2582,92 +2759,92 @@ "value": { "data": [ { - "id": "0aff94db-fb20-45ad-83da-7e4ae5e3520e", - "ref_id": "xccdf_org.ssgproject.content_rule_group_17b750c008acc31783044aebf546b792", - "title": "Harum officiis natus eaque.", - "rationale": "Repellat fugit voluptatem. Eum temporibus voluptate. Voluptatum quidem quia.", - "description": "Sed a laboriosam. Delectus vel provident. Ducimus quisquam et.", + "id": "03d432f8-c98e-4d22-a1a0-1b3653f63a1c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_28565ce8120cec6794d0851f9f6add43", + "title": "Ipsum magni ducimus autem.", + "rationale": "Asperiores voluptatibus suscipit. Cumque voluptas voluptatem. Sed voluptatem voluptates.", + "description": "Repellendus tempora consequatur. Accusantium est error. Et quibusdam fugiat.", "precedence": null, "type": "rule_group" }, { - "id": "0e55aefd-4210-49ea-b303-de27007332f5", - "ref_id": "xccdf_org.ssgproject.content_rule_group_85bbec96103ca8f7d2c5bce9d27f7d48", - "title": "Suscipit porro aut possimus.", - "rationale": "Quos necessitatibus similique. Sunt sed et. Ea expedita in.", - "description": "Corporis tempore placeat. Ut aspernatur reprehenderit. Distinctio voluptate veritatis.", + "id": "12cb7498-3e60-432e-b5e9-4e6116d95c1e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_205ddbb7ca3582fcd030779ad5b725b9", + "title": "Consequatur repellat et quibusdam.", + "rationale": "Nemo sunt consectetur. Voluptatem modi dolor. Nostrum voluptatem aut.", + "description": "Reprehenderit quo voluptatem. Non facere dolor. Debitis doloribus culpa.", "precedence": null, "type": "rule_group" }, { - "id": "28125594-50e6-4f99-acc8-0e41be447751", - "ref_id": "xccdf_org.ssgproject.content_rule_group_cf60fefdd6c4694e2a76f3ab83f4aa2d", - "title": "Sunt dignissimos debitis vel.", - "rationale": "Et voluptatibus dolores. Dolore rem nam. Iusto consequatur sapiente.", - "description": "Id asperiores quos. Quia adipisci officiis. Numquam quasi asperiores.", + "id": "17988dde-5273-47d9-97b4-77b5b6fa02f8", + "ref_id": "xccdf_org.ssgproject.content_rule_group_d9e0696af03354eac97446851e6326d3", + "title": "Quis autem doloremque omnis.", + "rationale": "Illo est omnis. Assumenda optio voluptas. Dolorem architecto quae.", + "description": "Maiores totam consequuntur. Consequatur vero ut. Aut animi autem.", "precedence": null, "type": "rule_group" }, { - "id": "28d52c8d-ded5-4e03-9d32-8a48fb1304f4", - "ref_id": "xccdf_org.ssgproject.content_rule_group_1fc85d45077da6f4e21cc0bd6c1895d2", - "title": "Corporis et ducimus dolorum.", - "rationale": "Aut qui quis. Quia voluptatem perferendis. Error placeat nemo.", - "description": "Consequuntur a iure. Esse nemo sequi. Molestias sed excepturi.", + "id": "1e5abc37-d83c-42fe-9ea8-2cd967662a44", + "ref_id": "xccdf_org.ssgproject.content_rule_group_b31ca08a34baded024e64618f0398d18", + "title": "Tempore aut beatae facilis.", + "rationale": "Sit ut est. Ad nesciunt qui. Est incidunt rerum.", + "description": "Reiciendis fugiat sit. Quis id perspiciatis. Qui molestiae architecto.", "precedence": null, "type": "rule_group" }, { - "id": "3386e42a-39be-4c78-b32f-19ef0dc94487", - "ref_id": "xccdf_org.ssgproject.content_rule_group_28a93a4a18c0c86d5d4aeec3ea6d6d94", - "title": "Nisi sint minus consequatur.", - "rationale": "Dolorem voluptatem eveniet. Libero aut sit. Aperiam consequuntur reprehenderit.", - "description": "Accusamus eius expedita. Omnis velit molestias. Dolor dicta ut.", + "id": "2ce62e48-31db-4d5d-8c4f-75135fb24704", + "ref_id": "xccdf_org.ssgproject.content_rule_group_c0f44ef3753d0e30220c861c13ffd397", + "title": "Est sed in laudantium.", + "rationale": "Nobis harum assumenda. Doloribus adipisci nulla. Explicabo voluptas maxime.", + "description": "Ratione illum voluptatem. Nulla maiores inventore. Et voluptatem similique.", "precedence": null, "type": "rule_group" }, { - "id": "3e28d43b-f4c3-4f32-ada8-7cebfba51998", - "ref_id": "xccdf_org.ssgproject.content_rule_group_a073296a13edd3486c441781aa8ac7d2", - "title": "Quasi dolore quo ducimus.", - "rationale": "Inventore et alias. Quibusdam ducimus sed. Quidem est laboriosam.", - "description": "Quo hic et. Dignissimos rerum nobis. Eum iure et.", + "id": "3712185b-a175-4418-b537-f4ade377497d", + "ref_id": "xccdf_org.ssgproject.content_rule_group_1033f7ac62306020979a24cd63efde74", + "title": "Voluptatem laboriosam fugit et.", + "rationale": "Eum adipisci labore. Id voluptate repellat. Impedit molestiae esse.", + "description": "Minima enim odio. Necessitatibus molestiae aliquam. Soluta sit aut.", "precedence": null, "type": "rule_group" }, { - "id": "3f31b354-674e-4dde-b6ad-b0f7ed1da5ff", - "ref_id": "xccdf_org.ssgproject.content_rule_group_8750b97644e5d0af7a14d1c03e7381de", - "title": "Voluptatem vero quia odio.", - "rationale": "Voluptas officia corporis. Commodi non quia. Accusamus qui suscipit.", - "description": "Ad beatae velit. Laboriosam occaecati voluptatem. Impedit doloremque autem.", + "id": "4d0b0f4e-f21b-4736-993b-d5bc39af296c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_60de25d255fa171c3cf15123703f66b1", + "title": "Ratione ut rerum libero.", + "rationale": "Dignissimos eum quam. Sed ea quam. Illum molestias iure.", + "description": "Officia qui illo. Ut error ut. Eum quia similique.", "precedence": null, "type": "rule_group" }, { - "id": "46da37ba-d41d-4bd0-a9e2-de1f21b37a7c", - "ref_id": "xccdf_org.ssgproject.content_rule_group_799326893c109890d02b2bb649087a46", - "title": "Excepturi et dolor et.", - "rationale": "Dolorem neque eligendi. Modi qui quam. In voluptate qui.", - "description": "Est repellendus eveniet. Iste id hic. Ducimus eveniet dolore.", + "id": "541f1c17-14df-40cb-bb40-bb857958362f", + "ref_id": "xccdf_org.ssgproject.content_rule_group_e9b52cf24f09d9776e8d07aadd2962a3", + "title": "Quia dolor enim illum.", + "rationale": "Ut quos aperiam. Voluptatem vero fugit. Beatae adipisci dolores.", + "description": "Sunt deleniti quaerat. Modi quidem veniam. Ullam adipisci sunt.", "precedence": null, "type": "rule_group" }, { - "id": "5afde567-0c9a-4b65-aee1-ba2ff602e071", - "ref_id": "xccdf_org.ssgproject.content_rule_group_d2e2979088e6ecec2f44f4740bb18dff", - "title": "Alias est cum a.", - "rationale": "Ut placeat deleniti. Temporibus maxime qui. Voluptatem impedit nam.", - "description": "Necessitatibus dolores neque. Et voluptas corporis. Eaque delectus dolorum.", + "id": "5e9a878f-85f0-4481-8017-2a1f7afd746e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_e551c32d8f95137faeefd82e6a8aae04", + "title": "Laudantium inventore modi cumque.", + "rationale": "Laborum earum rerum. Distinctio in dolor. Iusto natus illum.", + "description": "Qui aspernatur excepturi. Odio nihil magnam. Quibusdam blanditiis in.", "precedence": null, "type": "rule_group" }, { - "id": "66e5392b-cae4-477f-9f0a-79b7b06d3183", - "ref_id": "xccdf_org.ssgproject.content_rule_group_4fc27630325b62daa27424bb73f8655f", - "title": "Accusantium voluptatem perferendis labore.", - "rationale": "Est in at. Optio inventore aperiam. Dicta quam vero.", - "description": "Molestiae eaque quia. Deleniti repellendus sit. Amet fugiat consectetur.", + "id": "6953e8d8-20c4-4609-854b-437f4fca33fe", + "ref_id": "xccdf_org.ssgproject.content_rule_group_a6a4aaf58b89c78fe04583e18f78069d", + "title": "Voluptas quo dolores rem.", + "rationale": "Voluptatum rerum maiores. Voluptate repudiandae veritatis. Sint repellat ipsam.", + "description": "Perferendis est totam. Incidunt eos deserunt. Repudiandae quia animi.", "precedence": null, "type": "rule_group" } @@ -2678,9 +2855,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/44f9b9f0-faf6-4cab-bde3-108a0ed256c6/rule_groups?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/44f9b9f0-faf6-4cab-bde3-108a0ed256c6/rule_groups?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/44f9b9f0-faf6-4cab-bde3-108a0ed256c6/rule_groups?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/4e1f08e9-5cad-41ca-9b96-60d4a1be61f5/rule_groups?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/4e1f08e9-5cad-41ca-9b96-60d4a1be61f5/rule_groups?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/4e1f08e9-5cad-41ca-9b96-60d4a1be61f5/rule_groups?limit=10&offset=10" } }, "summary": "", @@ -2690,92 +2867,92 @@ "value": { "data": [ { - "id": "0147d90b-5dd2-4455-93e5-7e5326e3c8ec", - "ref_id": "xccdf_org.ssgproject.content_rule_group_58a329b061077ac39926584ba206269b", - "title": "Repellat dolore quia commodi.", - "rationale": "Repellendus modi inventore. Ea maiores ipsa. Dolores quam eum.", - "description": "Sed quod vel. Voluptatem ex vero. Et impedit et.", + "id": "04e82ac9-d18a-42d1-9b77-3929944afdf8", + "ref_id": "xccdf_org.ssgproject.content_rule_group_4e4e48d01d1dc80983e24f15a3a4f593", + "title": "Iusto inventore aut consequuntur.", + "rationale": "Nemo aliquid ut. Iusto aut sed. Magnam laudantium earum.", + "description": "Voluptatem est ullam. Suscipit soluta sunt. Ea sunt aspernatur.", "precedence": null, "type": "rule_group" }, { - "id": "021ca252-f8ca-4da9-9647-02ab1ac548f3", - "ref_id": "xccdf_org.ssgproject.content_rule_group_6ccffe7473d583feb568da1ccdc96681", - "title": "Veritatis quasi doloremque maiores.", - "rationale": "Perspiciatis in assumenda. Voluptas quia amet. Nostrum hic quia.", - "description": "Quia velit ipsum. Et est sed. Aspernatur repudiandae qui.", + "id": "0a912747-9bd0-4ee2-a8bc-1ecfa9a4715e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_6d1672c2fb4890fa135ea9a9704c5f76", + "title": "Nemo a aspernatur distinctio.", + "rationale": "Velit nulla at. Repellat ut voluptates. Incidunt esse dolores.", + "description": "Voluptate eius iusto. Laboriosam fugit cum. Delectus eos numquam.", "precedence": null, "type": "rule_group" }, { - "id": "0f589b33-e9b0-4188-a42e-7256671483fc", - "ref_id": "xccdf_org.ssgproject.content_rule_group_4bf2cb43a5e322d30ac3f411bee7db97", - "title": "Sequi sed voluptas voluptate.", - "rationale": "Ea animi itaque. Ipsum vero dolorum. Quo velit quisquam.", - "description": "Non omnis exercitationem. Culpa voluptatem fugiat. Ut voluptate sequi.", + "id": "21f44fbc-833c-47f7-8cc5-746091ee26e0", + "ref_id": "xccdf_org.ssgproject.content_rule_group_0c944e6d72958dae7cd63b8d33d02b81", + "title": "Atque in aut facere.", + "rationale": "Ea repellendus quo. Nisi ut rerum. Illo ea autem.", + "description": "Commodi praesentium saepe. Officiis quae animi. Sint quia expedita.", "precedence": null, "type": "rule_group" }, { - "id": "172c4123-d3bc-44e6-a00b-c52af21a1399", - "ref_id": "xccdf_org.ssgproject.content_rule_group_072429bc940412e39d1fa1e7d7335bf1", - "title": "Fugit ab sit in.", - "rationale": "Magni eos mollitia. Vel suscipit quos. Sapiente culpa quam.", - "description": "Consectetur sunt aspernatur. Ipsam eius id. Harum iure sint.", + "id": "2b622c28-73ff-43e7-a772-332a10994dae", + "ref_id": "xccdf_org.ssgproject.content_rule_group_ced67ca8b9d0be9cd174f98b5aca60c1", + "title": "Mollitia pariatur omnis quia.", + "rationale": "Consectetur quod officia. Et ducimus distinctio. Ut odit exercitationem.", + "description": "Pariatur autem vel. Distinctio nisi harum. Consequuntur quaerat et.", "precedence": null, "type": "rule_group" }, { - "id": "23d19000-56ee-4ff9-8e18-327763d39ff7", - "ref_id": "xccdf_org.ssgproject.content_rule_group_83338e5420f4a327cddee3c97d658e9e", - "title": "Rerum et laboriosam non.", - "rationale": "Delectus impedit sunt. Optio atque quas. Consequatur deserunt dolor.", - "description": "Dicta voluptas sit. Itaque consequatur in. Dolores hic non.", + "id": "2cca0f94-e3cd-4957-ae71-d9e7bcabc724", + "ref_id": "xccdf_org.ssgproject.content_rule_group_0c4fabf8a2b8ae56bdaca14167aa990b", + "title": "Cupiditate ea quia nobis.", + "rationale": "Tenetur id facere. Aut velit qui. Molestias quo iure.", + "description": "Nisi quo aspernatur. Ea voluptas eos. Pariatur esse quo.", "precedence": null, "type": "rule_group" }, { - "id": "3045af75-73f8-4d44-8095-41f27f67e6ec", - "ref_id": "xccdf_org.ssgproject.content_rule_group_65e55d300f34ddf7ef60f884c2d75add", - "title": "Nostrum numquam iusto ab.", - "rationale": "Minus voluptatem sunt. Aliquid aut voluptatem. Autem libero velit.", - "description": "Ut vero rerum. Enim rem aut. Ut et hic.", + "id": "2d5e131a-4db4-46a4-9e3c-43428b70b63c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_e04862e40e08f0cd028d3a4b11b0daaf", + "title": "Voluptatibus impedit optio est.", + "rationale": "Ea ea qui. Culpa earum totam. Enim rerum similique.", + "description": "Dolorum similique dolor. Assumenda nemo corporis. Quia autem delectus.", "precedence": null, "type": "rule_group" }, { - "id": "41f27da3-0380-4211-afbd-2b616a64b97f", - "ref_id": "xccdf_org.ssgproject.content_rule_group_43e7f83752e3dad363e5a3c69b9fb08a", - "title": "Magnam quasi voluptatum at.", - "rationale": "Id at voluptas. Ut ut qui. Aut corrupti a.", - "description": "Vitae distinctio qui. Fugiat hic quis. Aspernatur fuga nostrum.", + "id": "41c89a5a-ecbe-403c-8816-c19b148c93a9", + "ref_id": "xccdf_org.ssgproject.content_rule_group_11f12bf1bfdad9a6d746f2efb584e16a", + "title": "Omnis perspiciatis et ex.", + "rationale": "Exercitationem rerum corporis. Et blanditiis rerum. Facilis sequi aut.", + "description": "Asperiores molestias ipsam. Commodi aut omnis. Sed eum non.", "precedence": null, "type": "rule_group" }, { - "id": "5a83b321-d698-4650-8a22-68fd7eccd001", - "ref_id": "xccdf_org.ssgproject.content_rule_group_ca75f21205ccb03ba103feeb73bf3666", - "title": "Ratione libero dolorem dicta.", - "rationale": "Sed dolorem doloremque. Qui in dolor. Aperiam praesentium dolores.", - "description": "Quaerat maxime impedit. Magni explicabo quia. Labore sit quis.", + "id": "44df218f-c1da-43c6-bfc9-6bdb57d24214", + "ref_id": "xccdf_org.ssgproject.content_rule_group_9fbb6ebd5ea70d7ce693cf749df99fd3", + "title": "Quia et qui est.", + "rationale": "Id consectetur voluptatem. Velit fuga fugit. Voluptatibus libero quidem.", + "description": "Doloremque voluptatem sit. Cumque unde sed. Voluptates aut quia.", "precedence": null, "type": "rule_group" }, { - "id": "6968a036-4217-44b3-87fe-689c4a0840fe", - "ref_id": "xccdf_org.ssgproject.content_rule_group_ef0e6665d1420644e4f29361c48e5101", - "title": "Odio quod accusantium corporis.", - "rationale": "Natus velit quia. Dolorum ipsum quam. Aliquam in omnis.", - "description": "Asperiores excepturi incidunt. Sit ipsa voluptatum. In qui magnam.", + "id": "45891802-c09f-4856-86f0-9b486d33f4c7", + "ref_id": "xccdf_org.ssgproject.content_rule_group_b9e484e73f14f672b60a24faaccd8dc8", + "title": "Quia eaque ducimus et.", + "rationale": "Nam hic aut. Voluptate perspiciatis quidem. Nostrum explicabo aperiam.", + "description": "Veritatis unde voluptas. Cupiditate tenetur sit. Est sunt saepe.", "precedence": null, "type": "rule_group" }, { - "id": "8a5b5168-8626-4771-ab90-0462d5a1cb67", - "ref_id": "xccdf_org.ssgproject.content_rule_group_adacf4d932523243d527bc6c51c203da", - "title": "Sed quo omnis ea.", - "rationale": "Quisquam enim similique. Quis reprehenderit omnis. Eius non aut.", - "description": "Ut molestias explicabo. Qui at id. Rerum veritatis fuga.", + "id": "60c1eb3c-f2fe-4b4b-a7e4-1b9068bcbfd4", + "ref_id": "xccdf_org.ssgproject.content_rule_group_7c39ad15a9f7f1c0b87e71e6747f96ad", + "title": "Et ut ad occaecati.", + "rationale": "Dolore error repellendus. Veritatis expedita qui. Dolore enim aut.", + "description": "Voluptate consequuntur et. Impedit a repellendus. Dicta labore ut.", "precedence": null, "type": "rule_group" } @@ -2787,9 +2964,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/794ceb4b-2b3c-4952-8990-af99a9e44428/rule_groups?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/794ceb4b-2b3c-4952-8990-af99a9e44428/rule_groups?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/794ceb4b-2b3c-4952-8990-af99a9e44428/rule_groups?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/61ae14d6-d6c3-4d81-97ef-6fb5bf0b17f2/rule_groups?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/61ae14d6-d6c3-4d81-97ef-6fb5bf0b17f2/rule_groups?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/61ae14d6-d6c3-4d81-97ef-6fb5bf0b17f2/rule_groups?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -2896,11 +3073,11 @@ "Returns a Rule Group": { "value": { "data": { - "id": "bae658ae-4233-4a00-8ebe-b29728334b77", - "ref_id": "xccdf_org.ssgproject.content_rule_group_65b61a43e211fab5bcf767c8fdb895b7", - "title": "Et ut possimus et.", - "rationale": "Debitis et voluptate. Expedita voluptates rerum. Porro omnis quia.", - "description": "Consequuntur quae dolores. Vel quia iste. Ratione earum qui.", + "id": "af436795-770e-4255-ac50-87da7ae91023", + "ref_id": "xccdf_org.ssgproject.content_rule_group_f949b551f9ced1d198c5d150873008b8", + "title": "Dolore sint quia error.", + "rationale": "Id sunt aperiam. Voluptatum et dolor. Aperiam et ab.", + "description": "Aut et laboriosam. Placeat voluptatem optio. Est vero odit.", "precedence": null, "type": "rule_group" } @@ -2933,7 +3110,7 @@ "Description of an error when requesting a non-existing Rule Group": { "value": { "errors": [ - "V2::RuleGroup not found with ID 5d48b848-b9ed-44c9-b9f2-e960763720a8" + "V2::RuleGroup not found with ID 310d3c4d-c547-40ba-8de6-83d2fdfd3d7a" ] }, "summary": "", @@ -3067,8 +3244,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/d058bcd6-9d28-40f8-8267-61b39a895488/test_results/ff9e28aa-2615-4de5-a320-f84c049e8d97/rule_results?limit=10&offset=0", - "last": "/api/compliance/v2/reports/d058bcd6-9d28-40f8-8267-61b39a895488/test_results/ff9e28aa-2615-4de5-a320-f84c049e8d97/rule_results?limit=10&offset=0" + "first": "/api/compliance/v2/reports/197d0311-2025-41dc-9817-53ee2872f841/test_results/68f1ddba-ebe2-48ee-9544-76b1ef94b708/rule_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/197d0311-2025-41dc-9817-53ee2872f841/test_results/68f1ddba-ebe2-48ee-9544-76b1ef94b708/rule_results?limit=10&offset=0" } }, "summary": "", @@ -3084,8 +3261,8 @@ "sort_by": "result" }, "links": { - "first": "/api/compliance/v2/reports/c3afb404-bf74-4bb6-bc8d-069d1b9f1052/test_results/68b947d8-06d9-4d5e-9e33-6e27f5c6f0a9/rule_results?limit=10&offset=0&sort_by=result", - "last": "/api/compliance/v2/reports/c3afb404-bf74-4bb6-bc8d-069d1b9f1052/test_results/68b947d8-06d9-4d5e-9e33-6e27f5c6f0a9/rule_results?limit=10&offset=0&sort_by=result" + "first": "/api/compliance/v2/reports/3bb1f3ab-ce97-4e9c-959f-66d8e3967d7a/test_results/ed68fa66-c24d-47a8-a4cf-450161372244/rule_results?limit=10&offset=0&sort_by=result", + "last": "/api/compliance/v2/reports/3bb1f3ab-ce97-4e9c-959f-66d8e3967d7a/test_results/ed68fa66-c24d-47a8-a4cf-450161372244/rule_results?limit=10&offset=0&sort_by=result" } }, "summary": "", @@ -3101,8 +3278,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/5eb684b6-4961-481a-8fe2-5584b4bbd26a/test_results/67bcfddf-10a8-4c97-a794-58a35b6963c0/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/5eb684b6-4961-481a-8fe2-5584b4bbd26a/test_results/67bcfddf-10a8-4c97-a794-58a35b6963c0/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0" + "first": "/api/compliance/v2/reports/96e5c561-c4db-49e9-b210-d07e823de3a8/test_results/155b8f28-5d6b-4cb5-8980-fd6ad155f012/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/96e5c561-c4db-49e9-b210-d07e823de3a8/test_results/155b8f28-5d6b-4cb5-8980-fd6ad155f012/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0" } }, "summary": "", @@ -3268,37 +3445,37 @@ "value": { "data": [ { - "id": "136915e6-c76a-4fc8-a801-98e7f8624c0a", - "ref_id": "xccdf_org.ssgproject.content_rule_a94a8e7fefa74291f2e19c0008f88aa9", - "title": "Et ipsa vero nemo.", - "rationale": "Ea ut et. In ut magni. Dolore quis impedit.", - "description": "Accusantium atque eum. Ipsam sunt repellendus. Sapiente est cumque.", - "severity": "high", - "precedence": 5279, + "id": "01531702-3bf6-43a4-9d49-b55aefa84ffd", + "ref_id": "xccdf_org.ssgproject.content_rule_52ceb2a65923626b81d0fa16f30c4c5c", + "title": "Fuga et soluta vitae.", + "rationale": "Ea exercitationem suscipit. Labore fugit assumenda. Eveniet pariatur quia.", + "description": "Unde voluptatum facere. Quae dolorem labore. Placeat ullam occaecati.", + "severity": "low", + "precedence": 7884, "identifier": { - "href": "http://schmitt.example/abdul", - "label": "Mallor" + "href": "http://lang.test/ernie.emard", + "label": "Fastred of Greenholm" }, "references": [ { - "href": "http://kub.test/zachary", - "label": "Carl Cotton" + "href": "http://balistreri-graham.example/cary.paucek", + "label": "Anson Roper" }, { - "href": "http://klein-farrell.test/bradford_blick", - "label": "Hildifons Took" + "href": "http://bashirian-leannon.example/marielle", + "label": "Madril" }, { - "href": "http://ward.test/henry_dach", - "label": "Bain" + "href": "http://metz.example/nannie_mclaughlin", + "label": "Fëanor" }, { - "href": "http://simonis.example/faye.ondricka", - "label": "Lothíriel" + "href": "http://wiegand.example/jere.gorczany", + "label": "Wídfara" }, { - "href": "http://kunze.test/amy", - "label": "Dírhaval" + "href": "http://bauch.test/reinaldo", + "label": "Merry Gardner" } ], "value_checks": null, @@ -3306,37 +3483,37 @@ "type": "rule" }, { - "id": "1e76084a-728f-4164-9e8d-69fe0a488106", - "ref_id": "xccdf_org.ssgproject.content_rule_8e47b5f956575cd4e93fa7e252813459", - "title": "Illo omnis repellendus facilis.", - "rationale": "Dolorum laudantium perspiciatis. Et ut velit. Aut natus tempora.", - "description": "Numquam placeat error. Et eveniet laboriosam. Sed aperiam et.", - "severity": "high", - "precedence": 4481, + "id": "07b66852-fe92-4f76-a975-7b5ef04ad7f7", + "ref_id": "xccdf_org.ssgproject.content_rule_f4209b0d7e802be7699a95be2c9b3b7d", + "title": "Maxime incidunt ut sequi.", + "rationale": "Dolor aut magni. Nobis dolor magnam. Non ea amet.", + "description": "Est vitae quia. Porro consequatur accusantium. Rerum odio saepe.", + "severity": "medium", + "precedence": 9163, "identifier": { - "href": "http://schneider.example/lavelle_rau", - "label": "Bergil" + "href": "http://okeefe-okon.example/rosendo.sawayn", + "label": "Rollo Boffin" }, "references": [ { - "href": "http://nader.example/chantelle", - "label": "Golasgil" + "href": "http://fay-steuber.test/madie", + "label": "Magor" }, { - "href": "http://leuschke-fadel.example/orval_heller", - "label": "Galadriel" + "href": "http://lehner.example/milford", + "label": "Heribald Bolger" }, { - "href": "http://jacobs.example/annett.kulas", - "label": "Enel" + "href": "http://lind-kassulke.test/ruthann", + "label": "Emeldir" }, { - "href": "http://spencer-rath.example/tessie_russel", - "label": "Indor" + "href": "http://conn.example/kandra_wyman", + "label": "Wilibald Bolger" }, { - "href": "http://harvey-haag.example/tabitha_smith", - "label": "Gálmód" + "href": "http://sporer.example/diane", + "label": "Caliondo" } ], "value_checks": null, @@ -3344,37 +3521,37 @@ "type": "rule" }, { - "id": "22e00062-8729-4aba-9313-22e05772e953", - "ref_id": "xccdf_org.ssgproject.content_rule_f99b334e1de330b6d98bb2c350fda246", - "title": "Sed velit sed nihil.", - "rationale": "Sed aut officia. Aut quidem at. Doloremque qui cumque.", - "description": "Consequuntur iusto vero. Labore laudantium amet. Labore commodi ullam.", - "severity": "low", - "precedence": 1444, + "id": "1102fe15-0356-44cb-a6bd-d1c97515d69f", + "ref_id": "xccdf_org.ssgproject.content_rule_71db41a04b115911f02fd5f8b66a294e", + "title": "Modi sit quam expedita.", + "rationale": "Sit impedit in. Eveniet placeat ab. Id fugit atque.", + "description": "Autem quia corrupti. Delectus beatae repellendus. Nobis sapiente vel.", + "severity": "medium", + "precedence": 4570, "identifier": { - "href": "http://becker.example/dudley", - "label": "Thorondor" + "href": "http://kovacek.test/carola", + "label": "Flambard Took" }, "references": [ { - "href": "http://rau.example/carylon", - "label": "Folca" + "href": "http://pfannerstill.example/stefanie.kilback", + "label": "Tar-Aldarion" }, { - "href": "http://kulas.test/wallace", - "label": "Legolas" + "href": "http://shanahan-graham.example/kimi", + "label": "Gilmith" }, { - "href": "http://beatty.example/loren.romaguera", - "label": "Herendil" + "href": "http://hoppe.test/lottie", + "label": "Imrazôr" }, { - "href": "http://dickinson.example/samella.herzog", - "label": "Theobald Bolger" + "href": "http://volkman.example/catarina", + "label": "Dáin" }, { - "href": "http://kub.test/maren_braun", - "label": "Thingol" + "href": "http://mayer-champlin.test/enoch", + "label": "Ori" } ], "value_checks": null, @@ -3382,37 +3559,37 @@ "type": "rule" }, { - "id": "3d51845a-0bbc-4860-a449-ec9b980b3e0b", - "ref_id": "xccdf_org.ssgproject.content_rule_160fb68df39a417db17222d7f7ca792d", - "title": "Fugiat sequi et sint.", - "rationale": "Occaecati eos commodi. Id dolores iste. Debitis nesciunt culpa.", - "description": "Nihil aut et. Cupiditate quia vel. Distinctio dolorum et.", - "severity": "medium", - "precedence": 5458, + "id": "345822b9-70af-4946-84f1-33daf722b067", + "ref_id": "xccdf_org.ssgproject.content_rule_e9eeb1790cb22197f759955e98711e00", + "title": "Tempore maiores blanditiis qui.", + "rationale": "Rem quos porro. Et a sint. Et nobis ducimus.", + "description": "Aliquam quidem porro. Nisi et ut. Nobis doloremque provident.", + "severity": "high", + "precedence": 3337, "identifier": { - "href": "http://abernathy.example/marica.medhurst", - "label": "Berilac Brandybuck" + "href": "http://murray.test/jamey", + "label": "Isilmë" }, "references": [ { - "href": "http://nienow-lubowitz.example/irving", - "label": "Tolman Gardner" + "href": "http://watsica.example/alejandro.bartoletti", + "label": "Pimpernel Took" }, { - "href": "http://hessel.example/garnet", - "label": "Théodred" + "href": "http://schoen.test/fredric_jacobs", + "label": "Goldberry" }, { - "href": "http://hartmann.example/ismael", + "href": "http://schiller.test/leandro", "label": "Golfimbul" }, { - "href": "http://jakubowski.test/jarod_kris", - "label": "Tar-Telperiën" + "href": "http://denesik.test/berniece", + "label": "Milo Burrows" }, { - "href": "http://effertz.example/denae", - "label": "Ponto Baggins" + "href": "http://keeling.example/claribel_daugherty", + "label": "Herefara" } ], "value_checks": null, @@ -3420,37 +3597,37 @@ "type": "rule" }, { - "id": "4011f289-fb42-4853-b70a-9a9d1f53d2be", - "ref_id": "xccdf_org.ssgproject.content_rule_85532707401cbbe6b926a0a3ef387854", - "title": "Mollitia molestias aspernatur quis.", - "rationale": "Doloremque possimus veritatis. Sit ipsam corporis. Id accusantium earum.", - "description": "Debitis fuga hic. Est modi quae. Est atque vel.", - "severity": "low", - "precedence": 9549, + "id": "378e2817-a791-4601-aaff-b106340e5672", + "ref_id": "xccdf_org.ssgproject.content_rule_40bb217569c913d249b6a07d2ba86e97", + "title": "Qui sed eveniet ut.", + "rationale": "Est voluptatem ratione. Autem error dolorem. Quibusdam voluptate vitae.", + "description": "Tempora numquam minus. Praesentium excepturi accusamus. Inventore quis omnis.", + "severity": "medium", + "precedence": 8826, "identifier": { - "href": "http://adams.test/kyle.hansen", - "label": "Déorwine" + "href": "http://christiansen.test/olga", + "label": "May Gamgee" }, "references": [ { - "href": "http://champlin.test/lorette_vandervort", - "label": "Galathil" + "href": "http://mann.test/cesar.ritchie", + "label": "Minohtar" }, { - "href": "http://metz.example/will_kuhlman", - "label": "Idis" + "href": "http://rowe.test/johnnie", + "label": "Herion" }, { - "href": "http://vandervort.example/elissa", - "label": "Nori" + "href": "http://rath.test/micheal.rice", + "label": "Herefara" }, { - "href": "http://hessel.example/son", - "label": "Brand" + "href": "http://wiegand.example/angelena", + "label": "Thorin" }, { - "href": "http://armstrong.test/noble", - "label": "Morwen Steelsheen" + "href": "http://kautzer.test/lenard", + "label": "Túrin" } ], "value_checks": null, @@ -3458,37 +3635,37 @@ "type": "rule" }, { - "id": "4699c913-51b4-4614-98c8-57b1c2b53e53", - "ref_id": "xccdf_org.ssgproject.content_rule_efa3744b7cdf48bfc8fa9ee3aa8b7cc9", - "title": "Ab iusto debitis voluptatum.", - "rationale": "Tempora enim minus. Natus est enim. Qui molestias est.", - "description": "Qui aut voluptatibus. Voluptates sed voluptatibus. Qui omnis impedit.", - "severity": "low", - "precedence": 8303, + "id": "5d5420c1-a6a0-4dc0-9901-01fff52959da", + "ref_id": "xccdf_org.ssgproject.content_rule_53b8f4fdf2de42152d6411200dda219f", + "title": "Ut nihil reprehenderit quia.", + "rationale": "Qui possimus voluptas. Cum ut accusamus. Ex sed quo.", + "description": "Pariatur in unde. Nam quisquam iste. Autem error incidunt.", + "severity": "medium", + "precedence": 7104, "identifier": { - "href": "http://schneider.example/arnulfo", - "label": "Brand" + "href": "http://mayer.test/miguel", + "label": "Tarciryan" }, "references": [ { - "href": "http://lynch-pfeffer.test/lyndon_lehner", - "label": "Forlong" + "href": "http://rolfson.example/naida", + "label": "Glóin" }, { - "href": "http://oberbrunner.example/lauralee_hilll", - "label": "Dáin" + "href": "http://muller.test/ned", + "label": "Boron" }, { - "href": "http://becker-muller.test/kizzie.von", - "label": "Tarciryan" + "href": "http://schamberger.example/hildegard.veum", + "label": "Halfred Gamgee" }, { - "href": "http://erdman.test/leatrice", - "label": "Elenwë" + "href": "http://anderson.test/peter_ward", + "label": "Irolas" }, { - "href": "http://sauer.test/lavern", - "label": "Old Noakes" + "href": "http://johnston.example/karen", + "label": "Belemir" } ], "value_checks": null, @@ -3496,37 +3673,37 @@ "type": "rule" }, { - "id": "555f16c9-8a63-4fce-820f-f11689b61966", - "ref_id": "xccdf_org.ssgproject.content_rule_653eec742effaa3ad7442e9936977d56", - "title": "Sed qui ipsa itaque.", - "rationale": "Dolore placeat qui. Dolorem esse quia. Veritatis ea esse.", - "description": "Rem provident aut. Et neque magni. Eius in consequatur.", - "severity": "low", - "precedence": 588, + "id": "659a6ac1-85e4-42c1-95d9-bc6ea2a6d4b7", + "ref_id": "xccdf_org.ssgproject.content_rule_94f0fd3bfd9f7f94a2bf0a722d6a0879", + "title": "Autem repudiandae autem velit.", + "rationale": "Cumque deleniti quod. Consectetur odit dolore. Ea occaecati quo.", + "description": "Corporis est eius. Illo aliquam et. Minima sed ut.", + "severity": "high", + "precedence": 8519, "identifier": { - "href": "http://kihn.example/emilio", - "label": "Avranc" + "href": "http://daniel.test/trey_collier", + "label": "Éothéod" }, "references": [ { - "href": "http://bergnaum.example/daron", - "label": "Angelica Baggins" + "href": "http://hamill.example/jacquline.cummings", + "label": "Flói" }, { - "href": "http://stroman.test/nakita", - "label": "Ar-Pharazôn" + "href": "http://conroy-morar.example/katelynn.fahey", + "label": "Ar-Adûnakhôr" }, { - "href": "http://ullrich.test/preston", - "label": "Lotho Sackville-Baggins" + "href": "http://keeling.test/yuette_kling", + "label": "Amrothos" }, { - "href": "http://abshire-west.example/larraine_hyatt", - "label": "Frumgar" + "href": "http://spencer-langosh.example/sergio", + "label": "Halbarad" }, { - "href": "http://wolff-tromp.test/claire", - "label": "Lindissë" + "href": "http://bogisich.test/lyndon.kreiger", + "label": "Galathil" } ], "value_checks": null, @@ -3534,37 +3711,37 @@ "type": "rule" }, { - "id": "669ef3ba-924c-44f4-a37f-17bc4e71e5fc", - "ref_id": "xccdf_org.ssgproject.content_rule_217dfcf8a98ac0ed98b1e1995a1afb46", - "title": "Culpa occaecati veniam sint.", - "rationale": "Ut ratione vero. Sed tempore beatae. Nihil sit aut.", - "description": "Corrupti veritatis est. Reprehenderit rerum quibusdam. Sit nobis necessitatibus.", - "severity": "low", - "precedence": 1687, + "id": "79a29cbf-a58d-4534-9f7e-fdaba110762a", + "ref_id": "xccdf_org.ssgproject.content_rule_ee32f5be93f2a75d3834455735518197", + "title": "Facere exercitationem iure non.", + "rationale": "Id modi aperiam. Debitis nihil natus. At omnis magnam.", + "description": "Accusantium voluptatem omnis. Fugit inventore corrupti. Non perspiciatis aut.", + "severity": "medium", + "precedence": 5661, "identifier": { - "href": "http://simonis.example/derick.schaefer", - "label": "Faramir Took" + "href": "http://funk.example/felton", + "label": "Wiseman Gamwich" }, "references": [ { - "href": "http://rolfson.test/claudio", - "label": "Faniel" + "href": "http://robel.example/roger", + "label": "Daddy Twofoot" }, { - "href": "http://witting.test/harold.fisher", - "label": "Aragorn" + "href": "http://waters.test/mauricio", + "label": "Primula Brandybuck" }, { - "href": "http://kshlerin.example/hilaria", - "label": "Wilcome" + "href": "http://wolff.example/edmundo", + "label": "Hilda Bracegirdle" }, { - "href": "http://batz.example/jaime", - "label": "Borlach" + "href": "http://barton-macgyver.test/jovita_turcotte", + "label": "Mirabella Took" }, { - "href": "http://klein.test/benedict_rosenbaum", - "label": "Erien" + "href": "http://anderson-nienow.example/sindy", + "label": "Togo Goodbody" } ], "value_checks": null, @@ -3572,37 +3749,37 @@ "type": "rule" }, { - "id": "6b371cdb-852e-4022-b9ca-8026dda9ac48", - "ref_id": "xccdf_org.ssgproject.content_rule_987a6fd0597b3716e9ce3286bb40e799", - "title": "Facere est aut et.", - "rationale": "Vero voluptate officia. Facilis autem possimus. Et aut autem.", - "description": "Dignissimos molestiae dolorum. Fuga est vel. Eos ex molestiae.", - "severity": "medium", - "precedence": 5894, + "id": "89c602ee-1ea5-4659-8bd9-ed4c4f2ff7a1", + "ref_id": "xccdf_org.ssgproject.content_rule_925fcfc2f795146200000dfd87623ede", + "title": "Sit quia vel quod.", + "rationale": "Laborum delectus eum. Vitae in rerum. Non blanditiis sint.", + "description": "Eaque sit distinctio. Id quisquam nisi. Quibusdam quisquam qui.", + "severity": "low", + "precedence": 6562, "identifier": { - "href": "http://stokes.test/britany", - "label": "Tar-Minastir" + "href": "http://wiegand.test/newton_kessler", + "label": "Nienor" }, "references": [ { - "href": "http://daugherty.test/essie_mante", - "label": "Fimbrethil" + "href": "http://kiehn.example/mike", + "label": "Fredegar Bolger" }, { - "href": "http://feest.test/louise", - "label": "Grimbeorn" + "href": "http://jast-kuhic.example/ilona", + "label": "Sagroth" }, { - "href": "http://west.test/reyna_raynor", - "label": "Ferumbras Took" + "href": "http://gulgowski.test/candie", + "label": "Kíli" }, { - "href": "http://davis.test/kirstie.hahn", - "label": "Radbug" + "href": "http://spencer.test/danille_spinka", + "label": "Herefara" }, { - "href": "http://kunde.test/stephnie", - "label": "Shagram" + "href": "http://hayes-white.test/hugh", + "label": "Finarfin" } ], "value_checks": null, @@ -3610,37 +3787,37 @@ "type": "rule" }, { - "id": "6c46bc6b-92c6-4833-9b26-c5d5d5bcb38c", - "ref_id": "xccdf_org.ssgproject.content_rule_a93af4aa22a13bfab51512f7d55ad7cc", - "title": "Veniam deleniti eveniet voluptatem.", - "rationale": "Culpa nulla cumque. Sit eveniet quo. Provident sequi earum.", - "description": "Id atque iusto. In in inventore. Eius et omnis.", - "severity": "high", - "precedence": 4155, + "id": "8d9ba8ce-7269-4aa9-8928-363cfeb413af", + "ref_id": "xccdf_org.ssgproject.content_rule_888165a259238aae4d60e0aa38773b5a", + "title": "Commodi ea et eveniet.", + "rationale": "Adipisci et qui. Ut non quisquam. Adipisci nobis vel.", + "description": "Aut quos ratione. Nihil enim et. Labore neque voluptatem.", + "severity": "low", + "precedence": 2328, "identifier": { - "href": "http://heaney.test/sid_langworth", - "label": "Sigismond Took" + "href": "http://towne.example/amal.kuhn", + "label": "Glóin" }, "references": [ { - "href": "http://schaefer.test/sharilyn", - "label": "Folco Burrowes" + "href": "http://green-batz.test/ahmed_schultz", + "label": "Fëanor" }, { - "href": "http://runolfsdottir.example/solomon", - "label": "Adamanta Chubb" + "href": "http://goldner.test/viva_larson", + "label": "Girion" }, { - "href": "http://mcdermott.test/jonathan.kreiger", - "label": "Hallatan" + "href": "http://christiansen.test/ressie", + "label": "Halfred Gamgee" }, { - "href": "http://gulgowski.example/bryant", - "label": "Orontor" + "href": "http://littel.example/noelle", + "label": "Bofur" }, { - "href": "http://leffler.example/leandra_schamberger", - "label": "Hirwen" + "href": "http://ankunding-labadie.test/adella", + "label": "Araglas" } ], "value_checks": null, @@ -3654,9 +3831,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/da4b8f55-3e17-4e1a-8036-bb60aa1a81c5/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/da4b8f55-3e17-4e1a-8036-bb60aa1a81c5/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/da4b8f55-3e17-4e1a-8036-bb60aa1a81c5/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/a9b18772-0480-427e-aeaf-ff77a418b8df/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/a9b18772-0480-427e-aeaf-ff77a418b8df/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/a9b18772-0480-427e-aeaf-ff77a418b8df/rules?limit=10&offset=10" } }, "summary": "", @@ -3666,37 +3843,37 @@ "value": { "data": [ { - "id": "54254cfe-26b7-4392-8988-8a57540b4479", - "ref_id": "xccdf_org.ssgproject.content_rule_9347ec7c124c7f58f6505870b5323b4d", - "title": "Quis rerum temporibus ea.", - "rationale": "Qui ipsam odio. Molestiae iusto asperiores. Voluptas temporibus nostrum.", - "description": "Rerum optio voluptatem. Laborum dolor aut. Odit magni voluptatibus.", + "id": "c4f62513-5c21-402d-8618-24b16435542e", + "ref_id": "xccdf_org.ssgproject.content_rule_ccfbda02dc14852ea99d40cb93a0c46d", + "title": "Totam officia sint nam.", + "rationale": "Reprehenderit error quia. Minima non ut. Nobis quae accusamus.", + "description": "Debitis vitae facilis. Voluptate incidunt quod. Eos est deleniti.", "severity": "medium", - "precedence": 834, + "precedence": 1560, "identifier": { - "href": "http://champlin.test/myong", - "label": "Lobelia Sackville-Baggins" + "href": "http://olson.example/isidro.hackett", + "label": "Marmadas Brandybuck" }, "references": [ { - "href": "http://jacobs.test/josh.lueilwitz", - "label": "Fundin" + "href": "http://rath.example/miguel", + "label": "Brand" }, { - "href": "http://kulas.test/pura", - "label": "Skinbark" + "href": "http://heller.test/zackary.cummings", + "label": "Lindórië" }, { - "href": "http://jenkins.test/krystina", - "label": "Bombur" + "href": "http://kirlin-little.test/agueda", + "label": "Fíriel Fairbairn" }, { - "href": "http://romaguera-gerhold.test/antone", - "label": "Grimbold" + "href": "http://lindgren-wiza.test/janice", + "label": "Ciryandil" }, { - "href": "http://schumm.test/isa_kessler", - "label": "Aldamir" + "href": "http://little-dickinson.example/harlan.cole", + "label": "Handir" } ], "value_checks": null, @@ -3704,37 +3881,37 @@ "type": "rule" }, { - "id": "68ba00dc-599d-4967-8ee2-24c1f3ad2eb2", - "ref_id": "xccdf_org.ssgproject.content_rule_8312b6927302246a379d0b36a3c43392", - "title": "Perspiciatis qui eaque aut.", - "rationale": "Eligendi a dolorum. Laudantium perferendis laborum. Sit est alias.", - "description": "Aliquid cumque tenetur. Excepturi est eos. Aut minima molestiae.", - "severity": "high", - "precedence": 1406, + "id": "043c572e-04b4-4df2-9818-a793abdb71b4", + "ref_id": "xccdf_org.ssgproject.content_rule_90b1c9063cf6c491929d88666c3122fa", + "title": "Ducimus et a excepturi.", + "rationale": "Tenetur explicabo cum. Hic ipsam provident. Quos consequatur nulla.", + "description": "Minima quis impedit. Et ipsa placeat. Voluptatibus ullam voluptatem.", + "severity": "medium", + "precedence": 2410, "identifier": { - "href": "http://adams.example/ivan.sauer", - "label": "Hunleth" + "href": "http://oberbrunner-hickle.example/ollie", + "label": "Ungoliant" }, "references": [ { - "href": "http://funk.test/larisa_hauck", - "label": "Aghan" + "href": "http://harvey-towne.example/chang", + "label": "Madril" }, { - "href": "http://hartmann.test/janessa.schoen", - "label": "Nurwë" + "href": "http://oconner.example/len", + "label": "Mahtan" }, { - "href": "http://champlin.example/jared", - "label": "Gundahar Bolger" + "href": "http://pfannerstill.test/jamison_bernhard", + "label": "Théodred" }, { - "href": "http://bosco-predovic.example/elwood_raynor", - "label": "Lavender Grubb" + "href": "http://ruecker-herzog.test/ramon.schuster", + "label": "Lóni" }, { - "href": "http://upton.test/saul", - "label": "Pervinca Took" + "href": "http://bins.example/idell", + "label": "Tar-Ancalimon" } ], "value_checks": null, @@ -3742,37 +3919,37 @@ "type": "rule" }, { - "id": "9f755cbc-de58-4262-bc31-9276bb60db44", - "ref_id": "xccdf_org.ssgproject.content_rule_c4980d641e00ac1b6ed12916e218c23b", - "title": "Odit quia quaerat assumenda.", - "rationale": "Consectetur animi labore. Qui assumenda enim. Unde atque iste.", - "description": "Natus suscipit voluptates. Fuga ipsam eum. Ab totam inventore.", - "severity": "low", - "precedence": 1443, + "id": "59e282d7-70a5-40fb-ba4e-7f49a64e1df2", + "ref_id": "xccdf_org.ssgproject.content_rule_f943798292cc90fd6952634b31222c04", + "title": "Rerum nihil ut dolores.", + "rationale": "Velit perspiciatis inventore. Assumenda molestiae excepturi. Deleniti tempora sint.", + "description": "Consectetur officiis sit. Suscipit sed officiis. Quia corrupti voluptas.", + "severity": "high", + "precedence": 2955, "identifier": { - "href": "http://muller.example/yee_moen", - "label": "Fastred" + "href": "http://konopelski-mcglynn.example/nakesha_schultz", + "label": "Orgulas Brandybuck" }, "references": [ { - "href": "http://murphy.example/erna.anderson", - "label": "Tar-Súrion" + "href": "http://frami-toy.test/maximo_monahan", + "label": "Belen" }, { - "href": "http://jacobi.example/jannie", - "label": "Quennar" + "href": "http://smitham.test/shelton_connelly", + "label": "Aldamir" }, { - "href": "http://will-rau.example/theressa.kovacek", - "label": "Huor" + "href": "http://schultz-johns.test/emory.boehm", + "label": "Marigold Gamgee" }, { - "href": "http://strosin-kunze.test/cheree", - "label": "Meneldil" + "href": "http://lueilwitz.example/keren", + "label": "Belegor" }, { - "href": "http://muller-wyman.example/clair", - "label": "Borlach" + "href": "http://schuppe-schumm.test/rosetta", + "label": "Faramir" } ], "value_checks": null, @@ -3780,37 +3957,37 @@ "type": "rule" }, { - "id": "fcc8f98e-5328-42ee-a0d1-1f33829f170c", - "ref_id": "xccdf_org.ssgproject.content_rule_df69877524fdaedf717dafc7d394b081", - "title": "Earum sequi quod consectetur.", - "rationale": "Non repellat voluptas. Sit quia dolore. Ipsam et rerum.", - "description": "Nihil sint deleniti. Cumque et aperiam. Rem qui dolores.", - "severity": "medium", - "precedence": 1588, + "id": "e380946d-f27a-49be-a236-4d3ba4fec4d6", + "ref_id": "xccdf_org.ssgproject.content_rule_cc6b1229e8c724a7a3c0502dbbc2f529", + "title": "Dolores suscipit molestias repudiandae.", + "rationale": "Et deserunt nam. Ut cumque consequatur. Dolorem velit mollitia.", + "description": "Porro omnis tempora. Explicabo dolores sit. Aspernatur distinctio velit.", + "severity": "low", + "precedence": 4797, "identifier": { - "href": "http://skiles.test/leota.hayes", - "label": "Almáriel" + "href": "http://grant.example/brittany", + "label": "Ban" }, "references": [ { - "href": "http://russel.example/buford_auer", - "label": "Ar-Adûnakhôr" + "href": "http://will.example/latasha.smitham", + "label": "Barach" }, { - "href": "http://leannon.example/ahmad_grady", - "label": "Berúthiel" + "href": "http://kreiger.example/lecia", + "label": "Gundahad Bolger" }, { - "href": "http://adams-skiles.test/hans", - "label": "Telchar" + "href": "http://miller.test/barton", + "label": "Aranarth" }, { - "href": "http://steuber.example/rosie.connelly", - "label": "Frodo Gardner" + "href": "http://gottlieb-feil.example/roy", + "label": "Denethor" }, { - "href": "http://hilll.test/thresa_weimann", - "label": "Iago Grubb" + "href": "http://douglas.example/rodger", + "label": "Cemendur" } ], "value_checks": null, @@ -3818,37 +3995,37 @@ "type": "rule" }, { - "id": "0ae00ba4-ec35-4daf-aa37-ef20bdc6727a", - "ref_id": "xccdf_org.ssgproject.content_rule_86b1c10ded6da336ebd93badd5f29dcf", - "title": "Vel nesciunt velit eum.", - "rationale": "Sequi cum et. Aliquid voluptatum illum. Quia eum odit.", - "description": "Omnis repudiandae natus. Ipsum repellendus et. Aut assumenda dolor.", + "id": "b3b7852b-912c-4d39-9713-6412cc6b3636", + "ref_id": "xccdf_org.ssgproject.content_rule_f511f833b9b0cfda547cd34a24fe88ac", + "title": "Omnis et voluptates natus.", + "rationale": "Quia dolores sint. Possimus quis voluptatibus. Distinctio quis laudantium.", + "description": "Voluptates laudantium sed. Eum deserunt ex. Repellendus aut sit.", "severity": "high", - "precedence": 1634, + "precedence": 4802, "identifier": { - "href": "http://nienow.test/alease.sipes", - "label": "Smaug" + "href": "http://bruen-auer.example/monty", + "label": "Ar-Pharazôn" }, "references": [ { - "href": "http://beatty.test/alva", - "label": "Grim" + "href": "http://mante.example/stephanie.ziemann", + "label": "Ulfast" }, { - "href": "http://turner.example/teddy", - "label": "Tanta Hornblower" + "href": "http://schuppe.test/arnulfo.walker", + "label": "Ulfast" }, { - "href": "http://bednar-emmerich.example/rey_schmeler", - "label": "Horn" + "href": "http://goodwin.test/shizuko.hyatt", + "label": "Otho Sackville-Baggins" }, { - "href": "http://schroeder-kreiger.test/orlando.gulgowski", - "label": "Berilac Brandybuck" + "href": "http://stroman.example/cameron.leuschke", + "label": "Óin" }, { - "href": "http://hahn.example/tyler", - "label": "Gram" + "href": "http://price-zboncak.test/ardella", + "label": "Huan" } ], "value_checks": null, @@ -3856,37 +4033,37 @@ "type": "rule" }, { - "id": "c9dbe3ef-576d-406e-91a6-c4d3e3919a1b", - "ref_id": "xccdf_org.ssgproject.content_rule_31c0425db61d0daba36c60017ec1a0d4", - "title": "Quis incidunt sapiente commodi.", - "rationale": "Vitae natus quaerat. Culpa corporis laborum. Voluptatem dolor rerum.", - "description": "Voluptatem consequatur voluptatum. Inventore tenetur ut. Rerum autem labore.", + "id": "e4b2e278-c0b5-4252-9415-4cf7490bcaff", + "ref_id": "xccdf_org.ssgproject.content_rule_fc93b76e86d1e21ba6f344144387a7e8", + "title": "Voluptatum veniam tempora qui.", + "rationale": "Consequatur reprehenderit sint. Animi sunt molestiae. Et sunt quia.", + "description": "Fuga quas sunt. Reprehenderit ipsa exercitationem. Sequi impedit ea.", "severity": "low", - "precedence": 2182, + "precedence": 4883, "identifier": { - "href": "http://kassulke.test/giuseppe_konopelski", - "label": "Odovacar Bolger" + "href": "http://leannon.test/ruben_lehner", + "label": "Adam Hornblower" }, "references": [ { - "href": "http://rippin-ryan.example/chung.carroll", - "label": "Estella Bolger" + "href": "http://klocko.example/clelia", + "label": "Calimehtar" }, { - "href": "http://ward.example/sandy_macejkovic", - "label": "Gundahar Bolger" + "href": "http://ruecker-damore.example/penney_rice", + "label": "Herendil" }, { - "href": "http://kautzer.test/bao_king", - "label": "Derufin" + "href": "http://johnston.test/saul_rohan", + "label": "Saruman" }, { - "href": "http://reichel.example/eddie", - "label": "Thráin" + "href": "http://franecki.example/wilfred_quigley", + "label": "Arciryas" }, { - "href": "http://daugherty-rogahn.test/zenobia_glover", - "label": "Tom Pickthorn" + "href": "http://gutkowski-von.example/elvis_lemke", + "label": "Olo Proudfoot" } ], "value_checks": null, @@ -3894,37 +4071,37 @@ "type": "rule" }, { - "id": "4362d876-7a26-4c92-986e-74a4d2742953", - "ref_id": "xccdf_org.ssgproject.content_rule_ecefbfcd8e5aa71989feb918ee771965", - "title": "Reiciendis nostrum recusandae eveniet.", - "rationale": "Odio quae aliquid. Rerum culpa sunt. Quis adipisci assumenda.", - "description": "Veniam repellat laborum. Sit minima est. Blanditiis id sit.", + "id": "6ed5ff9c-00cd-412d-bbe9-1377e031fb23", + "ref_id": "xccdf_org.ssgproject.content_rule_91ce4809215b3718b5dbfff6a43fb37a", + "title": "At commodi qui laudantium.", + "rationale": "Atque recusandae aut. Nesciunt voluptatem deleniti. Quas voluptatem porro.", + "description": "Itaque et facere. Molestiae consequatur rerum. Ex dolore cum.", "severity": "medium", - "precedence": 2232, + "precedence": 5218, "identifier": { - "href": "http://crooks-rodriguez.test/sandy", - "label": "Angbor" + "href": "http://schmitt-huels.example/herma", + "label": "Galador" }, "references": [ { - "href": "http://wehner.test/jerrell", - "label": "Îbal" + "href": "http://welch.test/ilene", + "label": "Vinitharya" }, { - "href": "http://murphy-aufderhar.test/quintin", - "label": "Dior" + "href": "http://gorczany.test/karlene_collins", + "label": "Sador" }, { - "href": "http://kshlerin.example/julee_larkin", - "label": "Gimilkhâd" + "href": "http://ryan-crist.test/nickolas", + "label": "Meriadoc Brandybuck" }, { - "href": "http://waelchi-kris.test/buster_little", - "label": "Daisy Gamgee" + "href": "http://mitchell-welch.example/lynelle_west", + "label": "Mimosa Bunce" }, { - "href": "http://roberts.test/herschel.howe", - "label": "Adaldrida Bolger" + "href": "http://mueller.example/jessica", + "label": "Radhruin" } ], "value_checks": null, @@ -3932,37 +4109,37 @@ "type": "rule" }, { - "id": "b2f014e0-c133-44d7-b8e2-fc85d00f367a", - "ref_id": "xccdf_org.ssgproject.content_rule_ecc16ef8a92b6e50c432f66a88c135c0", - "title": "Accusamus magnam quam amet.", - "rationale": "Incidunt laboriosam eveniet. Aut blanditiis enim. Occaecati culpa veritatis.", - "description": "Aut nisi laudantium. Quo laborum occaecati. Minima ex rerum.", + "id": "ed674ff6-f3e2-4ef1-8f8a-9c10c55d9a82", + "ref_id": "xccdf_org.ssgproject.content_rule_9416c4ada37b4d14e857a6fe039e7637", + "title": "Dignissimos tempore nihil est.", + "rationale": "Necessitatibus et consequatur. Error nobis voluptatem. Quas sed quia.", + "description": "Vitae non nemo. Minus consectetur repudiandae. Minima commodi sapiente.", "severity": "medium", - "precedence": 2489, + "precedence": 5260, "identifier": { - "href": "http://mueller-bernier.example/everette.gusikowski", - "label": "Ufthak" + "href": "http://ernser.test/charmaine", + "label": "Jago Boffin" }, "references": [ { - "href": "http://blanda.example/keira", - "label": "Flambard Took" + "href": "http://wehner-ullrich.test/ralph", + "label": "Fréaláf" }, { - "href": "http://jacobs.example/cole", - "label": "Nár" + "href": "http://koepp.test/aleen_mosciski", + "label": "Fëanor" }, { - "href": "http://lindgren.test/mariette_gislason", - "label": "Brand" + "href": "http://rosenbaum-schmeler.test/tomika", + "label": "Amrothos" }, { - "href": "http://jast-bergnaum.example/naida_kirlin", - "label": "Amrod" + "href": "http://yost.test/belia_wisozk", + "label": "Marroc Brandybuck" }, { - "href": "http://robel.test/gonzalo", - "label": "Cotman" + "href": "http://heller.test/janyce", + "label": "Farmer Maggot" } ], "value_checks": null, @@ -3970,37 +4147,37 @@ "type": "rule" }, { - "id": "17057f18-6fff-4f14-8024-d9046687331b", - "ref_id": "xccdf_org.ssgproject.content_rule_6fb9b070d336306ce776cd39cece42f9", - "title": "Quia tempora quos magnam.", - "rationale": "Impedit sint voluptas. Sed illum recusandae. Consequatur recusandae incidunt.", - "description": "Corporis ut consequatur. Quidem et deleniti. Qui magnam animi.", - "severity": "low", - "precedence": 2644, + "id": "f1fb005b-2114-40e8-bb35-3cc397b2d270", + "ref_id": "xccdf_org.ssgproject.content_rule_c92d2d81ddcbb3fab04eff0734fb1d73", + "title": "Fugit repellat illo aperiam.", + "rationale": "Corrupti adipisci deserunt. Labore dolores et. Necessitatibus iste placeat.", + "description": "Dolor eos nihil. Est voluptatibus error. Repellendus modi laboriosam.", + "severity": "high", + "precedence": 5488, "identifier": { - "href": "http://emmerich-hilll.example/errol.ernser", - "label": "Melian" + "href": "http://grimes.test/zaida_wuckert", + "label": "Írimon" }, "references": [ { - "href": "http://keebler.example/shanice", - "label": "Wilibald Bolger" + "href": "http://reilly.test/sunday_ruecker", + "label": "Dori" }, { - "href": "http://gleichner.test/melodee.johns", - "label": "Mirabella Took" + "href": "http://wisoky-friesen.example/yan_hudson", + "label": "Tarcil" }, { - "href": "http://schumm-yundt.example/rickie.ohara", - "label": "Mosco Burrows" + "href": "http://rowe.test/aaron", + "label": "Saelon" }, { - "href": "http://heathcote.example/reginald_schowalter", - "label": "Findegil" + "href": "http://jones-schuppe.example/marion", + "label": "Fíriel Fairbairn" }, { - "href": "http://gleichner.example/corrine", - "label": "Valandil" + "href": "http://tillman-ferry.test/herbert", + "label": "Tar-Palantir" } ], "value_checks": null, @@ -4008,37 +4185,37 @@ "type": "rule" }, { - "id": "c7a2524e-2479-462b-8bc6-9c46d1dd0541", - "ref_id": "xccdf_org.ssgproject.content_rule_2347f6e97cf256e43642fb70b11bdb37", - "title": "Illum sint porro amet.", - "rationale": "Maiores quibusdam sunt. Eos tempora est. Quasi minus ratione.", - "description": "Quia cum et. Sapiente est qui. Tempora quo laboriosam.", - "severity": "high", - "precedence": 3020, + "id": "470442fa-4839-4e6f-b1b2-019de347912d", + "ref_id": "xccdf_org.ssgproject.content_rule_0293e2f611d92f97af7b8de5fc681321", + "title": "Nulla est atque voluptatem.", + "rationale": "Suscipit qui dolorem. Tempore cum accusamus. Dolorem porro et.", + "description": "Itaque quidem quod. Sit tempore optio. Facilis dolores fugit.", + "severity": "low", + "precedence": 6015, "identifier": { - "href": "http://turcotte.example/sondra", - "label": "Ardamir" + "href": "http://weimann.example/jacquelynn", + "label": "Dáin Ironfoot" }, "references": [ { - "href": "http://olson-blick.example/humberto_collier", - "label": "Pott the Mayor" + "href": "http://schaefer.example/soledad", + "label": "Calimmacil" }, { - "href": "http://west-hintz.example/augustine", - "label": "Forweg" + "href": "http://dach.test/isreal.schmitt", + "label": "Inziladûn" }, { - "href": "http://reynolds.example/edmund_koss", - "label": "Lily Baggins" + "href": "http://luettgen-robel.example/enola.herman", + "label": "Nár" }, { - "href": "http://nicolas-abbott.test/horace", - "label": "Khamûl" + "href": "http://barrows.example/emmitt_hammes", + "label": "Belecthor" }, { - "href": "http://stark-roob.test/eduardo", - "label": "Marroc Brandybuck" + "href": "http://greenfelder.test/jimmie", + "label": "Fingolfin" } ], "value_checks": null, @@ -4053,9 +4230,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/eb4bae74-fc51-4bfe-940a-6fd774fc151f/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/eb4bae74-fc51-4bfe-940a-6fd774fc151f/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/eb4bae74-fc51-4bfe-940a-6fd774fc151f/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/358d8699-c6d3-4f1c-af06-33fbf0b6a287/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/358d8699-c6d3-4f1c-af06-33fbf0b6a287/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/358d8699-c6d3-4f1c-af06-33fbf0b6a287/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -4163,37 +4340,37 @@ "Returns a Rule": { "value": { "data": { - "id": "7605d422-df41-4b0d-86da-54ae54c3ae77", - "ref_id": "xccdf_org.ssgproject.content_rule_877875a35647ac361628f230d60f2e13", - "title": "Corrupti modi qui blanditiis.", - "rationale": "Quidem temporibus reprehenderit. Sed repudiandae occaecati. Perferendis magnam doloribus.", - "description": "Quas sint aliquam. Quis quae tempore. Beatae tempore cumque.", + "id": "658fa1f7-ee5e-4d13-9793-42e47412df0c", + "ref_id": "xccdf_org.ssgproject.content_rule_b9dfec271ffe6efb39ceef38146146af", + "title": "Facere molestiae consequatur laboriosam.", + "rationale": "Qui aliquam tenetur. Eos consectetur nostrum. Quia et et.", + "description": "Fugiat voluptatem soluta. Fugiat eius dolor. Voluptatem nemo praesentium.", "severity": "medium", - "precedence": 4938, + "precedence": 604, "identifier": { - "href": "http://weissnat.example/elli", - "label": "Frodo Baggins" + "href": "http://veum.example/sherlene", + "label": "Morwen" }, "references": [ { - "href": "http://ohara.test/ezra", - "label": "Dís" + "href": "http://rogahn.test/laurice.senger", + "label": "Tar-Aldarion" }, { - "href": "http://nikolaus.example/jeanie", - "label": "Bór" + "href": "http://boyle-miller.test/dionne", + "label": "Tanta Hornblower" }, { - "href": "http://morar-stiedemann.test/yong.reynolds", - "label": "Fastolph Bolger" + "href": "http://walker.example/valentin", + "label": "Rosamunda Took" }, { - "href": "http://goldner.test/eloisa", - "label": "Arwen" + "href": "http://mclaughlin-considine.example/leandro", + "label": "Elmar" }, { - "href": "http://treutel.example/herman.kshlerin", - "label": "Ioreth" + "href": "http://schulist.test/lacresha", + "label": "Elfwine" } ], "value_checks": null, @@ -4229,7 +4406,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 2f35f64d-4d93-42d6-ba32-17083ddf2aca" + "V2::Rule not found with ID cec1c384-1061-4db3-862f-a1185b0cbc22" ] }, "summary": "", @@ -4355,37 +4532,37 @@ "value": { "data": [ { - "id": "069b0c51-73af-41a9-ab0d-3d9d0f75b5c6", - "ref_id": "xccdf_org.ssgproject.content_rule_42fd08065ef2930e71bdecf94d0a2e7e", - "title": "Voluptas magnam et nesciunt.", - "rationale": "Nostrum voluptatem sequi. Enim nihil id. Et error in.", - "description": "Ut reiciendis culpa. Et qui ut. Amet sed ducimus.", - "severity": "high", - "precedence": 7979, + "id": "21d3dd9b-8258-42b7-8251-84b7be72c909", + "ref_id": "xccdf_org.ssgproject.content_rule_dcbca4f9fa9587351ec0b273cdc55a17", + "title": "Itaque cumque rerum consequatur.", + "rationale": "Recusandae perferendis perspiciatis. Laborum dicta sint. Nisi perspiciatis tenetur.", + "description": "Autem aspernatur omnis. Omnis eos soluta. Numquam quis debitis.", + "severity": "medium", + "precedence": 4037, "identifier": { - "href": "http://cummerata.example/johnetta", - "label": "Tar-Ancalimë" + "href": "http://bailey.example/tomas", + "label": "Faramir Took" }, "references": [ { - "href": "http://langosh.example/esteban", - "label": "Lindórië" + "href": "http://christiansen-halvorson.test/derek", + "label": "Hallas" }, { - "href": "http://erdman.example/max", - "label": "Tom Pickthorn" + "href": "http://klein.example/angelo_cruickshank", + "label": "Imin" }, { - "href": "http://hills.test/terrilyn_mitchell", - "label": "Madoc Brandybuck" + "href": "http://hamill.example/jewel.schroeder", + "label": "Lorgan" }, { - "href": "http://rempel.test/boris", - "label": "Watcher in the Water" + "href": "http://hills.example/shavonda", + "label": "Faramir Took" }, { - "href": "http://turner.example/sophie.keeling", - "label": "Ruby Gardner" + "href": "http://champlin-blick.example/michael_lesch", + "label": "Buldar" } ], "value_checks": null, @@ -4394,37 +4571,37 @@ "remediation_issue_id": null }, { - "id": "0a36ba4b-b8d6-42c2-8b1f-6677cdb42562", - "ref_id": "xccdf_org.ssgproject.content_rule_ccfa6f09f55d40806939a95cbb42a32f", - "title": "Quae ratione omnis aut.", - "rationale": "Aut unde a. Vitae debitis repellat. Explicabo tenetur temporibus.", - "description": "Qui repellendus ab. Sed necessitatibus aut. Corporis quis facere.", - "severity": "medium", - "precedence": 8576, + "id": "226b8ead-0d3d-4a3a-989b-46d789b84f19", + "ref_id": "xccdf_org.ssgproject.content_rule_fcd2ea69d70286b2695bbc2113668ef2", + "title": "Velit vel est numquam.", + "rationale": "Et expedita debitis. Cum aliquid et. Est qui voluptates.", + "description": "Eveniet reprehenderit temporibus. Fugit aliquam est. Vel aperiam vero.", + "severity": "low", + "precedence": 3290, "identifier": { - "href": "http://schuster-feil.test/tanna", - "label": "Theobald Bolger" + "href": "http://wilkinson.test/jolanda.yundt", + "label": "Haleth" }, "references": [ { - "href": "http://ward.example/sam_auer", - "label": "Mithrellas" + "href": "http://schmitt.test/heather_rosenbaum", + "label": "Theobald Bolger" }, { - "href": "http://wisozk.test/lisette", - "label": "Borlad" + "href": "http://monahan.test/monet.sipes", + "label": "Lindórië" }, { - "href": "http://hahn.example/thelma_pfannerstill", - "label": "Tarcil" + "href": "http://schmitt-gulgowski.test/grady", + "label": "William" }, { - "href": "http://sporer-cronin.test/leah", - "label": "Vardamir" + "href": "http://olson-lockman.example/magdalen", + "label": "Great Eagle" }, { - "href": "http://fay.test/maryjane", - "label": "Borlad" + "href": "http://toy.test/alfredia", + "label": "Lindórië" } ], "value_checks": null, @@ -4433,37 +4610,37 @@ "remediation_issue_id": null }, { - "id": "0a4ae965-1876-45e4-9155-f21612d6eebe", - "ref_id": "xccdf_org.ssgproject.content_rule_65b2020ec9d610acd4ec2434a82f4e11", - "title": "Qui quos beatae molestiae.", - "rationale": "Ut sed et. Facilis consequatur suscipit. Tenetur a repellat.", - "description": "Corporis quod qui. Accusamus aut consequatur. Porro ratione aspernatur.", - "severity": "high", - "precedence": 1815, + "id": "2c9da249-d39f-4d00-8b89-3690f9e14daa", + "ref_id": "xccdf_org.ssgproject.content_rule_d6fd3cb7e901b0e4289b44d8b8d5353b", + "title": "Quos distinctio sit iste.", + "rationale": "Expedita nesciunt corrupti. Sed nihil quibusdam. Et maiores recusandae.", + "description": "Vel labore ut. Sed omnis aliquid. Omnis aut ut.", + "severity": "low", + "precedence": 4136, "identifier": { - "href": "http://bernhard-conn.example/bertram.bailey", - "label": "Éomer" + "href": "http://swift.test/jonell", + "label": "Brand" }, "references": [ { - "href": "http://gorczany.example/dreama", - "label": "Ted Sandyman" + "href": "http://mcclure.test/cesar", + "label": "Annael" }, { - "href": "http://tillman.example/mervin_jerde", - "label": "Berelach" + "href": "http://braun.test/kellee_mcglynn", + "label": "Boar of Everholt" }, { - "href": "http://reilly.test/neil", - "label": "Nellas" + "href": "http://kuhlman-schinner.test/elden_bechtelar", + "label": "Malach" }, { - "href": "http://strosin.test/debra_buckridge", - "label": "Dodinas Brandybuck" + "href": "http://sawayn-hartmann.test/breanna.damore", + "label": "Borlas" }, { - "href": "http://harvey.test/edison_conroy", - "label": "Golfimbul" + "href": "http://denesik.test/raylene", + "label": "Glaurung" } ], "value_checks": null, @@ -4472,37 +4649,37 @@ "remediation_issue_id": null }, { - "id": "1317e9c7-d57d-4b28-bf6a-cd380547343e", - "ref_id": "xccdf_org.ssgproject.content_rule_ae40dab74ddf9fd66fb6483545da20c7", - "title": "Facere illum sunt corrupti.", - "rationale": "Sit ex aut. Ad temporibus quis. Aut nam facere.", - "description": "Eum enim enim. Possimus nulla quia. Voluptatem alias quod.", - "severity": "medium", - "precedence": 8340, + "id": "36484064-eb37-44a6-be74-465efbf9e570", + "ref_id": "xccdf_org.ssgproject.content_rule_2578e8feb76aad54f58721eada7b4b4c", + "title": "Fuga a est impedit.", + "rationale": "Perferendis est quibusdam. Quia aut quasi. Consectetur officiis perferendis.", + "description": "Ratione voluptates voluptas. Quia cum consectetur. Praesentium quis aliquid.", + "severity": "high", + "precedence": 9283, "identifier": { - "href": "http://gottlieb.example/babette", - "label": "Tarcil" + "href": "http://kuphal.test/kiyoko", + "label": "Orgulas Brandybuck" }, "references": [ { - "href": "http://wolff-gutmann.example/richard", - "label": "Anborn" + "href": "http://brakus-kutch.example/nelson_murphy", + "label": "Bucca of the Marish" }, { - "href": "http://zboncak.example/alberto", - "label": "Hugo Boffin" + "href": "http://hermiston.test/julene.satterfield", + "label": "Léod" }, { - "href": "http://kirlin.example/cameron", - "label": "Anardil" + "href": "http://collier-kihn.test/agripina", + "label": "Aravir" }, { - "href": "http://cassin.example/jesusita.ledner", - "label": "Gundolpho Bolger" + "href": "http://hayes.example/nelson", + "label": "Angbor" }, { - "href": "http://cole.test/kirby", - "label": "Marcho" + "href": "http://price.example/danial", + "label": "Meneldor" } ], "value_checks": null, @@ -4511,37 +4688,37 @@ "remediation_issue_id": null }, { - "id": "26cd5648-fb7e-4262-bddd-44506e868cb3", - "ref_id": "xccdf_org.ssgproject.content_rule_34e4531c9233f57ce0125ddac5bf47d1", - "title": "Eos ut vel vel.", - "rationale": "Ut ea illo. Est reprehenderit adipisci. Reprehenderit beatae est.", - "description": "Ex porro aperiam. Enim ut perferendis. Dolore enim illum.", + "id": "5f1644cc-518f-4f2a-bcf1-a82039ec497e", + "ref_id": "xccdf_org.ssgproject.content_rule_a6b479f73930aede4ca07c1a7a29a3a7", + "title": "Qui quibusdam est veritatis.", + "rationale": "Aut adipisci qui. Ea velit ut. Maxime et est.", + "description": "Rerum corrupti soluta. Qui iure eaque. Laborum tempora cumque.", "severity": "medium", - "precedence": 980, + "precedence": 5280, "identifier": { - "href": "http://crist.test/isaias", - "label": "Lenwë" + "href": "http://strosin.example/latoyia", + "label": "Balbo Baggins" }, "references": [ { - "href": "http://nader.test/indira_nitzsche", - "label": "Mat Heathertoes" + "href": "http://schamberger.test/pearlene.hoppe", + "label": "Holfast Gardner" }, { - "href": "http://schuster.example/lucas", - "label": "Derufin" + "href": "http://goldner.example/oscar_blick", + "label": "Lindórië" }, { - "href": "http://kutch-sporer.example/samantha", - "label": "Tar-Telperiën" + "href": "http://bechtelar.example/michale", + "label": "Duilin" }, { - "href": "http://kemmer.example/douglas.mann", - "label": "Ornil" + "href": "http://rau.example/nickole_kuhlman", + "label": "Otto Boffin" }, { - "href": "http://crist-larson.example/clifton", - "label": "Avranc" + "href": "http://kassulke.test/keeley", + "label": "Guilin" } ], "value_checks": null, @@ -4550,37 +4727,37 @@ "remediation_issue_id": null }, { - "id": "293a6c74-e8fc-42c2-a96d-f45c272a8387", - "ref_id": "xccdf_org.ssgproject.content_rule_abd5df2e3288abb56a246342bc37c242", - "title": "Fuga labore rerum sit.", - "rationale": "Voluptatibus at exercitationem. Eius qui exercitationem. Reiciendis doloremque quo.", - "description": "Nostrum non consequuntur. Eveniet perspiciatis laudantium. Vel minus ipsum.", + "id": "71575e05-8414-49e1-a7a5-403f9cde4986", + "ref_id": "xccdf_org.ssgproject.content_rule_bdb569ef98f0f4e3dab9169f17b6a670", + "title": "Cupiditate corporis accusamus consequatur.", + "rationale": "Corrupti et inventore. Sed non molestiae. Quod distinctio inventore.", + "description": "Nostrum rerum quia. Ad dignissimos itaque. Rerum in qui.", "severity": "low", - "precedence": 7023, + "precedence": 2123, "identifier": { - "href": "http://hilpert.test/bruno", - "label": "Yávien" + "href": "http://cruickshank.test/marhta", + "label": "Brand" }, "references": [ { - "href": "http://hamill-haley.test/jarod", - "label": "Eärendur" + "href": "http://douglas-schmitt.example/kum_koss", + "label": "Nimrodel" }, { - "href": "http://kiehn.test/tory", - "label": "Gorbadoc Brandybuck" + "href": "http://sauer-watsica.test/alden", + "label": "Girion" }, { - "href": "http://grimes.example/trang_mclaughlin", - "label": "Everard Took" + "href": "http://kub.test/kevin", + "label": "Amdír" }, { - "href": "http://trantow.example/edgar.wisoky", - "label": "Valacar" + "href": "http://wisozk-bruen.test/elden_runolfsson", + "label": "Ebor" }, { - "href": "http://hartmann.example/christian_simonis", - "label": "Ulfast" + "href": "http://kiehn.example/porter", + "label": "Elboron" } ], "value_checks": null, @@ -4589,37 +4766,37 @@ "remediation_issue_id": null }, { - "id": "39e0a1a4-72d4-44f9-86d3-f957180ea7a7", - "ref_id": "xccdf_org.ssgproject.content_rule_51ba1f45d708c4a20609b7526df5277e", - "title": "In est perferendis quo.", - "rationale": "Neque assumenda rem. Veniam quaerat velit. Dignissimos ipsam pariatur.", - "description": "Corrupti quia in. Aspernatur et voluptatem. Sequi vel cum.", + "id": "779c05d2-3e87-4e9e-8f90-0be6eec13689", + "ref_id": "xccdf_org.ssgproject.content_rule_d49cd60c93a682465625fc4dfefdbbfe", + "title": "Pariatur sint numquam sint.", + "rationale": "Et inventore esse. Sint expedita ut. Consequuntur dolores voluptatum.", + "description": "Fuga ad ab. Deserunt aut facilis. Dicta facere at.", "severity": "low", - "precedence": 186, + "precedence": 5655, "identifier": { - "href": "http://reinger.example/angelia", - "label": "Donnamira Took" + "href": "http://waters-haag.example/sandy", + "label": "Ciryatur" }, "references": [ { - "href": "http://mclaughlin.test/jayson", - "label": "Dúnhere" + "href": "http://dare.test/max", + "label": "Rosamunda Took" }, { - "href": "http://hilpert.test/raymundo.rau", - "label": "Arador" + "href": "http://spencer.test/lorretta", + "label": "Farin" }, { - "href": "http://ortiz-christiansen.test/jean", - "label": "Helm" + "href": "http://halvorson.test/tisha.koelpin", + "label": "Wulf" }, { - "href": "http://prohaska.example/nathan", - "label": "Dior" + "href": "http://oconner.test/israel", + "label": "Hazad" }, { - "href": "http://wilkinson-okuneva.test/nathan", - "label": "Aglahad" + "href": "http://stoltenberg.test/rosy", + "label": "Denethor" } ], "value_checks": null, @@ -4628,37 +4805,37 @@ "remediation_issue_id": null }, { - "id": "3b6aec16-bead-41bb-b927-98e7972774aa", - "ref_id": "xccdf_org.ssgproject.content_rule_3165a87915a6a97a44b6eea62d2908c7", - "title": "Sed eaque sunt reiciendis.", - "rationale": "Quas molestiae delectus. Nesciunt hic qui. Esse rerum quis.", - "description": "Est labore deserunt. Vero odio blanditiis. Harum voluptate illo.", - "severity": "high", - "precedence": 8863, + "id": "7d92ab94-ebc8-4833-bcbd-67c48232fb96", + "ref_id": "xccdf_org.ssgproject.content_rule_31e584d3bd1dad2b0776ea4fd121d715", + "title": "Dicta saepe aspernatur qui.", + "rationale": "Cupiditate nam quod. Velit assumenda est. Consequatur fugiat quo.", + "description": "Numquam sapiente amet. Recusandae quasi esse. Voluptatem aliquid explicabo.", + "severity": "medium", + "precedence": 4856, "identifier": { - "href": "http://anderson-quigley.example/jody.dubuque", - "label": "Thengel" + "href": "http://batz.test/delia", + "label": "Beren" }, "references": [ { - "href": "http://lynch.test/eugene", - "label": "Fíli" + "href": "http://auer.example/janna", + "label": "Guilin" }, { - "href": "http://orn.test/valentin", - "label": "Ingwion" + "href": "http://metz.test/aurelio", + "label": "Bregil" }, { - "href": "http://ernser.example/carroll", - "label": "Samwise Gamgee" + "href": "http://ziemann.test/shemeka.pacocha", + "label": "Lothíriel" }, { - "href": "http://kunze.test/celesta_crona", - "label": "Shagram" + "href": "http://turner-ryan.example/jere_schmitt", + "label": "Orophin" }, { - "href": "http://pollich-medhurst.example/miyoko", - "label": "Haleth" + "href": "http://romaguera.test/leonida_mosciski", + "label": "Golasgil" } ], "value_checks": null, @@ -4667,37 +4844,37 @@ "remediation_issue_id": null }, { - "id": "47e47a95-b160-4a92-8261-41bfefa43f2b", - "ref_id": "xccdf_org.ssgproject.content_rule_1f779324ad3a0d5d25c0af268fa87872", - "title": "Nesciunt ab doloribus autem.", - "rationale": "Et adipisci qui. Non et at. Non et minima.", - "description": "Eius aut voluptatem. Optio quo enim. Aut qui ut.", - "severity": "high", - "precedence": 4106, + "id": "abcc960e-9fe1-443a-9580-a8a488db3348", + "ref_id": "xccdf_org.ssgproject.content_rule_a9d9a8151b4912993b22b8a97d79ecdb", + "title": "Provident ducimus ut corrupti.", + "rationale": "Qui qui aut. Est consectetur tenetur. Nobis consequatur possimus.", + "description": "Quidem sunt velit. Dolor ea vel. Voluptatibus repellat voluptatem.", + "severity": "low", + "precedence": 4557, "identifier": { - "href": "http://bartell.example/april_bahringer", - "label": "Rómendacil" + "href": "http://hermiston.example/dillon.hand", + "label": "Daisy Gamgee" }, "references": [ { - "href": "http://keebler.test/johnathon", - "label": "Ferumbras Took" + "href": "http://funk.example/elicia_schmidt", + "label": "Ori" }, { - "href": "http://anderson-skiles.test/katheleen_waelchi", - "label": "Cottar" + "href": "http://powlowski.test/opal_fay", + "label": "Gundahad Bolger" }, { - "href": "http://goyette-swaniawski.test/chasity_hamill", - "label": "Bill Butcher" + "href": "http://vandervort.test/rodrick.runte", + "label": "Hunleth" }, { - "href": "http://stoltenberg.test/sal", - "label": "Anardil" + "href": "http://schultz.test/jefferson", + "label": "Meneldor" }, { - "href": "http://koch.test/marco.berge", - "label": "Ar-Gimilzôr" + "href": "http://jacobson-gibson.example/fredric.doyle", + "label": "Faramir Took" } ], "value_checks": null, @@ -4706,37 +4883,37 @@ "remediation_issue_id": null }, { - "id": "4eb783b1-e5e2-4b22-bf7f-ac2589d1598b", - "ref_id": "xccdf_org.ssgproject.content_rule_fe7c276d22796f510557d39f58d2e739", - "title": "Id et labore perspiciatis.", - "rationale": "Voluptatem cum fugiat. Consequatur quia aut. Aliquam rem sint.", - "description": "Commodi ut dolores. Molestiae dolorum alias. Animi repellat illo.", - "severity": "medium", - "precedence": 9355, + "id": "acd5a522-8998-4875-adde-31d77b9aa594", + "ref_id": "xccdf_org.ssgproject.content_rule_c5f2e0449f7a73866d6bde0c386ecd72", + "title": "Sed quae sit et.", + "rationale": "Dignissimos ipsum repellendus. Explicabo dolorum qui. Tempora accusamus sed.", + "description": "Quis veritatis sequi. Libero natus quis. Voluptatem dolor soluta.", + "severity": "low", + "precedence": 7487, "identifier": { - "href": "http://hoppe.test/lenora.quitzon", - "label": "Bofur" + "href": "http://dach.test/joaquina.fadel", + "label": "Bodruith" }, "references": [ { - "href": "http://steuber.test/ona", - "label": "Tar-Vanimeldë" + "href": "http://oconner-haag.test/kacey.hickle", + "label": "Vigo Boffin" }, { - "href": "http://franecki.example/sharell_stroman", - "label": "Ioreth" + "href": "http://johns.example/harold", + "label": "Tar-Amandil" }, { - "href": "http://kovacek.example/anette", - "label": "Orophin" + "href": "http://rohan-schulist.test/catina", + "label": "Khamûl" }, { - "href": "http://jast.example/ted.schultz", - "label": "Rían" + "href": "http://macgyver.test/majorie", + "label": "Atanatar" }, { - "href": "http://strosin-altenwerth.example/jesus_jacobs", - "label": "Dís" + "href": "http://schmitt-heaney.test/luise", + "label": "Rose Cotton" } ], "value_checks": null, @@ -4751,9 +4928,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/af595ebe-e7b4-4177-b6cc-ecb01dc1a309/profiles/8bc179f3-82c7-4ec2-b577-1c4876d1d238/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/af595ebe-e7b4-4177-b6cc-ecb01dc1a309/profiles/8bc179f3-82c7-4ec2-b577-1c4876d1d238/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/af595ebe-e7b4-4177-b6cc-ecb01dc1a309/profiles/8bc179f3-82c7-4ec2-b577-1c4876d1d238/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/5093d8d6-5b9a-41f6-a4fb-610d69d59d40/profiles/171437a0-59c5-4733-9540-64b9e40e5a9d/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/5093d8d6-5b9a-41f6-a4fb-610d69d59d40/profiles/171437a0-59c5-4733-9540-64b9e40e5a9d/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/5093d8d6-5b9a-41f6-a4fb-610d69d59d40/profiles/171437a0-59c5-4733-9540-64b9e40e5a9d/rules?limit=10&offset=10" } }, "summary": "", @@ -4763,37 +4940,37 @@ "value": { "data": [ { - "id": "8323e883-33af-4026-92ea-f23b1ec7d823", - "ref_id": "xccdf_org.ssgproject.content_rule_07828ff38b7be9aa8154f59896051962", - "title": "Doloremque aperiam in consectetur.", - "rationale": "Aut non iste. Velit inventore suscipit. Inventore totam laborum.", - "description": "Aut culpa dignissimos. Aut dignissimos neque. Porro eveniet aliquam.", - "severity": "low", - "precedence": 159, + "id": "fdaa430c-a7d7-4dcd-9d0d-7368a791a9e0", + "ref_id": "xccdf_org.ssgproject.content_rule_318ab07871908fe2e96d84143b89d03a", + "title": "Est molestias dolor quia.", + "rationale": "Voluptas odio perferendis. Qui debitis beatae. Porro laborum deserunt.", + "description": "In et temporibus. Deleniti commodi quaerat. Nisi dolorem enim.", + "severity": "high", + "precedence": 144, "identifier": { - "href": "http://emard.example/christina.koss", - "label": "Mîm" + "href": "http://abbott.test/kristofer", + "label": "Eluréd" }, "references": [ { - "href": "http://fritsch-carter.example/diedre.walker", - "label": "Mat Heathertoes" + "href": "http://predovic-fisher.test/britney_hilpert", + "label": "Jago Boffin" }, { - "href": "http://dibbert-shields.example/jenice.koelpin", - "label": "Eärendur" + "href": "http://reilly.example/cindy_mayert", + "label": "Baran" }, { - "href": "http://gleichner.example/ela", - "label": "Rorimac Brandybuck" + "href": "http://gusikowski.test/lana", + "label": "Eldalótë" }, { - "href": "http://beier.test/nigel", - "label": "Adamanta Chubb" + "href": "http://bayer.example/kristofer", + "label": "Khîm" }, { - "href": "http://koepp.test/maria.volkman", - "label": "Dáin" + "href": "http://weber.test/roland", + "label": "Haldar" } ], "value_checks": null, @@ -4802,37 +4979,37 @@ "remediation_issue_id": null }, { - "id": "1e09db9a-4c44-498b-b284-ad12f02c07a4", - "ref_id": "xccdf_org.ssgproject.content_rule_caea614a1a1773da172df69b93fac5c2", - "title": "Unde vel reiciendis qui.", - "rationale": "Nihil laborum ipsum. Commodi alias at. Et voluptas quidem.", - "description": "Aut et repellendus. Sed corporis a. Quis ratione aliquid.", - "severity": "medium", - "precedence": 312, + "id": "e828d79f-dee6-47d8-8989-2cef34c77b67", + "ref_id": "xccdf_org.ssgproject.content_rule_2e95a192a2e14f1e46cd2c2759d1adeb", + "title": "Cumque quasi dolorum aliquam.", + "rationale": "Ipsum incidunt voluptates. Sed minima vel. Quis cum qui.", + "description": "Aut est enim. Et aliquam ipsum. Soluta eum qui.", + "severity": "low", + "precedence": 619, "identifier": { - "href": "http://kris-terry.test/ellis", - "label": "Eldacar" + "href": "http://reinger-kiehn.test/lanelle_runolfsson", + "label": "Hugo Bracegirdle" }, "references": [ { - "href": "http://stoltenberg.test/frances", - "label": "Gethron" + "href": "http://mcdermott-padberg.example/lyn", + "label": "Minohtar" }, { - "href": "http://kerluke-senger.test/jefferey", - "label": "Gundabald Bolger" + "href": "http://bruen.test/maria", + "label": "Halmir" }, { - "href": "http://roob-sauer.test/raven", - "label": "Mairen" + "href": "http://spencer.example/darron.legros", + "label": "Ornil" }, { - "href": "http://mcglynn.test/donny", - "label": "Pengolodh" + "href": "http://douglas.example/maisie", + "label": "Mrs. Maggot" }, { - "href": "http://wehner-hoeger.example/brooks_walter", - "label": "Lenwë" + "href": "http://powlowski.test/marvin.haley", + "label": "Boron" } ], "value_checks": null, @@ -4841,37 +5018,37 @@ "remediation_issue_id": null }, { - "id": "8c37c5fa-0eca-49e3-9bda-3ad0754a38ab", - "ref_id": "xccdf_org.ssgproject.content_rule_07166e0daad4ffb5ac063adb45ca339c", - "title": "Maxime fuga totam nobis.", - "rationale": "Omnis quia labore. Debitis cupiditate iste. In aut porro.", - "description": "Rerum neque harum. Omnis doloribus ea. Ipsa et magni.", - "severity": "medium", - "precedence": 497, + "id": "b64647b1-5e1d-4cf3-8654-5479c7affbe8", + "ref_id": "xccdf_org.ssgproject.content_rule_f516011207732739562c4286023aa89f", + "title": "In est delectus et.", + "rationale": "Nihil libero ipsum. Eius voluptatem repudiandae. Eveniet dolor similique.", + "description": "Qui eligendi voluptatum. Laudantium tempore consequatur. Officia inventore animi.", + "severity": "high", + "precedence": 787, "identifier": { - "href": "http://stanton.example/idell_feest", - "label": "Elulindo" + "href": "http://renner.example/johnie", + "label": "Herubrand" }, "references": [ { - "href": "http://ernser-moen.example/josephine.oconner", - "label": "Halmir" + "href": "http://schaefer.test/florentino_weber", + "label": "Duinhir" }, { - "href": "http://miller.test/gail_koch", - "label": "Erling" + "href": "http://skiles-conroy.example/kelley_padberg", + "label": "Elulindo" }, { - "href": "http://kassulke.example/brady", - "label": "Thranduil" + "href": "http://klocko.example/lekisha", + "label": "Asphodel Brandybuck" }, { - "href": "http://braun.example/rena.schiller", - "label": "Beechbone" + "href": "http://blick.example/lazaro", + "label": "Gundabald Bolger" }, { - "href": "http://zulauf.test/beverly", - "label": "Gróin" + "href": "http://oconnell-yost.test/newton", + "label": "Halbarad" } ], "value_checks": null, @@ -4880,37 +5057,37 @@ "remediation_issue_id": null }, { - "id": "2dabb413-0e95-4c40-aba5-774d19578a56", - "ref_id": "xccdf_org.ssgproject.content_rule_a1fe7676e64367a2baebcbef9b8b1729", - "title": "Asperiores voluptatem ea et.", - "rationale": "Repellendus qui atque. Inventore provident reiciendis. Voluptatem omnis magnam.", - "description": "Dolorem saepe aliquam. Perspiciatis illo molestiae. Nostrum fugiat enim.", + "id": "2f76a86d-b158-40f1-b02c-df9c860b04e4", + "ref_id": "xccdf_org.ssgproject.content_rule_72e1428f8c0e3cc9d8c389bc221e3993", + "title": "Sint et error repudiandae.", + "rationale": "Rerum repellat nam. Et eveniet ipsa. Sint odio alias.", + "description": "Voluptatem similique et. Non eaque repudiandae. Amet et qui.", "severity": "high", - "precedence": 1458, + "precedence": 1051, "identifier": { - "href": "http://howe.example/sol", - "label": "Lofar" + "href": "http://orn.example/dominique", + "label": "Forlong" }, "references": [ { - "href": "http://anderson-hamill.example/reinaldo_weber", - "label": "Hirwen" + "href": "http://braun.example/teofila", + "label": "Bill Ferny" }, { - "href": "http://gottlieb-gislason.example/clemencia_ullrich", - "label": "Arwen" + "href": "http://stracke.test/amado_erdman", + "label": "Haldar" }, { - "href": "http://gleason.example/roxy", - "label": "Lobelia Sackville-Baggins" + "href": "http://christiansen.test/michael.gerlach", + "label": "Vinitharya" }, { - "href": "http://mitchell.test/shelby", - "label": "Faramir" + "href": "http://bartoletti-schiller.test/elliot", + "label": "Rudibert Bolger" }, { - "href": "http://sporer.example/colton", - "label": "Belladonna Took" + "href": "http://damore-stark.test/ami_heller", + "label": "Elfstan Fairbairn" } ], "value_checks": null, @@ -4919,37 +5096,37 @@ "remediation_issue_id": null }, { - "id": "7f001f9e-1310-4a73-ad9f-09c4d53e4fda", - "ref_id": "xccdf_org.ssgproject.content_rule_5937f6778edfcd0a9c374bbdfbc6a8d4", - "title": "Non illo repellat labore.", - "rationale": "Suscipit nostrum sit. Dolorum qui qui. Sint voluptatem iusto.", - "description": "Labore est cumque. Reprehenderit id minima. Ut corporis tempore.", - "severity": "high", - "precedence": 1961, + "id": "425084be-d2d1-4937-bfbb-520173af5cb8", + "ref_id": "xccdf_org.ssgproject.content_rule_1b167dd31b46af0f556d36edbbaca8d3", + "title": "Provident ratione impedit quia.", + "rationale": "Sit dolorem quam. Ut et vel. Dolores reprehenderit sit.", + "description": "Voluptates tempore recusandae. Architecto vel nihil. Quam laudantium veniam.", + "severity": "low", + "precedence": 1360, "identifier": { - "href": "http://quitzon-hoppe.example/shanon.moen", - "label": "Beldir" + "href": "http://hagenes-beier.test/marlyn.cartwright", + "label": "Caliondo" }, "references": [ { - "href": "http://harris-schoen.example/joe", - "label": "Elphir" + "href": "http://roob-greenfelder.example/clayton", + "label": "Telchar" }, { - "href": "http://mccullough.example/arlie.gleichner", - "label": "Ilberic Brandybuck" + "href": "http://stokes.example/colene", + "label": "Ebor" }, { - "href": "http://daugherty.test/coralee", - "label": "Daisy Baggins" + "href": "http://lubowitz.test/marco", + "label": "Fréawine" }, { - "href": "http://lowe-stoltenberg.test/dewey", - "label": "Longo Baggins" + "href": "http://stoltenberg-fritsch.example/philip", + "label": "Holfast Gardner" }, { - "href": "http://hirthe-gutmann.example/odis.bernhard", - "label": "Tosto Boffin" + "href": "http://medhurst-kemmer.test/arnoldo_schiller", + "label": "Ornendil" } ], "value_checks": null, @@ -4958,37 +5135,37 @@ "remediation_issue_id": null }, { - "id": "1add1fd5-5503-489b-8211-9f7a9d294401", - "ref_id": "xccdf_org.ssgproject.content_rule_ba1cfe85134cedf821370d7e8706b020", - "title": "Aut perspiciatis corrupti accusantium.", - "rationale": "Enim hic reiciendis. Rem ea enim. In quia harum.", - "description": "Nihil possimus vel. Debitis consequatur eos. Blanditiis fugiat sed.", - "severity": "low", - "precedence": 2792, + "id": "fa37eb85-75cb-4c58-bca1-ad5272b890ba", + "ref_id": "xccdf_org.ssgproject.content_rule_580ded539f7b5b74c0ba1dd81aa8c909", + "title": "Quos quia excepturi et.", + "rationale": "Nisi vero id. Facilis velit sequi. Quis consequatur distinctio.", + "description": "Beatae delectus natus. Nobis quisquam placeat. Sint nihil qui.", + "severity": "medium", + "precedence": 1407, "identifier": { - "href": "http://quitzon-kassulke.test/thurman", - "label": "Longo Baggins" + "href": "http://harvey.test/otha_wyman", + "label": "Baldor" }, "references": [ { - "href": "http://romaguera.test/williams_effertz", - "label": "Beren" + "href": "http://barton.example/cole", + "label": "Denethor" }, { - "href": "http://thiel.test/karlyn", - "label": "Herefara" + "href": "http://corkery-wunsch.example/riley_jacobson", + "label": "Thingol" }, { - "href": "http://damore.example/sharron", - "label": "Rosa Baggins" + "href": "http://quigley.test/serena_will", + "label": "Curufin" }, { - "href": "http://ondricka.example/emelina_ortiz", - "label": "Celeborn" + "href": "http://okeefe.example/salvatore.ryan", + "label": "Aglahad" }, { - "href": "http://schuppe.test/lavona", - "label": "Bregor" + "href": "http://tremblay.test/robt", + "label": "Longo Baggins" } ], "value_checks": null, @@ -4997,37 +5174,37 @@ "remediation_issue_id": null }, { - "id": "314c2d00-f1d9-4396-a8a3-a1b09af3455a", - "ref_id": "xccdf_org.ssgproject.content_rule_57ff01aa74efa76b9c56468306c8a9a9", - "title": "Et nulla vero aut.", - "rationale": "Voluptatibus voluptas consequatur. Eligendi aut et. Tenetur voluptatem sed.", - "description": "Repellat qui officia. Repellat voluptates alias. Reprehenderit eos neque.", - "severity": "medium", - "precedence": 3188, + "id": "f88df241-c785-4e86-a2f3-7ebab53a2eae", + "ref_id": "xccdf_org.ssgproject.content_rule_4102f9dd3773ae7be6b2127d3c8da639", + "title": "Dolorem et numquam vel.", + "rationale": "Et perferendis sint. Quia optio dolor. Qui sunt incidunt.", + "description": "Amet excepturi eos. Est ipsa beatae. Qui iste ut.", + "severity": "high", + "precedence": 1454, "identifier": { - "href": "http://bartell.example/jayson", - "label": "Bowman Cotton" + "href": "http://kerluke.test/joey", + "label": "Elrohir" }, "references": [ { - "href": "http://hills.example/clementine_gleason", - "label": "Farin" + "href": "http://kertzmann.example/claudine.luettgen", + "label": "Holdwine" }, { - "href": "http://effertz-jerde.test/waylon.lebsack", - "label": "Nimrodel" + "href": "http://feeney.example/cheyenne", + "label": "Bifur" }, { - "href": "http://dare-prosacco.test/sybil", - "label": "Tar-Vanimeldë" + "href": "http://mraz.example/jena", + "label": "Hanna Goldworthy" }, { - "href": "http://dickens-robel.example/jessica.rowe", - "label": "Tar-Ardamin" + "href": "http://miller.test/rodrigo", + "label": "Grim" }, { - "href": "http://dietrich.test/oren", - "label": "Linda Baggins" + "href": "http://langworth.example/merlyn_beahan", + "label": "Reginard Took" } ], "value_checks": null, @@ -5036,37 +5213,37 @@ "remediation_issue_id": null }, { - "id": "6ad5084c-b1d6-4db8-b4ae-356da2d14c45", - "ref_id": "xccdf_org.ssgproject.content_rule_6d8be751b2e7ab66f68032ca7eac4db1", - "title": "Saepe qui aliquam harum.", - "rationale": "Dolores sed blanditiis. Mollitia quia excepturi. Libero sed consequatur.", - "description": "Dolorem autem veniam. Impedit ducimus sed. Dolorum est et.", + "id": "d0c94f4f-f2db-4fd7-905d-dc403e1bbaa3", + "ref_id": "xccdf_org.ssgproject.content_rule_fb74ea592b442ea0b9f21a361b28eeb6", + "title": "Rerum sint odit soluta.", + "rationale": "Sit illum incidunt. Sed quo non. Voluptatibus aperiam atque.", + "description": "Veritatis fugiat vel. Architecto ipsam suscipit. Nisi ut odit.", "severity": "high", - "precedence": 3303, + "precedence": 1490, "identifier": { - "href": "http://howe.example/collin", - "label": "Fastred of Greenholm" + "href": "http://jast.example/todd", + "label": "Marigold Gamgee" }, "references": [ { - "href": "http://rowe-powlowski.test/ralph.stanton", - "label": "Cora Goodbody" + "href": "http://connelly-walsh.example/echo.schamberger", + "label": "Belemir" }, { - "href": "http://sanford.test/dorothy.fahey", - "label": "Eorl" + "href": "http://cormier.example/walter_shields", + "label": "Hirgon" }, { - "href": "http://dickinson.test/mary", - "label": "Hareth" + "href": "http://conn-morissette.example/nicky", + "label": "Dagnir" }, { - "href": "http://erdman.example/jin.larkin", - "label": "Daisy Baggins" + "href": "http://fahey.example/glennis", + "label": "Haldar" }, { - "href": "http://erdman-hilpert.example/chester", - "label": "Ingwë" + "href": "http://rath-baumbach.example/alethia.jast", + "label": "Bregor" } ], "value_checks": null, @@ -5075,37 +5252,37 @@ "remediation_issue_id": null }, { - "id": "4076e9c7-53d4-430f-94b5-ce5bc9589864", - "ref_id": "xccdf_org.ssgproject.content_rule_e15aba32e56966749fc86a9e9b448f5e", - "title": "Tenetur quisquam sed voluptas.", - "rationale": "Rem molestiae reprehenderit. Dolor odit repellat. Odit necessitatibus enim.", - "description": "Deleniti totam sint. Asperiores alias saepe. Laboriosam adipisci et.", - "severity": "medium", - "precedence": 3361, + "id": "0abf1ea4-e8de-4a05-92ce-4705282052bd", + "ref_id": "xccdf_org.ssgproject.content_rule_92bb48027f68b988af6fa760398034cd", + "title": "Accusamus sequi corporis autem.", + "rationale": "Est molestiae laborum. Et dolor vitae. Quia dignissimos autem.", + "description": "Culpa quod ducimus. Aut non autem. Nam laborum mollitia.", + "severity": "high", + "precedence": 1965, "identifier": { - "href": "http://little.example/oren_mosciski", - "label": "Dora Baggins" + "href": "http://barton-pfeffer.example/johnny", + "label": "Tom Bombadil" }, "references": [ { - "href": "http://oreilly.example/shenita", - "label": "Ecthelion" + "href": "http://jast.example/kirby_brekke", + "label": "Ciryon" }, { - "href": "http://feil-prohaska.example/ariel", - "label": "Haldar" + "href": "http://blanda.test/hope.tromp", + "label": "Bregil" }, { - "href": "http://bartoletti.test/janay", - "label": "Isembard Took" + "href": "http://littel.test/burt_vandervort", + "label": "Ancalagon" }, { - "href": "http://kreiger-lockman.test/enriqueta", - "label": "Elulindo" + "href": "http://erdman.example/lorena_olson", + "label": "Isengar Took" }, { - "href": "http://runolfsson.test/synthia", - "label": "Ecthelion" + "href": "http://wisoky.test/cedrick.schinner", + "label": "Almiel" } ], "value_checks": null, @@ -5114,37 +5291,37 @@ "remediation_issue_id": null }, { - "id": "d9693120-625f-4aad-a853-f96c935b1f84", - "ref_id": "xccdf_org.ssgproject.content_rule_d0b7242d95b32bf96e63376e8ac036ec", - "title": "Fugit mollitia nisi minus.", - "rationale": "Quisquam deserunt accusantium. Dolorem id quia. Placeat et recusandae.", - "description": "Doloribus sed ut. Eum quia sit. Suscipit quod tempora.", - "severity": "low", - "precedence": 4021, + "id": "ffab8892-3829-4948-9cd9-0300f0cbd5c5", + "ref_id": "xccdf_org.ssgproject.content_rule_413fd914257710c84c31c9475b77501a", + "title": "Repellat placeat omnis dignissimos.", + "rationale": "Atque eum aut. Soluta omnis sequi. Temporibus illum dicta.", + "description": "Molestiae qui nobis. Unde quis eaque. Aliquam incidunt et.", + "severity": "medium", + "precedence": 2541, "identifier": { - "href": "http://braun.test/booker.streich", - "label": "Denethor" + "href": "http://runte.example/eric", + "label": "Hallacar" }, "references": [ { - "href": "http://johnson.test/shawanda", - "label": "Arveleg" + "href": "http://harber-damore.example/maude.haag", + "label": "Esmeralda Took" }, { - "href": "http://predovic.test/frederic", - "label": "Gorbadoc Brandybuck" + "href": "http://kuvalis-farrell.test/forest.weber", + "label": "Bëor" }, { - "href": "http://swaniawski-rippin.example/manuel", - "label": "Berylla Boffin" + "href": "http://kling.test/fritz.kunze", + "label": "Dorlas" }, { - "href": "http://lynch-daugherty.example/cliff.luettgen", - "label": "Celegorm" + "href": "http://boyle.test/dorla", + "label": "Otto Boffin" }, { - "href": "http://gutmann.example/ramon", - "label": "Amethyst Hornblower" + "href": "http://bednar.test/sixta.balistreri", + "label": "Odovacar Bolger" } ], "value_checks": null, @@ -5160,9 +5337,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/a86f1257-9c10-4df8-a39d-4a10a8ead59d/profiles/4e9b42a0-c007-4d68-8694-11bff8ed8091/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/a86f1257-9c10-4df8-a39d-4a10a8ead59d/profiles/4e9b42a0-c007-4d68-8694-11bff8ed8091/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/a86f1257-9c10-4df8-a39d-4a10a8ead59d/profiles/4e9b42a0-c007-4d68-8694-11bff8ed8091/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/b1561dff-4aff-4c83-abcf-c119c022cd7a/profiles/9e76286a-4a70-4f91-abcc-7b6c6bcd4f13/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/b1561dff-4aff-4c83-abcf-c119c022cd7a/profiles/9e76286a-4a70-4f91-abcc-7b6c6bcd4f13/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/b1561dff-4aff-4c83-abcf-c119c022cd7a/profiles/9e76286a-4a70-4f91-abcc-7b6c6bcd4f13/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -5278,37 +5455,37 @@ "Returns a Rule": { "value": { "data": { - "id": "447a110d-517e-4744-8b3a-cd965c87300c", - "ref_id": "xccdf_org.ssgproject.content_rule_72373660f28dd6c6adb5fdc54e0f2ebb", - "title": "Ullam voluptas molestiae quo.", - "rationale": "Rerum aut eaque. Provident quo qui. Non vel et.", - "description": "At cum reiciendis. Optio eos dolor. Eius ex totam.", - "severity": "low", - "precedence": 2012, + "id": "aeec5983-98a7-4e85-b6ac-0c93176d79fb", + "ref_id": "xccdf_org.ssgproject.content_rule_7ab61ba5831044e59d4db736776c6a41", + "title": "Harum dolorem quis praesentium.", + "rationale": "Possimus id omnis. Deleniti veniam unde. Saepe non aliquam.", + "description": "Quod qui odio. Qui numquam magni. Excepturi saepe ullam.", + "severity": "high", + "precedence": 3013, "identifier": { - "href": "http://bosco.test/dixie", - "label": "Avranc" + "href": "http://ryan.test/dian.rolfson", + "label": "Arador" }, "references": [ { - "href": "http://bailey-keebler.example/nenita.conn", - "label": "Gundabald Bolger" + "href": "http://hagenes.test/hans.ryan", + "label": "Treebeard" }, { - "href": "http://abernathy.example/leandro", - "label": "Dior" + "href": "http://langosh.example/mariela", + "label": "Elwing" }, { - "href": "http://murphy.example/mitsue.carter", - "label": "Elendur" + "href": "http://parker.test/chas", + "label": "Findis" }, { - "href": "http://reynolds.test/vivienne", - "label": "Bombur" + "href": "http://kuhlman.test/louis.rath", + "label": "Galadriel" }, { - "href": "http://larkin.example/wayne.bode", - "label": "Cottar" + "href": "http://johnson.example/bradford", + "label": "Primrose Gardner" } ], "value_checks": null, @@ -5345,7 +5522,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID e45dcc31-9df9-474c-a83f-6ce44b8ada76" + "V2::Rule not found with ID 3207e592-5078-4ee5-b36a-4a51717f6706" ] }, "summary": "", @@ -5471,37 +5648,37 @@ "value": { "data": [ { - "id": "1c4ae0bf-43cd-433c-a191-d83827b471c7", - "ref_id": "xccdf_org.ssgproject.content_rule_46a23519f01e94778a3675f471b797e1", - "title": "Praesentium voluptas deleniti et.", - "rationale": "Omnis exercitationem eveniet. Recusandae iusto quaerat. Recusandae minus rerum.", - "description": "Perspiciatis cum totam. Molestiae voluptatem sit. Exercitationem officia qui.", - "severity": "high", - "precedence": 6130, + "id": "16dd6998-d347-46b8-b653-d51fd442fd72", + "ref_id": "xccdf_org.ssgproject.content_rule_c72409bb6e3d1104302698c1927a5164", + "title": "Est velit ratione libero.", + "rationale": "Blanditiis molestiae earum. Aliquid illo ab. Laboriosam quod magni.", + "description": "Praesentium et aut. Consequatur dolor autem. Ut porro in.", + "severity": "low", + "precedence": 5560, "identifier": { - "href": "http://marvin-hirthe.test/miriam", - "label": "Gilwen" + "href": "http://okon-hodkiewicz.test/arnulfo", + "label": "Meleth" }, "references": [ { - "href": "http://muller.example/murray", - "label": "Old Noakes" + "href": "http://koss.example/neely", + "label": "Quickbeam" }, { - "href": "http://botsford-rolfson.example/luis_crist", - "label": "Eärwen" + "href": "http://herzog.example/archie", + "label": "Ostoher" }, { - "href": "http://shields-legros.example/jeramy", - "label": "Hugo Bracegirdle" + "href": "http://greenholt.example/ross", + "label": "Primrose Gardner" }, { - "href": "http://sauer-schaden.example/lou", - "label": "Bert" + "href": "http://marks-hoeger.example/heidi", + "label": "Flambard Took" }, { - "href": "http://langosh.example/berry", - "label": "Amarië" + "href": "http://fay.test/howard", + "label": "Poppy Chubb-Baggins" } ], "value_checks": null, @@ -5515,8 +5692,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/12a1f298-dc05-4287-a8ed-5e5c2f57efcb/tailorings/377730b2-7bce-40cd-9c71-5c1b01e8f40b/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/12a1f298-dc05-4287-a8ed-5e5c2f57efcb/tailorings/377730b2-7bce-40cd-9c71-5c1b01e8f40b/rules?limit=10&offset=0" + "first": "/api/compliance/v2/policies/9d3f4727-0a07-4d97-a719-7b4a45d08eb9/tailorings/042074e2-f956-4c1a-bc40-626ef4f53772/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/9d3f4727-0a07-4d97-a719-7b4a45d08eb9/tailorings/042074e2-f956-4c1a-bc40-626ef4f53772/rules?limit=10&offset=0" } }, "summary": "", @@ -5526,37 +5703,37 @@ "value": { "data": [ { - "id": "5c344c56-f8ca-44c1-9f0b-a135916ce195", - "ref_id": "xccdf_org.ssgproject.content_rule_8c92b3e9eb1acec21d5bd50e36e5b557", - "title": "Qui sint sit occaecati.", - "rationale": "Nobis error dolor. Cupiditate commodi corrupti. Enim nihil et.", - "description": "Est laboriosam et. Atque et mollitia. Praesentium consectetur similique.", - "severity": "high", - "precedence": 4598, + "id": "969b7534-50d0-4ba6-8bfb-b965576fecc1", + "ref_id": "xccdf_org.ssgproject.content_rule_e62bb0eaa1d5261549e7b2278dcaebd7", + "title": "Laboriosam soluta assumenda perspiciatis.", + "rationale": "Et nulla aut. Voluptatem praesentium recusandae. Et explicabo ab.", + "description": "Qui ut et. Iure et ut. Similique et rerum.", + "severity": "low", + "precedence": 9009, "identifier": { - "href": "http://quitzon.test/ervin", - "label": "Mrs. Maggot" + "href": "http://lind.test/wesley.baumbach", + "label": "Hob Gammidge" }, "references": [ { - "href": "http://considine.test/shelby", - "label": "Valacar" + "href": "http://heathcote.example/clark", + "label": "Gerda Boffin" }, { - "href": "http://grady-kemmer.example/maryland.hagenes", - "label": "Beril" + "href": "http://goodwin.example/cris_connelly", + "label": "Bingo Baggins" }, { - "href": "http://conroy-funk.test/kirk", - "label": "Angelica Baggins" + "href": "http://crooks.example/shakira", + "label": "Leaflock" }, { - "href": "http://leffler-davis.test/ayako.connelly", - "label": "Almiel" + "href": "http://yundt-cassin.test/shawn", + "label": "Draugluin" }, { - "href": "http://schinner.example/demetrius", - "label": "Angamaitë" + "href": "http://aufderhar.test/sandy.kuhic", + "label": "Borondir" } ], "value_checks": null, @@ -5571,8 +5748,8 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/policies/714d6ddc-4e71-4901-91f7-71befdea2d67/tailorings/07a154e4-bfcd-418f-9c03-2af6bce3d6a3/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/policies/714d6ddc-4e71-4901-91f7-71befdea2d67/tailorings/07a154e4-bfcd-418f-9c03-2af6bce3d6a3/rules?limit=10&offset=0&sort_by=precedence" + "first": "/api/compliance/v2/policies/a6ae33ad-dca3-4133-90c5-e98ca2ea317e/tailorings/d7c010c7-324d-4ed5-8daf-6dab5ef3c016/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/policies/a6ae33ad-dca3-4133-90c5-e98ca2ea317e/tailorings/d7c010c7-324d-4ed5-8daf-6dab5ef3c016/rules?limit=10&offset=0&sort_by=precedence" } }, "summary": "", @@ -5679,37 +5856,37 @@ "value": { "data": [ { - "id": "0b9ff2c9-6f36-432e-9d15-088d77f2de26", - "ref_id": "xccdf_org.ssgproject.content_rule_7e9234f5252db1cdc28049bfb726d662", - "title": "Eos inventore sed quas.", - "rationale": "Blanditiis quis aut. Unde perspiciatis repudiandae. Odit dolorem sunt.", - "description": "In a quia. Iste quidem laudantium. Libero est velit.", - "severity": "high", - "precedence": 5256, + "id": "013b5fec-21e5-4f25-808d-0c1542d32257", + "ref_id": "xccdf_org.ssgproject.content_rule_40c1e0cf54e891185a899440d4a70410", + "title": "Qui rerum consequuntur enim.", + "rationale": "Quaerat quia veritatis. Expedita aut tempore. Provident nihil odio.", + "description": "Ea similique quisquam. Exercitationem officiis nobis. Ea ullam id.", + "severity": "low", + "precedence": 9314, "identifier": { - "href": "http://bruen.example/vania_effertz", - "label": "Brytta" + "href": "http://simonis.test/mohammed_ruecker", + "label": "Olo Proudfoot" }, "references": [ { - "href": "http://wuckert.example/devon.reynolds", - "label": "Hob Gammidge" + "href": "http://upton.test/nigel_cassin", + "label": "Elulindo" }, { - "href": "http://rutherford.test/verdie.king", - "label": "Meneldor" + "href": "http://collins-carter.test/trey", + "label": "Wulf" }, { - "href": "http://huel.example/lyman.harber", - "label": "Marigold Gamgee" + "href": "http://doyle.example/dick", + "label": "Smaug" }, { - "href": "http://haag.example/rocco", - "label": "Holdwine" + "href": "http://moore.test/janis", + "label": "Andwise Roper" }, { - "href": "http://lubowitz.test/guillermo_kerluke", - "label": "Fosco Baggins" + "href": "http://tillman.example/lucas_doyle", + "label": "Fréa" } ], "value_checks": null, @@ -5717,37 +5894,37 @@ "type": "rule" }, { - "id": "24717469-d879-40bf-b7ee-b1c5a8ac04ad", - "ref_id": "xccdf_org.ssgproject.content_rule_750f602745555dc6273172f681c84f1e", - "title": "Pariatur ut dolores ea.", - "rationale": "Architecto accusamus vel. Qui temporibus voluptatem. Veniam quia aliquam.", - "description": "Est quam iusto. Alias nostrum in. Nisi officia dolore.", - "severity": "medium", - "precedence": 8476, + "id": "111cffea-e060-4c23-8a2a-37f50549ac91", + "ref_id": "xccdf_org.ssgproject.content_rule_066c99840048a01351a090e9738614ac", + "title": "Quia autem sed ea.", + "rationale": "Voluptate quaerat vitae. Hic saepe sunt. Et eaque cupiditate.", + "description": "Et laboriosam similique. Sint nisi repellendus. Consequatur quia dolores.", + "severity": "low", + "precedence": 8170, "identifier": { - "href": "http://kozey-beer.test/devin_klein", - "label": "Bofur" + "href": "http://murray-pacocha.example/dan.toy", + "label": "Éomer" }, "references": [ { - "href": "http://gerlach.example/fredrick_kuhn", - "label": "Hardang" + "href": "http://boyle.example/lue", + "label": "Mirabella Took" }, { - "href": "http://zboncak-bauch.example/russell.waelchi", - "label": "Briffo Boffin" + "href": "http://dare-bergstrom.example/trena", + "label": "Aulendil" }, { - "href": "http://wintheiser-sporer.test/bernard", - "label": "Minardil" + "href": "http://hessel.test/cristobal.connelly", + "label": "Tar-Ancalimë" }, { - "href": "http://shields.test/shiloh_boyle", - "label": "Borondir" + "href": "http://welch.example/rigoberto", + "label": "Beregar" }, { - "href": "http://stokes.example/bobbie", - "label": "Grimbold" + "href": "http://bauch.test/abram", + "label": "Ufthak" } ], "value_checks": null, @@ -5755,37 +5932,37 @@ "type": "rule" }, { - "id": "28649d0f-c90c-4bd3-bdf9-6f9eddd76305", - "ref_id": "xccdf_org.ssgproject.content_rule_c04a98b3ba543c3bd44ea57dd9c1482b", - "title": "Nobis eaque ex voluptatem.", - "rationale": "Dolorem iure alias. Et sit accusantium. Ut dolorem ab.", - "description": "Omnis fugit natus. Quia dolor sit. Qui et cupiditate.", - "severity": "medium", - "precedence": 8875, + "id": "14f2826c-46be-4da9-ab62-4ff508cae312", + "ref_id": "xccdf_org.ssgproject.content_rule_d9f5a24f6c9eee00d6ba66708ffbc49c", + "title": "Nulla nihil dolorem veniam.", + "rationale": "Voluptas fuga cum. Est assumenda qui. Et dolor vitae.", + "description": "Repellendus dolores suscipit. Voluptate iusto enim. Ut velit ut.", + "severity": "high", + "precedence": 7784, "identifier": { - "href": "http://hickle-rowe.test/suzi", - "label": "Théodwyn" + "href": "http://casper-smitham.example/earl", + "label": "Erendis" }, "references": [ { - "href": "http://sanford.test/tracey", - "label": "Beregond" + "href": "http://funk.example/ricky", + "label": "Lúthien" }, { - "href": "http://howell-mills.test/alphonso", - "label": "Tarcil" + "href": "http://jacobi-bogisich.test/lou", + "label": "Tanta Hornblower" }, { - "href": "http://mohr-bernier.test/merrill_sipes", - "label": "Glirhuin" + "href": "http://roberts.example/ramiro", + "label": "Olo Proudfoot" }, { - "href": "http://mann-windler.test/chery", - "label": "Glorfindel" + "href": "http://hegmann.test/tempie_kertzmann", + "label": "Gríma" }, { - "href": "http://wilderman.example/daryl", - "label": "Gwindor" + "href": "http://kessler-reichel.test/darin.weimann", + "label": "Ivriniel" } ], "value_checks": null, @@ -5793,37 +5970,37 @@ "type": "rule" }, { - "id": "3787ba25-f3b1-4b11-85b4-2ded9dc8e3df", - "ref_id": "xccdf_org.ssgproject.content_rule_612db41e970ba7279a0554040aeebecd", - "title": "Eaque autem quis voluptas.", - "rationale": "Dolor molestiae dicta. Animi et aut. Sed sit sunt.", - "description": "Et officiis nostrum. Earum corrupti culpa. Consequatur qui aut.", + "id": "240edcd7-1700-4988-9dae-24434701660b", + "ref_id": "xccdf_org.ssgproject.content_rule_56c570b6a75f31849d93cf47a1e42091", + "title": "Et officia eum itaque.", + "rationale": "Eveniet aut doloremque. Omnis veniam ut. Eius corporis cupiditate.", + "description": "Repellat esse nihil. Quasi dolore qui. Sunt dolorum qui.", "severity": "medium", - "precedence": 4058, + "precedence": 219, "identifier": { - "href": "http://collier.example/anika.lubowitz", - "label": "Théodwyn" + "href": "http://rosenbaum.example/jesse.mckenzie", + "label": "Laura Grubb" }, "references": [ { - "href": "http://grady-bradtke.test/florinda_larson", - "label": "Mrs. Maggot" + "href": "http://powlowski-simonis.test/jacinto.schulist", + "label": "Thengel" }, { - "href": "http://torp.test/ernestine.grant", - "label": "Iminyë" + "href": "http://oconnell-cassin.test/ricardo", + "label": "Araval" }, { - "href": "http://quigley.example/jamar", - "label": "Ulrad" + "href": "http://larkin.test/verlie_nienow", + "label": "Snaga" }, { - "href": "http://lueilwitz.test/mauricio_steuber", - "label": "Hathol" + "href": "http://braun-prosacco.test/signe_graham", + "label": "Carl Cotton" }, { - "href": "http://mckenzie.test/anamaria.lindgren", - "label": "Bëor" + "href": "http://yundt-hauck.example/coleman_bahringer", + "label": "Tar-Telemmaitë" } ], "value_checks": null, @@ -5831,37 +6008,37 @@ "type": "rule" }, { - "id": "39ef4f95-5847-4413-88bf-a98f37602cd0", - "ref_id": "xccdf_org.ssgproject.content_rule_cac25dc7b425d29432b020326fb00221", - "title": "Velit voluptates qui temporibus.", - "rationale": "Consequatur officia architecto. Dignissimos voluptas quia. Et iusto qui.", - "description": "Nihil similique dolores. Laudantium facere totam. Ullam deserunt nisi.", - "severity": "low", - "precedence": 1979, + "id": "3ee4d5de-a2f8-46e8-b64f-8bd4341fa0ce", + "ref_id": "xccdf_org.ssgproject.content_rule_77391f1e29cd4dc3274ebb187e2b67a0", + "title": "Dolorem esse veritatis non.", + "rationale": "Iste laudantium laboriosam. Omnis dolores unde. Ratione accusamus quasi.", + "description": "Sunt enim et. Vero voluptas ipsam. Nam et consectetur.", + "severity": "high", + "precedence": 9470, "identifier": { - "href": "http://crist.test/jeanelle.connelly", - "label": "Flói" + "href": "http://schuster-zboncak.example/evia_paucek", + "label": "Ponto Baggins" }, "references": [ { - "href": "http://ebert-wehner.test/tonia", - "label": "Belecthor" + "href": "http://windler.example/carline", + "label": "Tarciryan" }, { - "href": "http://turcotte.example/carmen", - "label": "Sagroth" + "href": "http://hoeger.example/joycelyn.larson", + "label": "Larnach" }, { - "href": "http://senger.example/donnie", - "label": "Lagduf" + "href": "http://oconner.test/agustin", + "label": "Porto Baggins" }, { - "href": "http://skiles.test/oralia_wolf", - "label": "Aglahad" + "href": "http://feeney.example/rosanne.hudson", + "label": "Haldar" }, { - "href": "http://king.example/yajaira.weissnat", - "label": "Mallor" + "href": "http://bailey.example/natisha.flatley", + "label": "Dáin" } ], "value_checks": null, @@ -5869,37 +6046,37 @@ "type": "rule" }, { - "id": "40285061-fc62-4db1-a3f3-fb4e39c815dd", - "ref_id": "xccdf_org.ssgproject.content_rule_f574b99e4fde4c8022c9a37a2dd49cf4", - "title": "Quam aut et id.", - "rationale": "Dolor ea doloremque. Nemo sint quod. Molestiae esse velit.", - "description": "Ut facere neque. Fugiat et quo. Mollitia consequatur explicabo.", - "severity": "medium", - "precedence": 6138, + "id": "422cbb32-a117-4695-b3e5-295ed34a4468", + "ref_id": "xccdf_org.ssgproject.content_rule_ca539a5ca539bc680b0e14d81e05aeff", + "title": "Est aut accusantium molestiae.", + "rationale": "Quasi voluptas sed. Ut corrupti soluta. Enim aperiam repellendus.", + "description": "Ducimus in repudiandae. Debitis ipsam nisi. Aut quisquam est.", + "severity": "high", + "precedence": 975, "identifier": { - "href": "http://stark.test/krystin", - "label": "Hador" + "href": "http://littel.test/patrice", + "label": "Pansy Baggins" }, "references": [ { - "href": "http://jones.example/oretha_mayer", - "label": "Ciryatur" + "href": "http://vandervort.example/ryan_denesik", + "label": "Duinhir" }, { - "href": "http://stokes.example/armand.kuvalis", - "label": "Faramir Took" + "href": "http://wiza-gutkowski.test/felix", + "label": "Mungo Baggins" }, { - "href": "http://marquardt-schulist.example/vernon", - "label": "Finbor" + "href": "http://greenholt.example/marvin_batz", + "label": "Déorwine" }, { - "href": "http://sipes.example/marietta.schowalter", - "label": "Wiseman Gamwich" + "href": "http://ritchie-howe.example/pierre", + "label": "Gandalf" }, { - "href": "http://ernser.test/lamar", - "label": "Bucca of the Marish" + "href": "http://russel.test/peter", + "label": "Fingon" } ], "value_checks": null, @@ -5907,37 +6084,37 @@ "type": "rule" }, { - "id": "48fbd6dc-7592-4b2b-ab22-b3d63036b994", - "ref_id": "xccdf_org.ssgproject.content_rule_5bbe1b27e391c5e4aa7be47ac962dbe2", - "title": "Esse quisquam et ut.", - "rationale": "Voluptate rerum rerum. Modi qui velit. Occaecati labore et.", - "description": "Consequatur non ad. Earum itaque est. Laudantium at commodi.", - "severity": "high", - "precedence": 1219, + "id": "47c96ea4-bf21-4df9-acef-269dc9fd3904", + "ref_id": "xccdf_org.ssgproject.content_rule_e035d7aa78c2c86d38c1de8b29d2108f", + "title": "Quibusdam est et totam.", + "rationale": "Ea et similique. Eum excepturi dolorum. Enim ea voluptate.", + "description": "Possimus est nihil. Provident quo dolorem. Eveniet ratione eius.", + "severity": "medium", + "precedence": 8962, "identifier": { - "href": "http://maggio-doyle.test/conrad.hudson", - "label": "May Gamgee" + "href": "http://muller-torp.test/luigi", + "label": "Asgon" }, "references": [ { - "href": "http://moen.example/rhiannon", - "label": "Grishnákh" + "href": "http://schinner.test/lionel.crist", + "label": "Morwen" }, { - "href": "http://davis.test/raina_langosh", - "label": "Briffo Boffin" + "href": "http://murazik.example/ivan", + "label": "Idis" }, { - "href": "http://pollich.test/laurinda", - "label": "Beechbone" + "href": "http://barrows.test/burton_strosin", + "label": "Dorlas" }, { - "href": "http://lebsack.test/theron", - "label": "Hathaldir" + "href": "http://bogisich.test/huong", + "label": "Eluréd" }, { - "href": "http://bayer-witting.example/kareem.williamson", - "label": "Falco Chubb-Baggins" + "href": "http://shields-mcdermott.test/carson.mcdermott", + "label": "Nori" } ], "value_checks": null, @@ -5945,37 +6122,37 @@ "type": "rule" }, { - "id": "59b9053b-eac9-4e1e-be3d-00ed219bbfc3", - "ref_id": "xccdf_org.ssgproject.content_rule_0a5b61efece3c777107e554c6b216c93", - "title": "Beatae incidunt ad voluptas.", - "rationale": "Consequatur earum et. Magni beatae totam. Quis voluptatem voluptatem.", - "description": "Consequatur aut accusamus. Quia autem consequatur. Sit impedit sed.", - "severity": "medium", - "precedence": 2987, + "id": "4f32a8fd-2165-4267-97fa-0c0d3fbfe4fc", + "ref_id": "xccdf_org.ssgproject.content_rule_42553c6a99b3059ae1d193968fcab8d1", + "title": "Accusamus quidem aut et.", + "rationale": "Et possimus harum. Consequuntur omnis velit. Alias exercitationem nostrum.", + "description": "Veniam recusandae blanditiis. Ut officiis dolore. Ea id doloremque.", + "severity": "high", + "precedence": 6451, "identifier": { - "href": "http://walker.test/oswaldo", - "label": "Telemnar" + "href": "http://keeling-mccullough.example/trey", + "label": "Ufthak" }, "references": [ { - "href": "http://ritchie.test/luigi", - "label": "Diamond of Long Cleeve" + "href": "http://kautzer.test/ozella", + "label": "Meneldor" }, { - "href": "http://cronin.test/harley.smith", - "label": "Peeping Jack" + "href": "http://buckridge.example/hung", + "label": "Finduilas" }, { - "href": "http://kohler.test/angelo_weimann", - "label": "Núneth" + "href": "http://graham.example/erick", + "label": "Madoc Brandybuck" }, { - "href": "http://murphy-carroll.test/lester", - "label": "Primrose Gardner" + "href": "http://carroll-kreiger.example/miguel_schamberger", + "label": "Glirhuin" }, { - "href": "http://upton.example/freddie", - "label": "Idril" + "href": "http://wunsch.example/kevin.konopelski", + "label": "Vëantur" } ], "value_checks": null, @@ -5983,37 +6160,37 @@ "type": "rule" }, { - "id": "6455af74-170b-4255-b3c4-cf29a2278eb3", - "ref_id": "xccdf_org.ssgproject.content_rule_cc3052e7ce087bb5cd9ae9efa13a520c", - "title": "Facere dolorum cumque ut.", - "rationale": "Amet adipisci aut. Nulla illum omnis. Beatae quae soluta.", - "description": "Ipsam ipsum quos. Culpa voluptatum dignissimos. In dicta doloremque.", + "id": "541e88e7-eae4-48e3-9b45-90b4256dafa4", + "ref_id": "xccdf_org.ssgproject.content_rule_e163af5a8f5fc0ac4b1a852f84cbb5c0", + "title": "Ratione omnis ea dolorem.", + "rationale": "Quis rerum labore. Distinctio voluptatem ipsam. Molestiae eos similique.", + "description": "Est ea et. Quam et quaerat. Animi ut molestiae.", "severity": "medium", - "precedence": 9128, + "precedence": 6373, "identifier": { - "href": "http://konopelski.test/vance_kuhn", - "label": "Elladan" + "href": "http://gottlieb.test/stefan", + "label": "Galador" }, "references": [ { - "href": "http://kutch.test/hoyt", - "label": "Nina Lightfoot" + "href": "http://hirthe.example/keli.mann", + "label": "Éothéod" }, { - "href": "http://torphy.test/macie_parisian", - "label": "Ar-Pharazôn" + "href": "http://kling.test/silvana.abernathy", + "label": "Meriadoc Brandybuck" }, { - "href": "http://borer.example/zandra_huel", - "label": "Ruby Gardner" + "href": "http://langworth-yost.example/lon_bergnaum", + "label": "Harding of the Hill" }, { - "href": "http://green.example/jeanette", - "label": "Robin Gardner" + "href": "http://gislason.example/maximo", + "label": "Elphir" }, { - "href": "http://casper-marvin.test/chad.torp", - "label": "Fíriel Fairbairn" + "href": "http://emmerich.example/gil", + "label": "Haldar" } ], "value_checks": null, @@ -6021,37 +6198,37 @@ "type": "rule" }, { - "id": "7357333f-9bac-4529-89db-8e64511b0e0a", - "ref_id": "xccdf_org.ssgproject.content_rule_dbad6796bf405c9e48a3752183af55fd", - "title": "Illum voluptas quos repellat.", - "rationale": "Velit pariatur distinctio. Dolore cumque provident. Pariatur voluptas numquam.", - "description": "Voluptatem eaque rerum. Sed mollitia nostrum. Recusandae praesentium consectetur.", - "severity": "low", - "precedence": 8267, + "id": "62bde675-7e8f-4559-9d63-53282e268556", + "ref_id": "xccdf_org.ssgproject.content_rule_c35ff6bd7cecb5533c8d0b53968e3450", + "title": "Ut corporis dignissimos qui.", + "rationale": "Mollitia maxime dicta. Est ut consectetur. Rem consectetur temporibus.", + "description": "Facilis voluptates pariatur. Quam voluptate eum. Pariatur beatae itaque.", + "severity": "high", + "precedence": 8758, "identifier": { - "href": "http://waelchi-padberg.example/kirby", - "label": "Aredhel" + "href": "http://rosenbaum-ziemann.test/jospeh_heaney", + "label": "Hirgon" }, "references": [ { - "href": "http://labadie-ernser.example/brant.kutch", - "label": "Bowman Cotton" + "href": "http://block.example/alleen_crooks", + "label": "Borthand" }, { - "href": "http://vonrueden.test/dino", - "label": "Éomund" + "href": "http://bogisich.test/garland_veum", + "label": "Primula Brandybuck" }, { - "href": "http://predovic-johnston.test/jewell", - "label": "Berylla Boffin" + "href": "http://ziemann-lowe.example/betty.schuppe", + "label": "Gaffer Gamgee" }, { - "href": "http://toy.test/tad_gusikowski", - "label": "Azaghâl" + "href": "http://daniel-lueilwitz.example/georgina", + "label": "Théoden" }, { - "href": "http://nienow.example/lili.hane", - "label": "Théoden" + "href": "http://dare.test/kim", + "label": "Berelach" } ], "value_checks": null, @@ -6065,9 +6242,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/6b45634f-a49d-4726-8c87-d4c8e8fbfe40/tailorings/132770dd-7d9a-4762-a003-41400ab60411/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/6b45634f-a49d-4726-8c87-d4c8e8fbfe40/tailorings/132770dd-7d9a-4762-a003-41400ab60411/rules?limit=10&offset=20", - "next": "/api/compliance/v2/policies/6b45634f-a49d-4726-8c87-d4c8e8fbfe40/tailorings/132770dd-7d9a-4762-a003-41400ab60411/rules?limit=10&offset=10" + "first": "/api/compliance/v2/policies/ba889e31-249a-40bb-b764-469679820eaa/tailorings/5b383fec-26d2-4b49-a4a4-1330eac6efe6/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/ba889e31-249a-40bb-b764-469679820eaa/tailorings/5b383fec-26d2-4b49-a4a4-1330eac6efe6/rules?limit=10&offset=20", + "next": "/api/compliance/v2/policies/ba889e31-249a-40bb-b764-469679820eaa/tailorings/5b383fec-26d2-4b49-a4a4-1330eac6efe6/rules?limit=10&offset=10" } }, "summary": "", @@ -6170,37 +6347,37 @@ "Assigns a Rule to a Tailoring": { "value": { "data": { - "id": "bd4d401a-e202-4e29-ba15-d3cb97a1a98c", - "ref_id": "xccdf_org.ssgproject.content_rule_86ace994c43ce973c178581e22078b89", - "title": "Quis quibusdam quasi cum.", - "rationale": "Quis ducimus id. Ut quos aliquam. Tempore sequi blanditiis.", - "description": "Vel exercitationem vitae. Aut dolores non. Et id architecto.", - "severity": "medium", - "precedence": 1419, + "id": "67ec0b46-1150-42c9-bc1f-137d29a3abec", + "ref_id": "xccdf_org.ssgproject.content_rule_83c9c3710da44b08c2335be0458ad285", + "title": "Rerum facilis quia voluptates.", + "rationale": "Eum et voluptatum. Pariatur omnis a. Nemo accusamus rerum.", + "description": "Et esse quia. Necessitatibus quia ratione. Magni quas quibusdam.", + "severity": "low", + "precedence": 866, "identifier": { - "href": "http://kling-grady.example/walker_wolff", - "label": "Tatië" + "href": "http://mante.test/amira", + "label": "Seredic Brandybuck" }, "references": [ { - "href": "http://larkin-wunsch.test/von_okeefe", - "label": "Hundar" + "href": "http://batz.example/mason_purdy", + "label": "Arvegil" }, { - "href": "http://mitchell-daniel.example/august", - "label": "Will Whitfoot" + "href": "http://paucek.test/anita", + "label": "Poldor" }, { - "href": "http://rohan.test/johnathon_weber", - "label": "Dorlas" + "href": "http://rohan.example/stacey_mcglynn", + "label": "Ulrad" }, { - "href": "http://hammes.example/rufus", - "label": "Mîm" + "href": "http://langosh.test/cherri.kuhic", + "label": "Amaranth Brandybuck" }, { - "href": "http://barton-welch.test/misha.lind", - "label": "Otho Sackville-Baggins" + "href": "http://dickinson.example/heide_heathcote", + "label": "Minardil" } ], "value_checks": null, @@ -6223,7 +6400,7 @@ "Returns with Not found": { "value": { "errors": [ - "V2::Rule not found with ID b5f153af-d355-4055-a7c3-b58c21710fcf" + "V2::Rule not found with ID df9407cf-778e-4c7c-90dd-a5c8c7285972" ] }, "summary": "", @@ -6286,37 +6463,37 @@ "Unassigns a Rule from a Tailoring": { "value": { "data": { - "id": "380156af-9593-48f2-a5a4-e4e7e2275875", - "ref_id": "xccdf_org.ssgproject.content_rule_ff9629c6781cd50545a909c7d0f3e110", - "title": "Commodi temporibus cum ut.", - "rationale": "Porro tempora facilis. Vel numquam debitis. Doloremque maiores eum.", - "description": "Tempora nostrum sed. Aut quis sapiente. Est fugit sit.", - "severity": "high", - "precedence": 7666, + "id": "3788b9a8-07e1-4c6e-bc3f-0629ce30ad74", + "ref_id": "xccdf_org.ssgproject.content_rule_8b0bb7984f63658c9be2acb31ca55ce9", + "title": "Temporibus eos porro debitis.", + "rationale": "Qui velit possimus. Minima enim sed. Recusandae autem quia.", + "description": "Nemo enim fuga. A accusamus eos. Dolores ducimus debitis.", + "severity": "medium", + "precedence": 1487, "identifier": { - "href": "http://frami-bashirian.test/elmer", - "label": "Gilmith" + "href": "http://heller.test/raleigh.wehner", + "label": "Irolas" }, "references": [ { - "href": "http://vonrueden-bauch.test/ashely.hyatt", - "label": "Uldor" + "href": "http://predovic.test/maida.zboncak", + "label": "Elmar" }, { - "href": "http://harris.test/seth.donnelly", - "label": "Ivorwen" + "href": "http://davis.test/herschel", + "label": "Bill Ferny" }, { - "href": "http://mertz.example/brunilda.hettinger", - "label": "Ted Sandyman" + "href": "http://powlowski.test/sophia", + "label": "Arthad" }, { - "href": "http://krajcik.example/johnna_beahan", - "label": "Findegil" + "href": "http://von.test/silas", + "label": "Sigismond Took" }, { - "href": "http://mohr.example/isaias", - "label": "Tuor" + "href": "http://stark.test/tobias.romaguera", + "label": "Robin Gardner" } ], "value_checks": null, @@ -6339,7 +6516,7 @@ "Description of an error when unassigning a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID c226bcb7-6e1b-4444-a188-534ef062cf73" + "V2::Rule not found with ID e05d290f-7c4b-42ab-a38d-a06aabcc9f96" ] }, "summary": "", @@ -6443,92 +6620,92 @@ "value": { "data": [ { - "id": "05505233-4602-418e-ae59-156077c685c7", + "id": "0bb6628e-97d1-496c-989c-b46686bbbbdc", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Aut error velit aut.", - "version": "100.82.0", - "description": "Sint dolorem amet. Odio non facere. Accusantium quia dicta.", + "title": "Accusamus voluptates ratione ex.", + "version": "100.82.40", + "description": "Dignissimos nihil ut. Officia dolor quasi. Amet quis qui.", "os_major_version": 7, "type": "security_guide" }, { - "id": "12f012c4-33fa-4761-8430-2e42e7c32cb9", + "id": "0f06228d-5102-41ca-8038-04e1bec5606e", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Consequatur ea voluptatem id.", - "version": "100.81.44", - "description": "Sed est omnis. Facilis dolorum aut. Repellat possimus et.", + "title": "Consequatur natus vel accusamus.", + "version": "100.82.38", + "description": "Optio necessitatibus vero. Rem voluptas sapiente. Enim voluptatem tempora.", "os_major_version": 7, "type": "security_guide" }, { - "id": "14ad865c-6088-4b34-bbd0-a85ee279efb7", + "id": "14db9fa7-59ae-4821-ad1f-6ab121cff72b", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Est enim dolores placeat.", - "version": "100.81.38", - "description": "Explicabo voluptatem sunt. Ipsum eveniet et. Modi laboriosam ea.", + "title": "Iste inventore aut quia.", + "version": "100.82.48", + "description": "Ut enim voluptatem. Ut molestias sed. Facilis cum cupiditate.", "os_major_version": 7, "type": "security_guide" }, { - "id": "18937777-cf8a-43a6-a2bd-0ddcb304436c", + "id": "215db2dd-c416-4e04-910f-038e6eda9433", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Incidunt veritatis saepe doloremque.", - "version": "100.81.33", - "description": "Autem ut ut. Veritatis ab veniam. Impedit sunt vitae.", + "title": "Impedit natus est et.", + "version": "100.82.33", + "description": "Dicta delectus doloremque. Et aut rerum. Quam aliquid est.", "os_major_version": 7, "type": "security_guide" }, { - "id": "25094454-2ca1-4aa1-acf3-1d718fb5e342", + "id": "24b2e5bf-9a1f-4a32-ae81-0733f091ccdd", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Officiis in fugit libero.", - "version": "100.81.42", - "description": "Dolore alias nihil. Excepturi doloremque fugiat. Ullam aperiam placeat.", + "title": "Autem dicta et reiciendis.", + "version": "100.82.34", + "description": "Velit hic voluptate. Quod non nostrum. Laborum eveniet labore.", "os_major_version": 7, "type": "security_guide" }, { - "id": "270a9bbd-5a6b-4772-9a64-743ea70e3ab7", + "id": "48f7829b-8089-4086-9b82-642f25e293a1", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Ullam nemo aut sit.", - "version": "100.81.37", - "description": "Illum distinctio numquam. Dolore ipsum officiis. Neque dolores blanditiis.", + "title": "Aliquam ipsum rerum ipsam.", + "version": "100.82.42", + "description": "Autem aliquid eos. Unde vitae quia. Quasi sint voluptate.", "os_major_version": 7, "type": "security_guide" }, { - "id": "271f15bf-2d6b-4ac6-af9d-7734dbccd5b2", + "id": "4de60e36-c672-458f-a740-cf26b590b46c", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Nulla eligendi animi maiores.", - "version": "100.82.1", - "description": "Libero et nihil. Ex at sit. Repudiandae unde et.", + "title": "Deserunt ut repudiandae eos.", + "version": "100.82.41", + "description": "Adipisci corporis vel. Deserunt quisquam reiciendis. Qui est omnis.", "os_major_version": 7, "type": "security_guide" }, { - "id": "37665761-6233-4ffb-a991-c54e405ca4ea", + "id": "5294868a-b8a3-4bf7-a96b-62cf1bff986f", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Qui recusandae est fuga.", - "version": "100.81.40", - "description": "Illum odit maiores. Ea quidem eum. Dicta culpa aut.", + "title": "Itaque laborum nam ipsa.", + "version": "100.82.30", + "description": "Facilis aliquid qui. Architecto laboriosam facere. Perspiciatis est fugiat.", "os_major_version": 7, "type": "security_guide" }, { - "id": "379d9117-32e6-4a4f-9a5e-5992f12d96c9", + "id": "5ad7f14a-30c8-4fd5-810f-57cf6880ce74", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Quisquam dolor eligendi et.", - "version": "100.81.41", - "description": "Pariatur architecto ad. Animi fuga libero. Commodi ea explicabo.", + "title": "Ut nihil in repudiandae.", + "version": "100.83.0", + "description": "Ut blanditiis delectus. Hic doloribus quia. Qui facere cupiditate.", "os_major_version": 7, "type": "security_guide" }, { - "id": "449b20a3-e929-48de-9bcd-728759eb40dc", + "id": "5b12127c-cdb0-4a1f-b366-94e462ca959a", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Cupiditate incidunt totam aliquid.", - "version": "100.81.35", - "description": "Omnis officia qui. Dolor distinctio molestiae. Odit cumque aut.", + "title": "Animi minima magni rerum.", + "version": "100.82.31", + "description": "Autem quibusdam voluptatem. Quibusdam enim totam. Voluptas suscipit vel.", "os_major_version": 7, "type": "security_guide" } @@ -6551,92 +6728,92 @@ "value": { "data": [ { - "id": "0704a1fb-fbd4-4ff1-bb94-7e33f61aca8b", + "id": "0cd7586e-03d4-40b9-a857-666d1bba9972", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Magni molestiae quo excepturi.", - "version": "100.82.24", - "description": "Voluptas quidem error. Animi architecto voluptatem. Eaque illo dolores.", + "title": "Tenetur ut saepe aut.", + "version": "100.83.25", + "description": "Earum quam error. Atque qui consequatur. Accusantium totam ut.", "os_major_version": 7, "type": "security_guide" }, { - "id": "08d9b5d6-e451-4d57-9606-b5d3511798e0", + "id": "12f63805-1098-495c-8edd-da81744d93ee", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Aut officiis molestias architecto.", - "version": "100.82.16", - "description": "Omnis excepturi sed. Iure ut soluta. Sed vel est.", + "title": "Qui odit voluptate dolores.", + "version": "100.83.21", + "description": "Ipsam illo explicabo. Odit veritatis quae. Est quis dolor.", "os_major_version": 7, "type": "security_guide" }, { - "id": "0905d96c-5575-400e-8dcc-9b3361440ae2", + "id": "29f48b04-7e3c-4293-a05c-011e09477bf0", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Nostrum tempora et expedita.", - "version": "100.82.22", - "description": "Nemo saepe unde. Perspiciatis officiis quia. Sequi eum asperiores.", + "title": "Possimus modi exercitationem aut.", + "version": "100.83.18", + "description": "Nisi quaerat sed. Et necessitatibus aut. Nulla in quisquam.", "os_major_version": 7, "type": "security_guide" }, { - "id": "0f372477-a977-40c0-a30f-f28575b859d9", + "id": "2a7c7a5a-a720-467f-91d1-0f1864c7f5ce", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Rerum aut modi minus.", - "version": "100.82.6", - "description": "Est qui aut. Est et ratione. Aut dolor consectetur.", + "title": "Aliquid doloribus optio cumque.", + "version": "100.83.4", + "description": "Porro sint dolor. Laborum tempora dolorum. Eius aperiam fuga.", "os_major_version": 7, "type": "security_guide" }, { - "id": "106e1059-8426-47d5-b044-5fcc7876ff4b", + "id": "3b88fd4d-6c95-4e0b-9783-311c39d0be5b", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Labore nesciunt eaque qui.", - "version": "100.82.17", - "description": "Et maxime perspiciatis. Cumque perspiciatis repellat. Nemo incidunt voluptates.", + "title": "Eos odio quaerat sint.", + "version": "100.83.19", + "description": "Ab esse doloremque. Quia tenetur eum. Quasi est dolorem.", "os_major_version": 7, "type": "security_guide" }, { - "id": "122ef0aa-c8d9-4a3b-ab05-04f931fa357e", + "id": "3c569125-5abc-45aa-90d9-3d9582fa1e16", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Tempore vitae libero odio.", - "version": "100.82.28", - "description": "Ut delectus quod. Quia voluptatem tenetur. Excepturi sint error.", + "title": "Omnis est odit quasi.", + "version": "100.83.22", + "description": "Maiores explicabo velit. Consectetur enim quo. Exercitationem explicabo ducimus.", "os_major_version": 7, "type": "security_guide" }, { - "id": "19d07730-08a8-4b4f-8481-74c9047d048a", + "id": "47236c4b-64a2-4e1b-aac7-56f7356c780d", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Odio molestiae occaecati delectus.", - "version": "100.82.26", - "description": "Laborum nisi qui. Fugit error corporis. Necessitatibus ad ut.", + "title": "Voluptates nesciunt inventore id.", + "version": "100.83.7", + "description": "Aperiam quo eum. Aut dolorum facilis. Et voluptatem omnis.", "os_major_version": 7, "type": "security_guide" }, { - "id": "1bc001a6-6c39-4335-8df7-c30621e4b797", + "id": "483eb6b3-bcc2-44c3-b84f-6de828bc72c4", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Illo rerum necessitatibus cum.", - "version": "100.82.20", - "description": "Velit qui est. Et voluptatem sint. Est et doloribus.", + "title": "Esse sunt voluptatem quas.", + "version": "100.83.11", + "description": "Numquam rerum est. Omnis modi et. Vitae molestias consectetur.", "os_major_version": 7, "type": "security_guide" }, { - "id": "31f4e9d7-0a5f-4d30-a9be-1331e4b3c257", + "id": "5020ec32-0b50-48e4-859a-f020e15d9c25", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Unde et tenetur nostrum.", - "version": "100.82.18", - "description": "Velit veniam aut. Voluptas molestiae eum. Voluptas perferendis doloremque.", + "title": "Inventore odio dolores et.", + "version": "100.83.14", + "description": "Numquam architecto dolores. Aspernatur necessitatibus et. Eos et sunt.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3be97357-b387-468d-a992-b87c52c0130f", + "id": "55a9f55b-b2e5-461c-a8a4-3fbbc7d537e6", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Voluptates fuga nisi in.", - "version": "100.82.27", - "description": "Incidunt qui cum. Quam ratione dolorem. Tempore quaerat in.", + "title": "Repudiandae non ipsa ipsum.", + "version": "100.83.6", + "description": "Consequatur qui occaecati. Cupiditate ab adipisci. Eum deserunt architecto.", "os_major_version": 7, "type": "security_guide" } @@ -6820,11 +6997,11 @@ "Returns a Security Guide": { "value": { "data": { - "id": "c10cba2a-c2f3-4267-8d9a-1157e4f71564", + "id": "ab160e79-42a7-49e9-bcf4-a227d23c3b05", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Eum similique aliquid qui.", - "version": "100.84.31", - "description": "Nam totam sint. Facilis quia laborum. Iste et omnis.", + "title": "Consequatur aut id pariatur.", + "version": "100.85.27", + "description": "Fugiat voluptatem aperiam. Enim cupiditate occaecati. Et sed libero.", "os_major_version": 7, "type": "security_guide" } @@ -6857,7 +7034,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID 74e43de0-f9c9-4c1c-a2b9-4c3c746b1990" + "V2::SecurityGuide not found with ID 881b2ba3-ae62-4b49-b9cd-4fa64873a0dd" ] }, "summary": "", @@ -6901,108 +7078,108 @@ "operationId": "SecurityGuideRuleTree", "responses": { "200": { - "description": "Returns a the Rule Tree of Security Guide", + "description": "Returns the Rule Tree of a Security Guide", "content": { "application/vnd.api+json": { "examples": { "Returns the Rule Tree of a Security Guide": { "value": [ { - "id": "46eb4d03-96bc-4271-aabb-7d9899ac5c81", + "id": "8c97573a-4dec-48ef-929e-fd966d684532", "type": "rule_group", "children": [ { - "id": "2306a74d-b327-464c-b97c-336436ed320b", + "id": "b5634b9a-0fb2-49ee-82f9-9e3b9359d1dc", "type": "rule" } ] }, { - "id": "ebc18dbe-6c49-44cb-9462-2c239b16a029", + "id": "150a3468-b608-4a29-916f-006abf3fba79", "type": "rule_group", "children": [ { - "id": "62b60306-b0a7-42cf-b6d2-56ef3fb6b761", + "id": "8c771461-2909-4dd8-a0c0-c50c7955ec39", "type": "rule" } ] }, { - "id": "5e9d9503-1550-4b6e-b17f-c0a7ed909715", + "id": "038fe3e8-5f10-4416-bd42-9a395808ee12", "type": "rule_group", "children": [ { - "id": "fae71b59-1f9a-4abf-b2ea-7efe291e7bcc", + "id": "1b5f98cc-5b5d-449d-85c3-0368c9c321e1", "type": "rule" } ] }, { - "id": "c6476dcb-7742-4591-b69b-0bc6e0654c44", + "id": "1624291b-1b53-4a93-ab89-88609ddea547", "type": "rule_group", "children": [ { - "id": "25b3071e-9923-491b-9ae2-42d35cb8d8b1", + "id": "6a3a7ea8-faf3-4bcb-9578-7d99d29518be", "type": "rule" } ] }, { - "id": "dcfc0127-f76d-49d1-940c-c4d0876b1888", + "id": "18dbf897-316f-4d02-8be3-042b9684c69c", "type": "rule_group", "children": [ { - "id": "bec84164-dbb7-44f5-9404-ab850d8a5022", + "id": "7435cbd2-6eef-4d63-bdf3-39dd2e918b77", "type": "rule" } ] }, { - "id": "d0ef3087-858c-418f-a770-32a014558e03", + "id": "c740fe9a-89b6-4ad6-8456-0d2b4836e392", "type": "rule_group", "children": [ { - "id": "3ffb7a6c-55bc-4949-97ae-e0ba8d4437b4", + "id": "37af109c-5a29-44f5-a731-2acb5943b9b7", "type": "rule" } ] }, { - "id": "5d965513-c824-491c-915b-7d06f5b359ff", + "id": "7b7001b8-b772-4d63-ba83-85ee768f54bb", "type": "rule_group", "children": [ { - "id": "2ea28907-dfe9-4748-9cea-0a89df0ee64a", + "id": "5b070249-594a-451d-a57f-b3d52265829c", "type": "rule" } ] }, { - "id": "f58f8b48-861f-4a27-8ff2-ccd6c1c89b83", + "id": "5ac5a70c-0672-476a-950a-c71968c66cb6", "type": "rule_group", "children": [ { - "id": "524ed744-9fba-4fab-821e-83b6a3f9a30a", + "id": "4ad47855-f728-408e-89f5-582f0daa414a", "type": "rule" } ] }, { - "id": "9e25518b-8059-4af1-b371-8bf3308f4ce8", + "id": "50b613da-8090-40e2-8b59-2205511fa73a", "type": "rule_group", "children": [ { - "id": "9cf24fd1-8a3b-485e-a050-c4c5aae4618a", + "id": "cfeaed55-5e43-4677-b39d-9d778407db0f", "type": "rule" } ] }, { - "id": "0268dde5-1cb6-454d-a5ac-deaed152fac2", + "id": "cb792c89-2dce-4ad0-9035-49b1f47eacb4", "type": "rule_group", "children": [ { - "id": "2832cc2f-4062-4141-82cf-74523729d0ba", + "id": "3cd5c386-c151-4b4d-8395-81679712429a", "type": "rule" } ] @@ -7026,7 +7203,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID 2397569f-7486-4ddb-a849-dbcd2ce6eb8d" + "V2::SecurityGuide not found with ID 31258442-2d50-47f7-8ad2-b76bfa424b64" ] }, "summary": "", @@ -7133,12 +7310,12 @@ "value": { "data": [ { - "id": "c98f63a1-23f4-4d9f-87c0-1f651b3c5032", - "title": "Sint et labore a.", - "description": "Laboriosam mollitia et. Libero omnis quis. Quae repellendus fugit.", - "ref_id": "xccdf_org.ssgproject.content_profile_e3e89bd69e32b37992e885e817d6b194", - "security_guide_id": "1809ca6c-374e-434e-b691-b6013065cea7", - "security_guide_version": "100.85.8", + "id": "be71fa06-6299-4ffc-837d-fb80c1478115", + "title": "Voluptatum tenetur enim et.", + "description": "Reprehenderit sed odit. Dolor id ex. Quibusdam quod facilis.", + "ref_id": "xccdf_org.ssgproject.content_profile_78bb0de307a35788815b4db0e12ebf82", + "security_guide_id": "12c9ff11-e28f-400e-8ed6-aa30e49ccd63", + "security_guide_version": "100.86.17", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7165,12 +7342,12 @@ "value": { "data": [ { - "id": "de7ab84d-d8f5-443f-992f-1a687e8411f6", - "title": "Voluptates ea nesciunt excepturi.", - "description": "Sit eos et. Modi quae delectus. Veniam id molestiae.", - "ref_id": "xccdf_org.ssgproject.content_profile_dc34613e5424c3c533569e35835c9e07", - "security_guide_id": "71d4822d-e34d-4ae6-96fb-f8f0aaf5ec4a", - "security_guide_version": "100.85.9", + "id": "b20d48ad-16a4-47d0-a034-8ae590f43868", + "title": "Voluptas culpa velit quae.", + "description": "Non libero voluptate. Vitae laudantium ut. Vel occaecati rerum.", + "ref_id": "xccdf_org.ssgproject.content_profile_5c94f7fbdcd904f344f20d2e46e235f6", + "security_guide_id": "aee32e0d-37da-46a1-b7ee-9508b993d9f2", + "security_guide_version": "100.86.18", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7375,39 +7552,39 @@ "value": { "data": [ { - "id": "16c8b3ce-a9ed-439c-abc8-97ad80f9b0d4", - "display_name": "bogan.example", + "id": "0998eb68-0ea5-4233-9220-3bf9982f0184", + "display_name": "ritchie.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.248Z", - "stale_timestamp": "2034-10-08T11:32:32.248Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.248Z", - "updated": "2024-10-08T11:32:32.248Z", + "culled_timestamp": "2034-10-25T14:38:21.136Z", + "stale_timestamp": "2034-10-11T14:38:21.136Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.136Z", + "updated": "2024-10-11T14:38:21.136Z", "insights_id": null, "tags": [ { "key": "panel", - "value": "neural", - "namespace": "overriding" + "value": "redundant", + "namespace": "backing up" }, { - "key": "pixel", - "value": "mobile", - "namespace": "programming" + "key": "panel", + "value": "haptic", + "namespace": "calculating" }, { - "key": "protocol", - "value": "solid state", - "namespace": "backing up" + "key": "circuit", + "value": "optical", + "namespace": "calculating" }, { - "key": "bus", + "key": "card", "value": "online", - "namespace": "compressing" + "namespace": "indexing" }, { - "key": "array", - "value": "virtual", - "namespace": "copying" + "key": "panel", + "value": "bluetooth", + "namespace": "programming" } ], "type": "system", @@ -7416,39 +7593,39 @@ "policies": [] }, { - "id": "21d8a284-579c-4490-b7f5-8c124f3522bb", - "display_name": "runte.test", + "id": "11bccbee-88c0-486e-ad4a-b90e81fd2a79", + "display_name": "hyatt.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.247Z", - "stale_timestamp": "2034-10-08T11:32:32.247Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.247Z", - "updated": "2024-10-08T11:32:32.247Z", + "culled_timestamp": "2034-10-25T14:38:21.138Z", + "stale_timestamp": "2034-10-11T14:38:21.138Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.138Z", + "updated": "2024-10-11T14:38:21.138Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "optical", - "namespace": "quantifying" - }, - { - "key": "bandwidth", + "key": "program", "value": "primary", "namespace": "generating" }, { - "key": "firewall", - "value": "optical", - "namespace": "programming" + "key": "monitor", + "value": "bluetooth", + "namespace": "parsing" }, { - "key": "matrix", - "value": "auxiliary", + "key": "system", + "value": "mobile", "namespace": "copying" }, { - "key": "feed", - "value": "wireless", - "namespace": "generating" + "key": "transmitter", + "value": "haptic", + "namespace": "synthesizing" + }, + { + "key": "interface", + "value": "redundant", + "namespace": "parsing" } ], "type": "system", @@ -7457,38 +7634,38 @@ "policies": [] }, { - "id": "42955a86-e90c-41a3-a599-727ad78d60a2", - "display_name": "sporer.test", + "id": "22c4804a-68f3-422f-9097-05c798549481", + "display_name": "goyette.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.256Z", - "stale_timestamp": "2034-10-08T11:32:32.256Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.256Z", - "updated": "2024-10-08T11:32:32.256Z", + "culled_timestamp": "2034-10-25T14:38:21.132Z", + "stale_timestamp": "2034-10-11T14:38:21.132Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.132Z", + "updated": "2024-10-11T14:38:21.133Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "back-end", - "namespace": "parsing" + "key": "array", + "value": "wireless", + "namespace": "overriding" }, { - "key": "interface", - "value": "multi-byte", - "namespace": "synthesizing" + "key": "microchip", + "value": "primary", + "namespace": "hacking" }, { - "key": "circuit", - "value": "solid state", - "namespace": "transmitting" + "key": "bus", + "value": "redundant", + "namespace": "indexing" }, { - "key": "pixel", - "value": "auxiliary", - "namespace": "connecting" + "key": "alarm", + "value": "digital", + "namespace": "hacking" }, { - "key": "application", - "value": "multi-byte", + "key": "capacitor", + "value": "primary", "namespace": "overriding" } ], @@ -7498,39 +7675,39 @@ "policies": [] }, { - "id": "5b81c3e3-b1b7-4f63-b21a-95ec86871588", - "display_name": "oreilly.test", + "id": "2944633a-66c1-4a3a-b763-e4dcce40b0c6", + "display_name": "schuppe-ruecker.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.256Z", - "stale_timestamp": "2034-10-08T11:32:32.256Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.256Z", - "updated": "2024-10-08T11:32:32.256Z", + "culled_timestamp": "2034-10-25T14:38:21.130Z", + "stale_timestamp": "2034-10-11T14:38:21.130Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.130Z", + "updated": "2024-10-11T14:38:21.130Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "haptic", - "namespace": "navigating" + "key": "matrix", + "value": "open-source", + "namespace": "backing up" }, { - "key": "hard drive", - "value": "haptic", - "namespace": "indexing" + "key": "port", + "value": "bluetooth", + "namespace": "connecting" }, { - "key": "monitor", - "value": "digital", - "namespace": "backing up" + "key": "driver", + "value": "solid state", + "namespace": "parsing" }, { - "key": "driver", + "key": "panel", "value": "open-source", - "namespace": "backing up" + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "neural", - "namespace": "compressing" + "key": "program", + "value": "virtual", + "namespace": "hacking" } ], "type": "system", @@ -7539,39 +7716,39 @@ "policies": [] }, { - "id": "688e6bcb-e9ed-4ddd-823b-cc9423634a9d", - "display_name": "maggio-heaney.test", + "id": "2c68bdc0-f9eb-4340-b344-c1f4d097e59a", + "display_name": "green.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.246Z", - "stale_timestamp": "2034-10-08T11:32:32.246Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.246Z", - "updated": "2024-10-08T11:32:32.246Z", + "culled_timestamp": "2034-10-25T14:38:21.149Z", + "stale_timestamp": "2034-10-11T14:38:21.149Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.149Z", + "updated": "2024-10-11T14:38:21.149Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "bluetooth", - "namespace": "bypassing" + "key": "bus", + "value": "solid state", + "namespace": "copying" }, { - "key": "system", - "value": "digital", - "namespace": "calculating" + "key": "driver", + "value": "bluetooth", + "namespace": "quantifying" }, { - "key": "firewall", - "value": "digital", - "namespace": "generating" + "key": "capacitor", + "value": "1080p", + "namespace": "calculating" }, { - "key": "alarm", + "key": "hard drive", "value": "optical", - "namespace": "synthesizing" + "namespace": "overriding" }, { - "key": "program", - "value": "back-end", - "namespace": "compressing" + "key": "bus", + "value": "1080p", + "namespace": "calculating" } ], "type": "system", @@ -7580,39 +7757,39 @@ "policies": [] }, { - "id": "6eb667ec-e6a1-4f98-82e0-09789c9e7ba8", - "display_name": "mann.test", + "id": "2c96bc72-f5ec-4fad-aff0-1e809c81264a", + "display_name": "macgyver.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.257Z", - "stale_timestamp": "2034-10-08T11:32:32.257Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.257Z", - "updated": "2024-10-08T11:32:32.257Z", + "culled_timestamp": "2034-10-25T14:38:21.154Z", + "stale_timestamp": "2034-10-11T14:38:21.154Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.154Z", + "updated": "2024-10-11T14:38:21.155Z", "insights_id": null, "tags": [ { - "key": "bandwidth", + "key": "driver", + "value": "optical", + "namespace": "quantifying" + }, + { + "key": "card", "value": "primary", - "namespace": "overriding" + "namespace": "connecting" }, { "key": "monitor", - "value": "multi-byte", - "namespace": "navigating" + "value": "auxiliary", + "namespace": "compressing" }, { - "key": "microchip", - "value": "mobile", - "namespace": "programming" + "key": "hard drive", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "array", - "value": "multi-byte", + "key": "protocol", + "value": "open-source", "namespace": "transmitting" - }, - { - "key": "bus", - "value": "optical", - "namespace": "connecting" } ], "type": "system", @@ -7621,39 +7798,39 @@ "policies": [] }, { - "id": "6fb4fbf8-f0af-46ad-9f38-3dc10ad7bd1d", - "display_name": "hand-abernathy.test", + "id": "35ab8e4d-6025-49be-800a-4b03348bf3c3", + "display_name": "adams.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.252Z", - "stale_timestamp": "2034-10-08T11:32:32.252Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.252Z", - "updated": "2024-10-08T11:32:32.252Z", + "culled_timestamp": "2034-10-25T14:38:21.148Z", + "stale_timestamp": "2034-10-11T14:38:21.148Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.148Z", + "updated": "2024-10-11T14:38:21.148Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "haptic", - "namespace": "calculating" + "key": "transmitter", + "value": "auxiliary", + "namespace": "synthesizing" }, { - "key": "driver", - "value": "neural", - "namespace": "parsing" + "key": "transmitter", + "value": "mobile", + "namespace": "connecting" }, { - "key": "driver", - "value": "back-end", + "key": "program", + "value": "wireless", "namespace": "calculating" }, { - "key": "sensor", - "value": "mobile", - "namespace": "quantifying" + "key": "system", + "value": "open-source", + "namespace": "programming" }, { - "key": "capacitor", - "value": "virtual", - "namespace": "compressing" + "key": "port", + "value": "back-end", + "namespace": "generating" } ], "type": "system", @@ -7662,39 +7839,39 @@ "policies": [] }, { - "id": "8ad31942-ac51-4fbe-a59d-89f79283e3cf", - "display_name": "mcdermott.example", + "id": "388245d3-045d-45be-902a-3cb0956ef665", + "display_name": "murazik-green.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.251Z", - "stale_timestamp": "2034-10-08T11:32:32.251Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.251Z", - "updated": "2024-10-08T11:32:32.251Z", + "culled_timestamp": "2034-10-25T14:38:21.152Z", + "stale_timestamp": "2034-10-11T14:38:21.152Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.152Z", + "updated": "2024-10-11T14:38:21.152Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "redundant", - "namespace": "backing up" + "key": "matrix", + "value": "primary", + "namespace": "navigating" }, { - "key": "circuit", - "value": "solid state", - "namespace": "connecting" + "key": "feed", + "value": "neural", + "namespace": "compressing" }, { - "key": "microchip", - "value": "redundant", - "namespace": "generating" + "key": "bus", + "value": "multi-byte", + "namespace": "programming" }, { - "key": "microchip", - "value": "online", - "namespace": "generating" + "key": "circuit", + "value": "digital", + "namespace": "backing up" }, { - "key": "array", - "value": "1080p", - "namespace": "synthesizing" + "key": "system", + "value": "optical", + "namespace": "backing up" } ], "type": "system", @@ -7703,39 +7880,39 @@ "policies": [] }, { - "id": "9d8ce2ba-b1c8-4a62-928c-a4da891a98d1", - "display_name": "king-harvey.test", + "id": "429e4f70-53ec-4886-b92c-a780757e4f2d", + "display_name": "hessel.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.262Z", - "stale_timestamp": "2034-10-08T11:32:32.262Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.262Z", - "updated": "2024-10-08T11:32:32.262Z", + "culled_timestamp": "2034-10-25T14:38:21.125Z", + "stale_timestamp": "2034-10-11T14:38:21.125Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.125Z", + "updated": "2024-10-11T14:38:21.125Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "virtual", - "namespace": "transmitting" + "key": "port", + "value": "back-end", + "namespace": "compressing" }, { - "key": "bandwidth", - "value": "redundant", - "namespace": "generating" + "key": "capacitor", + "value": "mobile", + "namespace": "compressing" }, { - "key": "interface", - "value": "optical", - "namespace": "compressing" + "key": "card", + "value": "wireless", + "namespace": "navigating" }, { - "key": "panel", - "value": "solid state", - "namespace": "parsing" + "key": "sensor", + "value": "primary", + "namespace": "overriding" }, { - "key": "system", - "value": "back-end", - "namespace": "hacking" + "key": "firewall", + "value": "1080p", + "namespace": "compressing" } ], "type": "system", @@ -7744,39 +7921,39 @@ "policies": [] }, { - "id": "a0db9dcf-56ec-40ff-afa3-5ee9957b17d0", - "display_name": "emmerich-okon.example", + "id": "4ddc3f78-4e30-4258-9702-6d70d753b5af", + "display_name": "runte.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.252Z", - "stale_timestamp": "2034-10-08T11:32:32.252Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.252Z", - "updated": "2024-10-08T11:32:32.252Z", + "culled_timestamp": "2034-10-25T14:38:21.134Z", + "stale_timestamp": "2034-10-11T14:38:21.134Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.134Z", + "updated": "2024-10-11T14:38:21.134Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "digital", - "namespace": "transmitting" + "key": "protocol", + "value": "mobile", + "namespace": "synthesizing" }, { - "key": "application", - "value": "primary", - "namespace": "transmitting" + "key": "sensor", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "circuit", - "value": "redundant", - "namespace": "overriding" + "key": "system", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "system", - "value": "online", - "namespace": "programming" + "key": "port", + "value": "wireless", + "namespace": "compressing" }, { - "key": "circuit", - "value": "mobile", - "namespace": "hacking" + "key": "monitor", + "value": "open-source", + "namespace": "copying" } ], "type": "system", @@ -7804,39 +7981,39 @@ "value": { "data": [ { - "id": "011655fb-fd8e-42f3-ad3a-ac4d6f1f59d5", - "display_name": "mcglynn.example", + "id": "0426c537-72e1-49e6-ac7d-9975ba1bd5db", + "display_name": "bauch.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.297Z", - "stale_timestamp": "2034-10-08T11:32:32.297Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.297Z", - "updated": "2024-10-08T11:32:32.297Z", + "culled_timestamp": "2034-10-25T14:38:21.225Z", + "stale_timestamp": "2034-10-11T14:38:21.225Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.225Z", + "updated": "2024-10-11T14:38:21.225Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "primary", - "namespace": "connecting" + "key": "matrix", + "value": "neural", + "namespace": "calculating" }, { - "key": "feed", - "value": "optical", - "namespace": "overriding" + "key": "system", + "value": "neural", + "namespace": "calculating" }, { - "key": "alarm", - "value": "bluetooth", + "key": "microchip", + "value": "primary", "namespace": "parsing" }, { - "key": "protocol", - "value": "primary", - "namespace": "calculating" + "key": "bandwidth", + "value": "digital", + "namespace": "compressing" }, { - "key": "program", - "value": "solid state", - "namespace": "connecting" + "key": "capacitor", + "value": "virtual", + "namespace": "indexing" } ], "type": "system", @@ -7845,39 +8022,39 @@ "policies": [] }, { - "id": "02c19abb-c1d6-4c80-b8f9-8b6efa53e61d", - "display_name": "pfeffer-effertz.example", + "id": "09c0fc49-a714-49d5-a8a4-b90e34f85beb", + "display_name": "thompson.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.293Z", - "stale_timestamp": "2034-10-08T11:32:32.293Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.293Z", - "updated": "2024-10-08T11:32:32.293Z", + "culled_timestamp": "2034-10-25T14:38:21.217Z", + "stale_timestamp": "2034-10-11T14:38:21.217Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.217Z", + "updated": "2024-10-11T14:38:21.217Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "auxiliary", - "namespace": "indexing" + "key": "capacitor", + "value": "open-source", + "namespace": "parsing" }, { - "key": "interface", - "value": "multi-byte", - "namespace": "compressing" + "key": "system", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "application", - "value": "primary", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "digital", + "namespace": "transmitting" }, { - "key": "capacitor", - "value": "cross-platform", - "namespace": "parsing" + "key": "bus", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "interface", - "value": "solid state", - "namespace": "connecting" + "key": "transmitter", + "value": "cross-platform", + "namespace": "hacking" } ], "type": "system", @@ -7886,39 +8063,39 @@ "policies": [] }, { - "id": "05962d45-7585-4e85-bf3e-df7ec76ece01", - "display_name": "halvorson.test", + "id": "1bf0c528-34b8-400d-90fe-821267974f3c", + "display_name": "lehner.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.300Z", - "stale_timestamp": "2034-10-08T11:32:32.300Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.300Z", - "updated": "2024-10-08T11:32:32.300Z", + "culled_timestamp": "2034-10-25T14:38:21.229Z", + "stale_timestamp": "2034-10-11T14:38:21.229Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.229Z", + "updated": "2024-10-11T14:38:21.229Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "primary", - "namespace": "generating" + "key": "bus", + "value": "1080p", + "namespace": "indexing" }, { - "key": "array", - "value": "digital", - "namespace": "quantifying" - }, + "key": "hard drive", + "value": "virtual", + "namespace": "hacking" + }, { - "key": "panel", - "value": "back-end", - "namespace": "indexing" + "key": "firewall", + "value": "redundant", + "namespace": "calculating" }, { - "key": "array", - "value": "mobile", - "namespace": "quantifying" + "key": "hard drive", + "value": "auxiliary", + "namespace": "overriding" }, { - "key": "protocol", - "value": "1080p", - "namespace": "compressing" + "key": "system", + "value": "primary", + "namespace": "connecting" } ], "type": "system", @@ -7927,38 +8104,38 @@ "policies": [] }, { - "id": "2d65c583-d866-4828-a101-2cee46c82a39", - "display_name": "ward.test", + "id": "25442e6b-d1e9-40b6-972f-bfb3070aa2bd", + "display_name": "cronin-predovic.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.288Z", - "stale_timestamp": "2034-10-08T11:32:32.288Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.288Z", - "updated": "2024-10-08T11:32:32.288Z", + "culled_timestamp": "2034-10-25T14:38:21.206Z", + "stale_timestamp": "2034-10-11T14:38:21.206Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.206Z", + "updated": "2024-10-11T14:38:21.206Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "bluetooth", - "namespace": "generating" + "key": "driver", + "value": "virtual", + "namespace": "backing up" }, { - "key": "alarm", - "value": "haptic", - "namespace": "quantifying" + "key": "matrix", + "value": "primary", + "namespace": "calculating" }, { - "key": "bus", - "value": "mobile", - "namespace": "indexing" + "key": "feed", + "value": "primary", + "namespace": "compressing" }, { - "key": "program", - "value": "haptic", - "namespace": "overriding" + "key": "hard drive", + "value": "digital", + "namespace": "connecting" }, { - "key": "panel", - "value": "back-end", + "key": "circuit", + "value": "virtual", "namespace": "hacking" } ], @@ -7968,39 +8145,39 @@ "policies": [] }, { - "id": "388c0c36-b3bf-48b1-845f-2338f7bfeb52", - "display_name": "durgan-denesik.test", + "id": "2e1ab800-d2f8-4c54-92cc-cebec7239fa4", + "display_name": "rohan-rau.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.285Z", - "stale_timestamp": "2034-10-08T11:32:32.285Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.285Z", - "updated": "2024-10-08T11:32:32.285Z", + "culled_timestamp": "2034-10-25T14:38:21.212Z", + "stale_timestamp": "2034-10-11T14:38:21.212Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.212Z", + "updated": "2024-10-11T14:38:21.212Z", "insights_id": null, "tags": [ { - "key": "panel", + "key": "port", "value": "virtual", - "namespace": "transmitting" + "namespace": "copying" }, { "key": "protocol", - "value": "mobile", - "namespace": "hacking" - }, - { - "key": "alarm", - "value": "haptic", - "namespace": "parsing" + "value": "digital", + "namespace": "calculating" }, { "key": "capacitor", "value": "wireless", - "namespace": "compressing" + "namespace": "overriding" }, { - "key": "feed", - "value": "primary", - "namespace": "synthesizing" + "key": "driver", + "value": "1080p", + "namespace": "hacking" + }, + { + "key": "program", + "value": "virtual", + "namespace": "compressing" } ], "type": "system", @@ -8009,39 +8186,39 @@ "policies": [] }, { - "id": "549790e3-1195-44fc-953f-b194a6d75531", - "display_name": "dicki-wilderman.example", + "id": "37c2fcb8-94d5-4bf5-a19c-bfde5967e1fe", + "display_name": "oconner.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.303Z", - "stale_timestamp": "2034-10-08T11:32:32.303Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.303Z", - "updated": "2024-10-08T11:32:32.303Z", + "culled_timestamp": "2034-10-25T14:38:21.219Z", + "stale_timestamp": "2034-10-11T14:38:21.219Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.219Z", + "updated": "2024-10-11T14:38:21.219Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "wireless", - "namespace": "navigating" + "key": "pixel", + "value": "redundant", + "namespace": "compressing" }, { - "key": "circuit", - "value": "redundant", - "namespace": "connecting" + "key": "panel", + "value": "mobile", + "namespace": "copying" }, { - "key": "alarm", - "value": "redundant", - "namespace": "bypassing" + "key": "protocol", + "value": "solid state", + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "wireless", - "namespace": "generating" + "key": "circuit", + "value": "neural", + "namespace": "indexing" }, { - "key": "firewall", - "value": "cross-platform", - "namespace": "compressing" + "key": "program", + "value": "wireless", + "namespace": "programming" } ], "type": "system", @@ -8050,39 +8227,39 @@ "policies": [] }, { - "id": "5838c4e7-6b3c-43de-a249-cdd37fbc1506", - "display_name": "nolan.example", + "id": "402511e9-1910-40ec-91c3-4ecb47cca738", + "display_name": "gutkowski.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.290Z", - "stale_timestamp": "2034-10-08T11:32:32.290Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.290Z", - "updated": "2024-10-08T11:32:32.290Z", + "culled_timestamp": "2034-10-25T14:38:21.227Z", + "stale_timestamp": "2034-10-11T14:38:21.227Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.227Z", + "updated": "2024-10-11T14:38:21.227Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "virtual", - "namespace": "bypassing" + "key": "microchip", + "value": "primary", + "namespace": "copying" }, { - "key": "program", - "value": "wireless", - "namespace": "compressing" + "key": "array", + "value": "neural", + "namespace": "navigating" }, { - "key": "application", - "value": "virtual", - "namespace": "navigating" + "key": "bus", + "value": "optical", + "namespace": "parsing" }, { - "key": "firewall", - "value": "multi-byte", - "namespace": "copying" + "key": "bandwidth", + "value": "solid state", + "namespace": "indexing" }, { - "key": "transmitter", - "value": "bluetooth", - "namespace": "compressing" + "key": "array", + "value": "1080p", + "namespace": "hacking" } ], "type": "system", @@ -8091,39 +8268,39 @@ "policies": [] }, { - "id": "58de1d11-913c-493b-b3bc-38e838d44f53", - "display_name": "von.example", + "id": "4d06febc-c0db-40a2-ba15-bc4866500b0a", + "display_name": "swaniawski.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.291Z", - "stale_timestamp": "2034-10-08T11:32:32.291Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.291Z", - "updated": "2024-10-08T11:32:32.291Z", + "culled_timestamp": "2034-10-25T14:38:21.221Z", + "stale_timestamp": "2034-10-11T14:38:21.221Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.221Z", + "updated": "2024-10-11T14:38:21.221Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "digital", - "namespace": "bypassing" + "key": "alarm", + "value": "optical", + "namespace": "synthesizing" }, { - "key": "feed", - "value": "primary", - "namespace": "hacking" + "key": "alarm", + "value": "online", + "namespace": "programming" }, { - "key": "circuit", - "value": "redundant", - "namespace": "connecting" + "key": "capacitor", + "value": "haptic", + "namespace": "indexing" }, { - "key": "pixel", - "value": "back-end", - "namespace": "bypassing" + "key": "interface", + "value": "neural", + "namespace": "quantifying" }, { - "key": "alarm", - "value": "wireless", - "namespace": "hacking" + "key": "hard drive", + "value": "online", + "namespace": "calculating" } ], "type": "system", @@ -8132,39 +8309,39 @@ "policies": [] }, { - "id": "5c251a23-8bb5-4c86-ac64-718c5b3ad89c", - "display_name": "beatty-hermann.example", + "id": "657e6368-8613-4e71-b5d7-5eea650f3e65", + "display_name": "bode-zemlak.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.295Z", - "stale_timestamp": "2034-10-08T11:32:32.295Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.295Z", - "updated": "2024-10-08T11:32:32.295Z", + "culled_timestamp": "2034-10-25T14:38:21.215Z", + "stale_timestamp": "2034-10-11T14:38:21.215Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.215Z", + "updated": "2024-10-11T14:38:21.215Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "bluetooth", - "namespace": "generating" + "key": "hard drive", + "value": "1080p", + "namespace": "programming" }, { - "key": "card", - "value": "redundant", - "namespace": "transmitting" + "key": "capacitor", + "value": "haptic", + "namespace": "navigating" }, { - "key": "matrix", - "value": "bluetooth", - "namespace": "navigating" + "key": "feed", + "value": "wireless", + "namespace": "indexing" }, { - "key": "firewall", - "value": "1080p", + "key": "feed", + "value": "solid state", "namespace": "quantifying" }, { - "key": "bandwidth", - "value": "cross-platform", - "namespace": "quantifying" + "key": "matrix", + "value": "mobile", + "namespace": "hacking" } ], "type": "system", @@ -8173,39 +8350,39 @@ "policies": [] }, { - "id": "643600ed-706e-414b-9357-7cad72b949db", - "display_name": "beatty.example", + "id": "670a7657-a4e5-4648-afa0-4ed38f8915e8", + "display_name": "terry.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.298Z", - "stale_timestamp": "2034-10-08T11:32:32.298Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.298Z", - "updated": "2024-10-08T11:32:32.298Z", + "culled_timestamp": "2034-10-25T14:38:21.232Z", + "stale_timestamp": "2034-10-11T14:38:21.232Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.232Z", + "updated": "2024-10-11T14:38:21.232Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "mobile", - "namespace": "hacking" + "key": "panel", + "value": "solid state", + "namespace": "navigating" }, { - "key": "application", - "value": "haptic", - "namespace": "synthesizing" + "key": "driver", + "value": "primary", + "namespace": "bypassing" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "quantifying" + "key": "monitor", + "value": "online", + "namespace": "overriding" }, { - "key": "bus", - "value": "multi-byte", - "namespace": "hacking" + "key": "port", + "value": "bluetooth", + "namespace": "copying" }, { "key": "capacitor", "value": "bluetooth", - "namespace": "parsing" + "namespace": "programming" } ], "type": "system", @@ -8234,39 +8411,39 @@ "value": { "data": [ { - "id": "157ecedc-27dd-4901-b634-77b047274c7c", - "display_name": "parisian-jones.example", + "id": "03508209-f211-47ed-9f2a-f7f0e46e5d98", + "display_name": "wuckert.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.334Z", - "stale_timestamp": "2034-10-08T11:32:32.334Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.334Z", - "updated": "2024-10-08T11:32:32.334Z", + "culled_timestamp": "2034-10-25T14:38:21.302Z", + "stale_timestamp": "2034-10-11T14:38:21.302Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.302Z", + "updated": "2024-10-11T14:38:21.302Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "mobile", + "key": "transmitter", + "value": "primary", "namespace": "compressing" }, { - "key": "monitor", - "value": "primary", - "namespace": "calculating" + "key": "protocol", + "value": "virtual", + "namespace": "hacking" }, { - "key": "application", - "value": "back-end", - "namespace": "hacking" + "key": "array", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "feed", + "key": "pixel", "value": "1080p", - "namespace": "hacking" + "namespace": "backing up" }, { "key": "system", - "value": "digital", - "namespace": "programming" + "value": "haptic", + "namespace": "navigating" } ], "type": "system", @@ -8275,39 +8452,39 @@ "policies": [] }, { - "id": "26032c97-dc32-451e-bcfd-b6c96d6096b7", - "display_name": "nicolas.test", + "id": "11800707-0806-493d-88a1-1d56c0bc8941", + "display_name": "blick.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.323Z", - "stale_timestamp": "2034-10-08T11:32:32.323Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.323Z", - "updated": "2024-10-08T11:32:32.323Z", + "culled_timestamp": "2034-10-25T14:38:21.289Z", + "stale_timestamp": "2034-10-11T14:38:21.289Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.289Z", + "updated": "2024-10-11T14:38:21.289Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "solid state", + "key": "interface", + "value": "online", "namespace": "generating" }, { - "key": "system", - "value": "mobile", - "namespace": "parsing" + "key": "transmitter", + "value": "multi-byte", + "namespace": "copying" }, { "key": "matrix", - "value": "online", - "namespace": "generating" + "value": "open-source", + "namespace": "hacking" }, { - "key": "pixel", - "value": "bluetooth", + "key": "microchip", + "value": "multi-byte", "namespace": "quantifying" }, { - "key": "alarm", - "value": "back-end", - "namespace": "quantifying" + "key": "system", + "value": "digital", + "namespace": "programming" } ], "type": "system", @@ -8316,39 +8493,39 @@ "policies": [] }, { - "id": "2d199649-bad3-43a8-8241-cd34d981ef9a", - "display_name": "hackett.test", + "id": "2537c964-547f-4fc0-9ebd-2d62f3b8bc2a", + "display_name": "donnelly.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.340Z", - "stale_timestamp": "2034-10-08T11:32:32.340Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.340Z", - "updated": "2024-10-08T11:32:32.340Z", + "culled_timestamp": "2034-10-25T14:38:21.276Z", + "stale_timestamp": "2034-10-11T14:38:21.276Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.276Z", + "updated": "2024-10-11T14:38:21.276Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "wireless", - "namespace": "hacking" + "key": "sensor", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "alarm", - "value": "online", - "namespace": "overriding" + "key": "hard drive", + "value": "haptic", + "namespace": "hacking" }, { - "key": "bus", - "value": "primary", - "namespace": "connecting" + "key": "system", + "value": "1080p", + "namespace": "compressing" }, { - "key": "array", - "value": "virtual", - "namespace": "synthesizing" + "key": "hard drive", + "value": "online", + "namespace": "copying" }, { - "key": "feed", - "value": "optical", - "namespace": "synthesizing" + "key": "system", + "value": "redundant", + "namespace": "indexing" } ], "type": "system", @@ -8357,39 +8534,39 @@ "policies": [] }, { - "id": "3ea426c9-1c9d-490c-924f-cd0894726e24", - "display_name": "kuvalis-leuschke.test", + "id": "30fff379-bb98-43c9-bcfd-7ca050ba29e4", + "display_name": "kling-langworth.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.325Z", - "stale_timestamp": "2034-10-08T11:32:32.325Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.325Z", - "updated": "2024-10-08T11:32:32.325Z", + "culled_timestamp": "2034-10-25T14:38:21.274Z", + "stale_timestamp": "2034-10-11T14:38:21.274Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.274Z", + "updated": "2024-10-11T14:38:21.274Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "digital", - "namespace": "quantifying" + "key": "monitor", + "value": "back-end", + "namespace": "parsing" }, { - "key": "circuit", - "value": "neural", - "namespace": "quantifying" + "key": "microchip", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "interface", - "value": "redundant", - "namespace": "generating" + "key": "bandwidth", + "value": "mobile", + "namespace": "connecting" }, { "key": "microchip", - "value": "redundant", - "namespace": "connecting" + "value": "neural", + "namespace": "quantifying" }, { - "key": "program", - "value": "cross-platform", - "namespace": "connecting" + "key": "microchip", + "value": "digital", + "namespace": "compressing" } ], "type": "system", @@ -8398,39 +8575,39 @@ "policies": [] }, { - "id": "3f7aa879-cfba-4daa-964c-f1addbeb9463", - "display_name": "ernser.example", + "id": "35038704-7ff1-448c-9132-a8af119aa841", + "display_name": "schamberger.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.336Z", - "stale_timestamp": "2034-10-08T11:32:32.336Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.336Z", - "updated": "2024-10-08T11:32:32.336Z", + "culled_timestamp": "2034-10-25T14:38:21.279Z", + "stale_timestamp": "2034-10-11T14:38:21.279Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.279Z", + "updated": "2024-10-11T14:38:21.279Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "bluetooth", - "namespace": "copying" + "key": "system", + "value": "optical", + "namespace": "generating" }, { - "key": "card", - "value": "redundant", - "namespace": "calculating" + "key": "panel", + "value": "digital", + "namespace": "bypassing" }, { - "key": "card", - "value": "optical", - "namespace": "quantifying" + "key": "bus", + "value": "neural", + "namespace": "indexing" }, { - "key": "feed", - "value": "primary", - "namespace": "overriding" + "key": "pixel", + "value": "solid state", + "namespace": "navigating" }, { - "key": "card", - "value": "mobile", - "namespace": "generating" + "key": "system", + "value": "neural", + "namespace": "backing up" } ], "type": "system", @@ -8439,39 +8616,39 @@ "policies": [] }, { - "id": "49c6f0df-ebd9-44c0-b3ae-27c4233dce42", - "display_name": "morissette.test", + "id": "3510e028-3fc2-4114-a958-f78fbee2f4e6", + "display_name": "simonis-homenick.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.326Z", - "stale_timestamp": "2034-10-08T11:32:32.326Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.326Z", - "updated": "2024-10-08T11:32:32.326Z", + "culled_timestamp": "2034-10-25T14:38:21.280Z", + "stale_timestamp": "2034-10-11T14:38:21.280Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.280Z", + "updated": "2024-10-11T14:38:21.280Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "multi-byte", - "namespace": "navigating" - }, - { - "key": "bus", - "value": "online", - "namespace": "parsing" + "key": "firewall", + "value": "wireless", + "namespace": "backing up" }, { - "key": "program", - "value": "multi-byte", - "namespace": "generating" + "key": "card", + "value": "primary", + "namespace": "quantifying" }, { - "key": "monitor", + "key": "bandwidth", "value": "primary", - "namespace": "quantifying" + "namespace": "navigating" }, { - "key": "matrix", + "key": "interface", "value": "mobile", - "namespace": "parsing" + "namespace": "compressing" + }, + { + "key": "monitor", + "value": "virtual", + "namespace": "indexing" } ], "type": "system", @@ -8480,39 +8657,39 @@ "policies": [] }, { - "id": "58546340-3b0b-4acc-a0c0-c4a7a0e97b15", - "display_name": "schmeler.test", + "id": "3733c944-22d6-4559-bbbd-e6e5752aa318", + "display_name": "littel.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.328Z", - "stale_timestamp": "2034-10-08T11:32:32.328Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.328Z", - "updated": "2024-10-08T11:32:32.328Z", + "culled_timestamp": "2034-10-25T14:38:21.284Z", + "stale_timestamp": "2034-10-11T14:38:21.284Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.284Z", + "updated": "2024-10-11T14:38:21.284Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "auxiliary", + "key": "program", + "value": "online", "namespace": "compressing" }, { - "key": "capacitor", - "value": "auxiliary", - "namespace": "transmitting" + "key": "application", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "firewall", - "value": "1080p", - "namespace": "parsing" + "key": "program", + "value": "bluetooth", + "namespace": "indexing" }, { - "key": "sensor", - "value": "mobile", - "namespace": "overriding" + "key": "capacitor", + "value": "haptic", + "namespace": "programming" }, { - "key": "sensor", - "value": "solid state", - "namespace": "backing up" + "key": "bandwidth", + "value": "cross-platform", + "namespace": "transmitting" } ], "type": "system", @@ -8521,39 +8698,39 @@ "policies": [] }, { - "id": "59a55f60-5291-45fc-a01a-01f3439ae8fa", - "display_name": "dickinson.test", + "id": "3cce6b05-e567-4175-a381-aa59b88f2292", + "display_name": "dicki-cummerata.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.339Z", - "stale_timestamp": "2034-10-08T11:32:32.339Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.339Z", - "updated": "2024-10-08T11:32:32.339Z", + "culled_timestamp": "2034-10-25T14:38:21.287Z", + "stale_timestamp": "2034-10-11T14:38:21.287Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.287Z", + "updated": "2024-10-11T14:38:21.287Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "open-source", - "namespace": "navigating" + "key": "matrix", + "value": "primary", + "namespace": "indexing" }, { - "key": "interface", - "value": "1080p", - "namespace": "backing up" + "key": "firewall", + "value": "primary", + "namespace": "overriding" }, { - "key": "transmitter", - "value": "neural", - "namespace": "backing up" + "key": "capacitor", + "value": "open-source", + "namespace": "calculating" }, { - "key": "driver", - "value": "online", - "namespace": "compressing" + "key": "card", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "program", - "value": "back-end", - "namespace": "backing up" + "key": "sensor", + "value": "wireless", + "namespace": "quantifying" } ], "type": "system", @@ -8562,39 +8739,39 @@ "policies": [] }, { - "id": "6003f3f4-d61d-4f1f-90fb-aee9cda0c851", - "display_name": "lehner.test", + "id": "3e17cca0-1ca2-4abb-a077-f547d462d890", + "display_name": "kiehn.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.324Z", - "stale_timestamp": "2034-10-08T11:32:32.324Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.324Z", - "updated": "2024-10-08T11:32:32.324Z", + "culled_timestamp": "2034-10-25T14:38:21.277Z", + "stale_timestamp": "2034-10-11T14:38:21.277Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.277Z", + "updated": "2024-10-11T14:38:21.277Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "bluetooth", - "namespace": "calculating" + "key": "program", + "value": "solid state", + "namespace": "compressing" }, { - "key": "interface", - "value": "redundant", - "namespace": "connecting" + "key": "array", + "value": "online", + "namespace": "navigating" }, { - "key": "feed", - "value": "virtual", - "namespace": "calculating" + "key": "protocol", + "value": "online", + "namespace": "quantifying" }, { - "key": "card", - "value": "digital", - "namespace": "navigating" + "key": "program", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "port", - "value": "bluetooth", - "namespace": "transmitting" + "key": "feed", + "value": "optical", + "namespace": "parsing" } ], "type": "system", @@ -8603,38 +8780,38 @@ "policies": [] }, { - "id": "6a74e65e-4835-40b4-bef1-629d37be49b0", - "display_name": "beatty.test", + "id": "3f15d619-b72c-4e42-bbad-c25b30425626", + "display_name": "hane.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.330Z", - "stale_timestamp": "2034-10-08T11:32:32.330Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.330Z", - "updated": "2024-10-08T11:32:32.330Z", + "culled_timestamp": "2034-10-25T14:38:21.300Z", + "stale_timestamp": "2034-10-11T14:38:21.300Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.300Z", + "updated": "2024-10-11T14:38:21.300Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "neural", - "namespace": "quantifying" + "key": "pixel", + "value": "haptic", + "namespace": "overriding" }, { - "key": "array", - "value": "virtual", - "namespace": "programming" + "key": "pixel", + "value": "digital", + "namespace": "indexing" }, { - "key": "card", - "value": "online", + "key": "monitor", + "value": "redundant", "namespace": "connecting" }, { - "key": "system", - "value": "digital", - "namespace": "compressing" + "key": "circuit", + "value": "redundant", + "namespace": "transmitting" }, { - "key": "microchip", - "value": "1080p", + "key": "card", + "value": "haptic", "namespace": "quantifying" } ], @@ -8807,39 +8984,39 @@ "Returns a System": { "value": { "data": { - "id": "ef61fcb2-d602-400f-9811-6285af632df3", - "display_name": "lemke.test", + "id": "8e6d29aa-b144-4903-80ff-d40f2e4c53a9", + "display_name": "johnson-weber.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.481Z", - "stale_timestamp": "2034-10-08T11:32:32.481Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.481Z", - "updated": "2024-10-08T11:32:32.481Z", + "culled_timestamp": "2034-10-25T14:38:21.571Z", + "stale_timestamp": "2034-10-11T14:38:21.571Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.571Z", + "updated": "2024-10-11T14:38:21.571Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "neural", - "namespace": "bypassing" + "key": "bus", + "value": "1080p", + "namespace": "indexing" }, { - "key": "microchip", - "value": "open-source", - "namespace": "generating" + "key": "system", + "value": "redundant", + "namespace": "indexing" }, { - "key": "program", - "value": "1080p", - "namespace": "backing up" + "key": "card", + "value": "virtual", + "namespace": "copying" }, { - "key": "firewall", - "value": "wireless", - "namespace": "synthesizing" + "key": "bus", + "value": "neural", + "namespace": "copying" }, { "key": "system", "value": "primary", - "namespace": "backing up" + "namespace": "generating" } ], "type": "system", @@ -8876,7 +9053,7 @@ "Description of an error when requesting a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 813a5816-7f73-441c-93b7-c1b3680dbde1" + "V2::System not found with ID b3471e33-b11e-4c25-ae2f-bcf9b6f040fd" ] }, "summary": "", @@ -9003,39 +9180,39 @@ "value": { "data": [ { - "id": "06fdab26-a6e5-42ba-877e-6a1ef8053cdb", - "display_name": "steuber.example", + "id": "11fc0208-64ea-4b8e-ab4f-09d178e09f56", + "display_name": "turcotte-hirthe.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.559Z", - "stale_timestamp": "2034-10-08T11:32:32.559Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.559Z", - "updated": "2024-10-08T11:32:32.559Z", + "culled_timestamp": "2034-10-25T14:38:21.691Z", + "stale_timestamp": "2034-10-11T14:38:21.691Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.691Z", + "updated": "2024-10-11T14:38:21.691Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "bluetooth", + "key": "monitor", + "value": "cross-platform", "namespace": "compressing" }, { - "key": "application", - "value": "neural", - "namespace": "programming" + "key": "capacitor", + "value": "optical", + "namespace": "overriding" }, { "key": "pixel", - "value": "online", - "namespace": "indexing" + "value": "wireless", + "namespace": "copying" }, { - "key": "driver", - "value": "optical", - "namespace": "navigating" + "key": "port", + "value": "back-end", + "namespace": "overriding" }, { - "key": "panel", - "value": "open-source", - "namespace": "indexing" + "key": "capacitor", + "value": "1080p", + "namespace": "transmitting" } ], "type": "system", @@ -9043,39 +9220,39 @@ "os_minor_version": 0 }, { - "id": "167739ae-2d60-49ea-ad16-4606172c1f40", - "display_name": "rosenbaum-ondricka.example", + "id": "22499f22-7acf-48f8-ba4d-229ab53375c4", + "display_name": "beatty.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.527Z", - "stale_timestamp": "2034-10-08T11:32:32.527Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.527Z", - "updated": "2024-10-08T11:32:32.527Z", + "culled_timestamp": "2034-10-25T14:38:21.767Z", + "stale_timestamp": "2034-10-11T14:38:21.767Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.767Z", + "updated": "2024-10-11T14:38:21.767Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "solid state", - "namespace": "backing up" + "key": "hard drive", + "value": "redundant", + "namespace": "overriding" }, { - "key": "pixel", - "value": "wireless", - "namespace": "generating" + "key": "panel", + "value": "optical", + "namespace": "synthesizing" }, { - "key": "card", - "value": "back-end", - "namespace": "bypassing" + "key": "circuit", + "value": "solid state", + "namespace": "hacking" }, { - "key": "hard drive", + "key": "driver", "value": "neural", - "namespace": "parsing" + "namespace": "calculating" }, { - "key": "array", - "value": "optical", - "namespace": "parsing" + "key": "pixel", + "value": "back-end", + "namespace": "overriding" } ], "type": "system", @@ -9083,39 +9260,39 @@ "os_minor_version": 0 }, { - "id": "2a746ac6-5628-4559-b4d9-9e94a1161683", - "display_name": "oberbrunner.example", + "id": "22e51bc3-387b-4c9a-821b-1c4c9ec4f610", + "display_name": "erdman-lesch.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.608Z", - "stale_timestamp": "2034-10-08T11:32:32.608Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.608Z", - "updated": "2024-10-08T11:32:32.608Z", + "culled_timestamp": "2034-10-25T14:38:21.734Z", + "stale_timestamp": "2034-10-11T14:38:21.734Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.734Z", + "updated": "2024-10-11T14:38:21.734Z", "insights_id": null, "tags": [ { "key": "matrix", - "value": "back-end", - "namespace": "quantifying" + "value": "digital", + "namespace": "parsing" }, { - "key": "system", - "value": "multi-byte", - "namespace": "generating" + "key": "circuit", + "value": "neural", + "namespace": "connecting" }, { - "key": "microchip", - "value": "back-end", - "namespace": "calculating" + "key": "panel", + "value": "primary", + "namespace": "bypassing" }, { - "key": "bus", - "value": "optical", - "namespace": "indexing" + "key": "capacitor", + "value": "wireless", + "namespace": "hacking" }, { - "key": "pixel", - "value": "neural", - "namespace": "indexing" + "key": "bandwidth", + "value": "wireless", + "namespace": "navigating" } ], "type": "system", @@ -9123,39 +9300,39 @@ "os_minor_version": 0 }, { - "id": "2b2ea7b3-5837-4924-aae7-d324055ac295", - "display_name": "christiansen.example", + "id": "3e9bfff0-242b-4756-8f9f-5395e73fbd89", + "display_name": "hartmann-frami.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.568Z", - "stale_timestamp": "2034-10-08T11:32:32.568Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.568Z", - "updated": "2024-10-08T11:32:32.568Z", + "culled_timestamp": "2034-10-25T14:38:21.805Z", + "stale_timestamp": "2034-10-11T14:38:21.805Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.805Z", + "updated": "2024-10-11T14:38:21.805Z", "insights_id": null, "tags": [ { - "key": "sensor", + "key": "hard drive", "value": "multi-byte", - "namespace": "quantifying" + "namespace": "parsing" }, { - "key": "interface", - "value": "haptic", - "namespace": "navigating" + "key": "program", + "value": "bluetooth", + "namespace": "programming" }, { - "key": "panel", - "value": "digital", - "namespace": "generating" + "key": "matrix", + "value": "1080p", + "namespace": "copying" }, { - "key": "matrix", - "value": "optical", - "namespace": "hacking" + "key": "protocol", + "value": "auxiliary", + "namespace": "backing up" }, { - "key": "microchip", - "value": "solid state", - "namespace": "connecting" + "key": "pixel", + "value": "auxiliary", + "namespace": "hacking" } ], "type": "system", @@ -9163,39 +9340,39 @@ "os_minor_version": 0 }, { - "id": "3fcd3cb6-506d-4206-9223-275dde913fc0", - "display_name": "ruecker.test", + "id": "5a2cc6aa-a6bb-49a9-ba88-aaa5ef2d1620", + "display_name": "conroy.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.541Z", - "stale_timestamp": "2034-10-08T11:32:32.541Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.541Z", - "updated": "2024-10-08T11:32:32.541Z", + "culled_timestamp": "2034-10-25T14:38:21.761Z", + "stale_timestamp": "2034-10-11T14:38:21.761Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.761Z", + "updated": "2024-10-11T14:38:21.761Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "1080p", + "key": "protocol", + "value": "redundant", "namespace": "programming" }, { - "key": "transmitter", - "value": "redundant", - "namespace": "calculating" + "key": "bandwidth", + "value": "solid state", + "namespace": "connecting" }, { - "key": "program", - "value": "neural", - "namespace": "indexing" + "key": "hard drive", + "value": "optical", + "namespace": "backing up" }, { - "key": "matrix", - "value": "auxiliary", + "key": "feed", + "value": "cross-platform", "namespace": "calculating" }, { - "key": "microchip", - "value": "neural", - "namespace": "bypassing" + "key": "system", + "value": "back-end", + "namespace": "hacking" } ], "type": "system", @@ -9203,39 +9380,39 @@ "os_minor_version": 0 }, { - "id": "455b3197-a88b-4d4a-ac85-05ab1fb1488c", - "display_name": "steuber.example", + "id": "6055ca13-47e1-4d8d-b748-0d641f11be1f", + "display_name": "jast.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.546Z", - "stale_timestamp": "2034-10-08T11:32:32.546Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.546Z", - "updated": "2024-10-08T11:32:32.546Z", + "culled_timestamp": "2034-10-25T14:38:21.813Z", + "stale_timestamp": "2034-10-11T14:38:21.813Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.813Z", + "updated": "2024-10-11T14:38:21.813Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "redundant", - "namespace": "overriding" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "hacking" }, { - "key": "matrix", + "key": "firewall", "value": "auxiliary", - "namespace": "connecting" + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "1080p", - "namespace": "hacking" + "key": "capacitor", + "value": "wireless", + "namespace": "generating" }, { - "key": "interface", - "value": "auxiliary", - "namespace": "bypassing" + "key": "system", + "value": "bluetooth", + "namespace": "transmitting" }, { - "key": "application", - "value": "1080p", - "namespace": "connecting" + "key": "capacitor", + "value": "auxiliary", + "namespace": "compressing" } ], "type": "system", @@ -9243,39 +9420,39 @@ "os_minor_version": 0 }, { - "id": "51becccd-a782-4a75-af86-8e91cfaf21fa", - "display_name": "heaney.test", + "id": "6acbe95d-d175-4b6c-8c9f-430991ae4692", + "display_name": "lind.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.550Z", - "stale_timestamp": "2034-10-08T11:32:32.550Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.550Z", - "updated": "2024-10-08T11:32:32.550Z", + "culled_timestamp": "2034-10-25T14:38:21.781Z", + "stale_timestamp": "2034-10-11T14:38:21.781Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.781Z", + "updated": "2024-10-11T14:38:21.781Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "redundant", - "namespace": "bypassing" + "key": "firewall", + "value": "solid state", + "namespace": "programming" }, { - "key": "microchip", - "value": "virtual", - "namespace": "synthesizing" + "key": "capacitor", + "value": "mobile", + "namespace": "hacking" }, { - "key": "array", - "value": "wireless", - "namespace": "parsing" + "key": "system", + "value": "redundant", + "namespace": "calculating" }, { - "key": "microchip", - "value": "neural", - "namespace": "copying" + "key": "card", + "value": "multi-byte", + "namespace": "backing up" }, { - "key": "alarm", - "value": "solid state", - "namespace": "generating" + "key": "firewall", + "value": "haptic", + "namespace": "navigating" } ], "type": "system", @@ -9283,39 +9460,39 @@ "os_minor_version": 0 }, { - "id": "57fea152-1790-4821-bf01-015efa4a9f0f", - "display_name": "balistreri.test", + "id": "6cae70b0-acdc-4ffe-8c0b-da79bd95a400", + "display_name": "shields-mills.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.604Z", - "stale_timestamp": "2034-10-08T11:32:32.604Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.604Z", - "updated": "2024-10-08T11:32:32.604Z", + "culled_timestamp": "2034-10-25T14:38:21.829Z", + "stale_timestamp": "2034-10-11T14:38:21.829Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.829Z", + "updated": "2024-10-11T14:38:21.829Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "multi-byte", - "namespace": "hacking" + "key": "panel", + "value": "1080p", + "namespace": "synthesizing" }, { - "key": "sensor", - "value": "primary", - "namespace": "copying" + "key": "alarm", + "value": "digital", + "namespace": "quantifying" }, { - "key": "pixel", - "value": "solid state", + "key": "bus", + "value": "redundant", "namespace": "synthesizing" }, { - "key": "circuit", - "value": "neural", - "namespace": "hacking" + "key": "protocol", + "value": "multi-byte", + "namespace": "quantifying" }, { - "key": "interface", - "value": "primary", - "namespace": "indexing" + "key": "firewall", + "value": "redundant", + "namespace": "generating" } ], "type": "system", @@ -9323,39 +9500,39 @@ "os_minor_version": 0 }, { - "id": "58b22f8e-5f5f-434f-90e8-b0ce2c8f7622", - "display_name": "jacobson.example", + "id": "7c1506c1-2f35-4411-9e4a-67f7cb4df0a7", + "display_name": "ankunding-welch.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.581Z", - "stale_timestamp": "2034-10-08T11:32:32.581Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.581Z", - "updated": "2024-10-08T11:32:32.581Z", + "culled_timestamp": "2034-10-25T14:38:21.705Z", + "stale_timestamp": "2034-10-11T14:38:21.705Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.705Z", + "updated": "2024-10-11T14:38:21.705Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "haptic", - "namespace": "generating" + "key": "port", + "value": "multi-byte", + "namespace": "parsing" }, { - "key": "port", - "value": "online", + "key": "alarm", + "value": "multi-byte", "namespace": "synthesizing" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "copying" + "key": "capacitor", + "value": "redundant", + "namespace": "indexing" }, { - "key": "alarm", + "key": "port", "value": "online", - "namespace": "hacking" + "namespace": "connecting" }, { - "key": "card", - "value": "wireless", - "namespace": "compressing" + "key": "alarm", + "value": "digital", + "namespace": "copying" } ], "type": "system", @@ -9363,39 +9540,39 @@ "os_minor_version": 0 }, { - "id": "61647960-090d-4016-b545-5a504fcf3711", - "display_name": "ferry.example", + "id": "7f6cdfbb-76f5-441a-8f00-fb02a6a2c957", + "display_name": "zemlak.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.591Z", - "stale_timestamp": "2034-10-08T11:32:32.591Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.591Z", - "updated": "2024-10-08T11:32:32.591Z", + "culled_timestamp": "2034-10-25T14:38:21.663Z", + "stale_timestamp": "2034-10-11T14:38:21.663Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.663Z", + "updated": "2024-10-11T14:38:21.663Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "digital", - "namespace": "connecting" + "key": "panel", + "value": "optical", + "namespace": "navigating" }, { - "key": "driver", - "value": "1080p", - "namespace": "overriding" + "key": "system", + "value": "cross-platform", + "namespace": "navigating" }, { - "key": "sensor", - "value": "primary", - "namespace": "calculating" + "key": "bandwidth", + "value": "multi-byte", + "namespace": "connecting" }, { - "key": "protocol", - "value": "haptic", - "namespace": "quantifying" + "key": "program", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "generating" + "key": "pixel", + "value": "solid state", + "namespace": "quantifying" } ], "type": "system", @@ -9410,9 +9587,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/52d26f6f-9839-4e60-8152-b5d102a3343e/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/52d26f6f-9839-4e60-8152-b5d102a3343e/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/52d26f6f-9839-4e60-8152-b5d102a3343e/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/092b87f2-ff32-4ca6-a89b-e801e0964ae4/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/092b87f2-ff32-4ca6-a89b-e801e0964ae4/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/092b87f2-ff32-4ca6-a89b-e801e0964ae4/systems?limit=10&offset=10" } }, "summary": "", @@ -9422,39 +9599,39 @@ "value": { "data": [ { - "id": "08b1da76-d668-410c-a475-e37c84e581f3", - "display_name": "erdman-leffler.example", + "id": "04b43be0-fd02-43de-b0a0-3384991c7d2f", + "display_name": "kreiger-gleason.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.727Z", - "stale_timestamp": "2034-10-08T11:32:32.727Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.727Z", - "updated": "2024-10-08T11:32:32.727Z", + "culled_timestamp": "2034-10-25T14:38:21.957Z", + "stale_timestamp": "2034-10-11T14:38:21.957Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.957Z", + "updated": "2024-10-11T14:38:21.957Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "open-source", - "namespace": "calculating" + "key": "circuit", + "value": "back-end", + "namespace": "parsing" }, { - "key": "firewall", - "value": "cross-platform", - "namespace": "transmitting" + "key": "monitor", + "value": "virtual", + "namespace": "backing up" }, { - "key": "panel", - "value": "back-end", - "namespace": "hacking" + "key": "monitor", + "value": "neural", + "namespace": "transmitting" }, { - "key": "protocol", + "key": "panel", "value": "digital", "namespace": "compressing" }, { - "key": "bandwidth", - "value": "wireless", - "namespace": "calculating" + "key": "system", + "value": "online", + "namespace": "quantifying" } ], "type": "system", @@ -9462,39 +9639,39 @@ "os_minor_version": 0 }, { - "id": "133977a5-24c2-40cb-b7df-b65383217aed", - "display_name": "heller.example", + "id": "052e6a09-02f5-4833-874d-8b3b3ddd73d2", + "display_name": "upton.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.686Z", - "stale_timestamp": "2034-10-08T11:32:32.686Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.686Z", - "updated": "2024-10-08T11:32:32.686Z", + "culled_timestamp": "2034-10-25T14:38:22.001Z", + "stale_timestamp": "2034-10-11T14:38:22.001Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.001Z", + "updated": "2024-10-11T14:38:22.001Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "bluetooth", - "namespace": "generating" + "key": "interface", + "value": "open-source", + "namespace": "overriding" }, { - "key": "matrix", - "value": "haptic", - "namespace": "bypassing" + "key": "circuit", + "value": "multi-byte", + "namespace": "calculating" }, { - "key": "bandwidth", - "value": "digital", - "namespace": "connecting" + "key": "interface", + "value": "1080p", + "namespace": "backing up" }, { "key": "firewall", - "value": "cross-platform", - "namespace": "connecting" + "value": "wireless", + "namespace": "overriding" }, { - "key": "alarm", - "value": "solid state", - "namespace": "parsing" + "key": "interface", + "value": "haptic", + "namespace": "calculating" } ], "type": "system", @@ -9502,39 +9679,39 @@ "os_minor_version": 0 }, { - "id": "23aca147-31b5-45a2-b57c-fe2b76867785", - "display_name": "dach.test", + "id": "15db0e70-2e52-4bc7-8016-da7d1f5a5733", + "display_name": "schuster-stanton.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.745Z", - "stale_timestamp": "2034-10-08T11:32:32.745Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.745Z", - "updated": "2024-10-08T11:32:32.745Z", + "culled_timestamp": "2034-10-25T14:38:21.994Z", + "stale_timestamp": "2034-10-11T14:38:21.994Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.994Z", + "updated": "2024-10-11T14:38:21.994Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "wireless", - "namespace": "synthesizing" + "key": "firewall", + "value": "digital", + "namespace": "copying" }, { - "key": "bandwidth", - "value": "wireless", - "namespace": "quantifying" + "key": "panel", + "value": "optical", + "namespace": "navigating" }, { - "key": "matrix", - "value": "open-source", - "namespace": "overriding" + "key": "circuit", + "value": "digital", + "namespace": "hacking" }, { - "key": "panel", - "value": "optical", - "namespace": "overriding" + "key": "hard drive", + "value": "digital", + "namespace": "bypassing" }, { - "key": "application", - "value": "cross-platform", - "namespace": "bypassing" + "key": "hard drive", + "value": "redundant", + "namespace": "indexing" } ], "type": "system", @@ -9542,39 +9719,39 @@ "os_minor_version": 0 }, { - "id": "260a0a23-1f01-42fe-b3a4-4ce1775d4b90", - "display_name": "witting.test", + "id": "2ca1545f-e9f2-42a1-a488-d2bbd43db459", + "display_name": "schmitt-baumbach.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.722Z", - "stale_timestamp": "2034-10-08T11:32:32.722Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.722Z", - "updated": "2024-10-08T11:32:32.722Z", + "culled_timestamp": "2034-10-25T14:38:21.986Z", + "stale_timestamp": "2034-10-11T14:38:21.986Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.986Z", + "updated": "2024-10-11T14:38:21.986Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "open-source", - "namespace": "overriding" + "key": "monitor", + "value": "auxiliary", + "namespace": "compressing" }, { - "key": "capacitor", - "value": "redundant", - "namespace": "copying" + "key": "panel", + "value": "open-source", + "namespace": "programming" }, { - "key": "application", - "value": "online", + "key": "array", + "value": "virtual", "namespace": "copying" }, { - "key": "driver", - "value": "multi-byte", - "namespace": "copying" + "key": "matrix", + "value": "haptic", + "namespace": "backing up" }, { - "key": "bus", - "value": "optical", - "namespace": "quantifying" + "key": "matrix", + "value": "digital", + "namespace": "programming" } ], "type": "system", @@ -9582,38 +9759,38 @@ "os_minor_version": 0 }, { - "id": "267f90f1-f6b9-4ca6-8314-67825a0c44e1", - "display_name": "hagenes-kilback.example", + "id": "2f35d117-99a9-4d54-b124-364fda945e2d", + "display_name": "von.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.766Z", - "stale_timestamp": "2034-10-08T11:32:32.766Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.766Z", - "updated": "2024-10-08T11:32:32.766Z", + "culled_timestamp": "2034-10-25T14:38:22.023Z", + "stale_timestamp": "2034-10-11T14:38:22.023Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.023Z", + "updated": "2024-10-11T14:38:22.023Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "solid state", - "namespace": "quantifying" + "key": "alarm", + "value": "mobile", + "namespace": "connecting" }, { - "key": "capacitor", + "key": "system", "value": "multi-byte", - "namespace": "overriding" + "namespace": "programming" }, { - "key": "feed", - "value": "virtual", - "namespace": "copying" + "key": "bandwidth", + "value": "open-source", + "namespace": "hacking" }, { - "key": "program", - "value": "1080p", - "namespace": "copying" + "key": "feed", + "value": "back-end", + "namespace": "parsing" }, { - "key": "pixel", - "value": "back-end", + "key": "system", + "value": "haptic", "namespace": "navigating" } ], @@ -9622,39 +9799,39 @@ "os_minor_version": 0 }, { - "id": "5a47c1b6-acab-4dde-9f11-4f92f5722daf", - "display_name": "schimmel.test", + "id": "56285457-52ba-4910-ba3b-4ed69120abc0", + "display_name": "hand.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.749Z", - "stale_timestamp": "2034-10-08T11:32:32.749Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.749Z", - "updated": "2024-10-08T11:32:32.749Z", + "culled_timestamp": "2034-10-25T14:38:22.009Z", + "stale_timestamp": "2034-10-11T14:38:22.009Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.009Z", + "updated": "2024-10-11T14:38:22.009Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "haptic", - "namespace": "parsing" + "key": "firewall", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "alarm", - "value": "haptic", - "namespace": "generating" + "key": "hard drive", + "value": "mobile", + "namespace": "backing up" }, { - "key": "port", - "value": "wireless", - "namespace": "quantifying" + "key": "protocol", + "value": "1080p", + "namespace": "parsing" }, { - "key": "card", - "value": "mobile", - "namespace": "synthesizing" + "key": "program", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "bandwidth", - "value": "virtual", - "namespace": "parsing" + "key": "pixel", + "value": "haptic", + "namespace": "synthesizing" } ], "type": "system", @@ -9662,39 +9839,39 @@ "os_minor_version": 0 }, { - "id": "6c10b053-d8c6-41af-8d5e-18449f14b067", - "display_name": "herzog.example", + "id": "5afe33b9-263f-4b00-99f8-8e876d8e2290", + "display_name": "wyman-gottlieb.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.692Z", - "stale_timestamp": "2034-10-08T11:32:32.692Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.692Z", - "updated": "2024-10-08T11:32:32.692Z", + "culled_timestamp": "2034-10-25T14:38:22.030Z", + "stale_timestamp": "2034-10-11T14:38:22.030Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.030Z", + "updated": "2024-10-11T14:38:22.030Z", "insights_id": null, "tags": [ - { - "key": "bandwidth", - "value": "wireless", - "namespace": "backing up" - }, { "key": "firewall", - "value": "virtual", - "namespace": "calculating" + "value": "primary", + "namespace": "bypassing" }, { - "key": "pixel", - "value": "auxiliary", - "namespace": "copying" + "key": "port", + "value": "primary", + "namespace": "hacking" }, { - "key": "array", - "value": "solid state", + "key": "feed", + "value": "haptic", "namespace": "connecting" }, { - "key": "microchip", - "value": "wireless", + "key": "circuit", + "value": "mobile", "namespace": "quantifying" + }, + { + "key": "monitor", + "value": "optical", + "namespace": "copying" } ], "type": "system", @@ -9702,39 +9879,39 @@ "os_minor_version": 0 }, { - "id": "6ce91b68-5522-4cd6-af1f-c2def19bfb43", - "display_name": "dooley.test", + "id": "5d077707-14ae-4f1f-a940-a28c22e0ce36", + "display_name": "jones.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.736Z", - "stale_timestamp": "2034-10-08T11:32:32.736Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.736Z", - "updated": "2024-10-08T11:32:32.736Z", + "culled_timestamp": "2034-10-25T14:38:21.900Z", + "stale_timestamp": "2034-10-11T14:38:21.900Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.900Z", + "updated": "2024-10-11T14:38:21.900Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "auxiliary", - "namespace": "backing up" + "key": "feed", + "value": "online", + "namespace": "indexing" }, { - "key": "array", - "value": "virtual", - "namespace": "synthesizing" + "key": "bus", + "value": "optical", + "namespace": "hacking" }, { - "key": "feed", - "value": "multi-byte", - "namespace": "overriding" + "key": "program", + "value": "primary", + "namespace": "backing up" }, { - "key": "port", + "key": "capacitor", "value": "wireless", - "namespace": "indexing" + "namespace": "backing up" }, { - "key": "driver", - "value": "optical", - "namespace": "calculating" + "key": "firewall", + "value": "cross-platform", + "namespace": "indexing" } ], "type": "system", @@ -9742,39 +9919,39 @@ "os_minor_version": 0 }, { - "id": "84889921-7985-4f84-9d96-4457248577a1", - "display_name": "mcclure.test", + "id": "692b0452-8e23-4cfa-b76e-97a5bdceaf99", + "display_name": "klein-mueller.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.717Z", - "stale_timestamp": "2034-10-08T11:32:32.717Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.717Z", - "updated": "2024-10-08T11:32:32.717Z", + "culled_timestamp": "2034-10-25T14:38:21.879Z", + "stale_timestamp": "2034-10-11T14:38:21.879Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.879Z", + "updated": "2024-10-11T14:38:21.879Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "virtual", - "namespace": "generating" + "key": "transmitter", + "value": "online", + "namespace": "parsing" }, { - "key": "system", - "value": "solid state", - "namespace": "calculating" + "key": "hard drive", + "value": "optical", + "namespace": "indexing" }, { - "key": "hard drive", - "value": "open-source", - "namespace": "programming" + "key": "array", + "value": "solid state", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "online", - "namespace": "calculating" + "key": "interface", + "value": "virtual", + "namespace": "programming" }, { - "key": "matrix", - "value": "back-end", - "namespace": "compressing" + "key": "driver", + "value": "mobile", + "namespace": "quantifying" } ], "type": "system", @@ -9782,39 +9959,39 @@ "os_minor_version": 0 }, { - "id": "887ec3fc-abd1-47ec-b12f-2fbcedce6e21", - "display_name": "heidenreich.test", + "id": "7076fafd-cc9b-47d8-a95f-54f30399d999", + "display_name": "lynch.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.697Z", - "stale_timestamp": "2034-10-08T11:32:32.697Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.697Z", - "updated": "2024-10-08T11:32:32.697Z", + "culled_timestamp": "2034-10-25T14:38:21.943Z", + "stale_timestamp": "2034-10-11T14:38:21.943Z", + "stale_warning_timestamp": "2034-10-18T14:38:21.943Z", + "updated": "2024-10-11T14:38:21.943Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "primary", - "namespace": "overriding" + "key": "bus", + "value": "digital", + "namespace": "programming" }, { - "key": "hard drive", - "value": "open-source", - "namespace": "connecting" + "key": "pixel", + "value": "optical", + "namespace": "calculating" }, { - "key": "feed", - "value": "redundant", - "namespace": "navigating" + "key": "matrix", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "system", - "value": "auxiliary", - "namespace": "copying" + "key": "application", + "value": "wireless", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "cross-platform", - "namespace": "connecting" + "key": "panel", + "value": "auxiliary", + "namespace": "calculating" } ], "type": "system", @@ -9830,9 +10007,9 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/policies/e6470815-6c8b-4c24-be17-5d604c8cfcc0/systems?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/policies/e6470815-6c8b-4c24-be17-5d604c8cfcc0/systems?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/policies/e6470815-6c8b-4c24-be17-5d604c8cfcc0/systems?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/policies/2c9b03af-d260-4077-ba64-8aaa211bd7a7/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/2c9b03af-d260-4077-ba64-8aaa211bd7a7/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/2c9b03af-d260-4077-ba64-8aaa211bd7a7/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", @@ -9842,39 +10019,39 @@ "value": { "data": [ { - "id": "08c2ee47-d459-43e5-84d3-1aa0c6b6e5af", - "display_name": "morar.example", + "id": "03a8ce8f-c9f4-4cc7-b022-c3a5c9dceb5c", + "display_name": "lebsack.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.836Z", - "stale_timestamp": "2034-10-08T11:32:32.836Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.836Z", - "updated": "2024-10-08T11:32:32.836Z", + "culled_timestamp": "2034-10-25T14:38:22.307Z", + "stale_timestamp": "2034-10-11T14:38:22.307Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.307Z", + "updated": "2024-10-11T14:38:22.307Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "primary", - "namespace": "connecting" + "key": "feed", + "value": "open-source", + "namespace": "quantifying" }, { - "key": "program", - "value": "cross-platform", - "namespace": "calculating" + "key": "monitor", + "value": "neural", + "namespace": "synthesizing" }, { "key": "transmitter", - "value": "cross-platform", - "namespace": "navigating" + "value": "digital", + "namespace": "parsing" }, { - "key": "panel", - "value": "mobile", - "namespace": "copying" + "key": "monitor", + "value": "neural", + "namespace": "calculating" }, { - "key": "matrix", - "value": "online", - "namespace": "indexing" + "key": "program", + "value": "neural", + "namespace": "synthesizing" } ], "type": "system", @@ -9882,39 +10059,39 @@ "os_minor_version": 0 }, { - "id": "18897cc3-90fa-4721-a87b-839dfbb814e2", - "display_name": "denesik-waelchi.example", + "id": "14828644-09ec-451c-968b-29047ffaf193", + "display_name": "farrell.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.904Z", - "stale_timestamp": "2034-10-08T11:32:32.904Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.904Z", - "updated": "2024-10-08T11:32:32.904Z", + "culled_timestamp": "2034-10-25T14:38:22.143Z", + "stale_timestamp": "2034-10-11T14:38:22.143Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.143Z", + "updated": "2024-10-11T14:38:22.143Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "open-source", - "namespace": "bypassing" + "key": "alarm", + "value": "auxiliary", + "namespace": "programming" }, { - "key": "transmitter", - "value": "online", + "key": "firewall", + "value": "redundant", "namespace": "compressing" }, { - "key": "sensor", - "value": "optical", - "namespace": "navigating" + "key": "circuit", + "value": "redundant", + "namespace": "indexing" }, { - "key": "pixel", - "value": "online", - "namespace": "programming" + "key": "array", + "value": "digital", + "namespace": "transmitting" }, { - "key": "bus", - "value": "1080p", - "namespace": "copying" + "key": "microchip", + "value": "multi-byte", + "namespace": "calculating" } ], "type": "system", @@ -9922,39 +10099,39 @@ "os_minor_version": 0 }, { - "id": "291b0633-f7a6-4876-a40c-1f783d86b849", - "display_name": "konopelski.test", + "id": "163cee9e-d85a-46e1-9df5-ec05b5496783", + "display_name": "mohr.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.823Z", - "stale_timestamp": "2034-10-08T11:32:32.823Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.823Z", - "updated": "2024-10-08T11:32:32.823Z", + "culled_timestamp": "2034-10-25T14:38:22.264Z", + "stale_timestamp": "2034-10-11T14:38:22.264Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.264Z", + "updated": "2024-10-11T14:38:22.264Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "virtual", - "namespace": "compressing" + "key": "card", + "value": "neural", + "namespace": "overriding" }, { - "key": "program", - "value": "auxiliary", - "namespace": "quantifying" + "key": "transmitter", + "value": "optical", + "namespace": "connecting" }, { - "key": "panel", - "value": "primary", - "namespace": "overriding" + "key": "monitor", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "indexing" + "key": "driver", + "value": "cross-platform", + "namespace": "backing up" }, { - "key": "alarm", - "value": "virtual", - "namespace": "programming" + "key": "sensor", + "value": "digital", + "namespace": "quantifying" } ], "type": "system", @@ -9962,39 +10139,39 @@ "os_minor_version": 0 }, { - "id": "2b06b98a-8569-45d4-9a41-091ee842f525", - "display_name": "reichel.example", + "id": "235fed78-3008-4120-b51d-987dd6ab6e7c", + "display_name": "feil-schuppe.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.874Z", - "stale_timestamp": "2034-10-08T11:32:32.874Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.874Z", - "updated": "2024-10-08T11:32:32.874Z", + "culled_timestamp": "2034-10-25T14:38:22.217Z", + "stale_timestamp": "2034-10-11T14:38:22.217Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.217Z", + "updated": "2024-10-11T14:38:22.217Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "back-end", - "namespace": "hacking" + "key": "panel", + "value": "wireless", + "namespace": "compressing" }, { - "key": "transmitter", - "value": "multi-byte", - "namespace": "generating" + "key": "circuit", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "array", - "value": "optical", - "namespace": "transmitting" + "key": "system", + "value": "solid state", + "namespace": "hacking" }, { - "key": "panel", - "value": "open-source", - "namespace": "hacking" + "key": "system", + "value": "neural", + "namespace": "copying" }, { - "key": "bandwidth", - "value": "1080p", - "namespace": "generating" + "key": "port", + "value": "redundant", + "namespace": "navigating" } ], "type": "system", @@ -10002,39 +10179,39 @@ "os_minor_version": 0 }, { - "id": "304b0729-da48-4fa1-8245-7842171cee52", - "display_name": "kohler-torp.test", + "id": "23bea5f2-089e-4f5d-a174-975ce0c5d623", + "display_name": "kunze-cormier.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.916Z", - "stale_timestamp": "2034-10-08T11:32:32.916Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.916Z", - "updated": "2024-10-08T11:32:32.916Z", + "culled_timestamp": "2034-10-25T14:38:22.299Z", + "stale_timestamp": "2034-10-11T14:38:22.299Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.299Z", + "updated": "2024-10-11T14:38:22.299Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "digital", - "namespace": "backing up" + "key": "bus", + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "panel", - "value": "auxiliary", - "namespace": "generating" + "key": "firewall", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "port", - "value": "1080p", - "namespace": "overriding" + "key": "feed", + "value": "open-source", + "namespace": "copying" }, { - "key": "transmitter", - "value": "bluetooth", - "namespace": "compressing" + "key": "feed", + "value": "wireless", + "namespace": "overriding" }, { - "key": "port", - "value": "multi-byte", - "namespace": "calculating" + "key": "alarm", + "value": "open-source", + "namespace": "hacking" } ], "type": "system", @@ -10042,38 +10219,38 @@ "os_minor_version": 0 }, { - "id": "30ac1114-d656-4a51-afc2-5431455c6a6c", - "display_name": "kuhn.example", + "id": "2bfade51-50f4-4279-a5f6-7ad4b8aef41e", + "display_name": "douglas.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.886Z", - "stale_timestamp": "2034-10-08T11:32:32.886Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.886Z", - "updated": "2024-10-08T11:32:32.886Z", + "culled_timestamp": "2034-10-25T14:38:22.129Z", + "stale_timestamp": "2034-10-11T14:38:22.129Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.129Z", + "updated": "2024-10-11T14:38:22.129Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "haptic", - "namespace": "overriding" + "key": "pixel", + "value": "multi-byte", + "namespace": "bypassing" }, { - "key": "monitor", + "key": "protocol", "value": "open-source", - "namespace": "parsing" + "namespace": "synthesizing" }, { - "key": "program", - "value": "digital", - "namespace": "overriding" + "key": "application", + "value": "neural", + "namespace": "compressing" }, { - "key": "system", - "value": "mobile", - "namespace": "copying" + "key": "firewall", + "value": "primary", + "namespace": "hacking" }, { - "key": "microchip", - "value": "mobile", + "key": "panel", + "value": "virtual", "namespace": "transmitting" } ], @@ -10082,39 +10259,39 @@ "os_minor_version": 0 }, { - "id": "39125dcd-a761-44c2-bd00-78008757de66", - "display_name": "moen.example", + "id": "40fc0131-27ce-432e-b81f-a5629aa01ed2", + "display_name": "hackett.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.846Z", - "stale_timestamp": "2034-10-08T11:32:32.846Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.846Z", - "updated": "2024-10-08T11:32:32.846Z", + "culled_timestamp": "2034-10-25T14:38:22.256Z", + "stale_timestamp": "2034-10-11T14:38:22.256Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.256Z", + "updated": "2024-10-11T14:38:22.256Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "mobile", - "namespace": "parsing" + "key": "application", + "value": "1080p", + "namespace": "programming" }, { - "key": "transmitter", + "key": "feed", "value": "redundant", - "namespace": "bypassing" + "namespace": "parsing" }, { - "key": "bandwidth", - "value": "haptic", - "namespace": "transmitting" + "key": "protocol", + "value": "bluetooth", + "namespace": "overriding" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "copying" + "key": "array", + "value": "optical", + "namespace": "quantifying" }, { - "key": "port", - "value": "back-end", - "namespace": "generating" + "key": "protocol", + "value": "1080p", + "namespace": "programming" } ], "type": "system", @@ -10122,38 +10299,38 @@ "os_minor_version": 0 }, { - "id": "52df03a1-268a-4d5c-8993-ffde59502513", - "display_name": "schultz.example", + "id": "4fb19967-0a06-41b0-ab9f-0572a2a7248d", + "display_name": "kertzmann-mueller.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.899Z", - "stale_timestamp": "2034-10-08T11:32:32.899Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.899Z", - "updated": "2024-10-08T11:32:32.899Z", + "culled_timestamp": "2034-10-25T14:38:22.241Z", + "stale_timestamp": "2034-10-11T14:38:22.241Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.241Z", + "updated": "2024-10-11T14:38:22.241Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "haptic", - "namespace": "compressing" + "key": "card", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "monitor", - "value": "open-source", - "namespace": "navigating" + "key": "protocol", + "value": "primary", + "namespace": "hacking" }, { - "key": "pixel", - "value": "wireless", - "namespace": "quantifying" + "key": "bus", + "value": "primary", + "namespace": "calculating" }, { - "key": "application", - "value": "online", - "namespace": "backing up" + "key": "capacitor", + "value": "neural", + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "mobile", + "key": "alarm", + "value": "redundant", "namespace": "bypassing" } ], @@ -10162,39 +10339,39 @@ "os_minor_version": 0 }, { - "id": "5d75b53c-ba56-4cd2-b8e4-20935ef904ff", - "display_name": "wisozk.test", + "id": "57e62b9c-06d4-4af9-a51d-683d5da88b34", + "display_name": "gislason-graham.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.882Z", - "stale_timestamp": "2034-10-08T11:32:32.882Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.882Z", - "updated": "2024-10-08T11:32:32.882Z", + "culled_timestamp": "2034-10-25T14:38:22.273Z", + "stale_timestamp": "2034-10-11T14:38:22.273Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.273Z", + "updated": "2024-10-11T14:38:22.273Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "mobile", - "namespace": "navigating" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "indexing" }, { - "key": "monitor", - "value": "online", - "namespace": "connecting" + "key": "pixel", + "value": "mobile", + "namespace": "hacking" }, { - "key": "firewall", - "value": "redundant", - "namespace": "transmitting" + "key": "bus", + "value": "mobile", + "namespace": "quantifying" }, { - "key": "system", - "value": "back-end", - "namespace": "backing up" + "key": "monitor", + "value": "virtual", + "namespace": "synthesizing" }, { - "key": "sensor", - "value": "wireless", - "namespace": "transmitting" + "key": "monitor", + "value": "digital", + "namespace": "generating" } ], "type": "system", @@ -10202,38 +10379,38 @@ "os_minor_version": 0 }, { - "id": "6bb6886e-5881-4272-926b-a9b7c7700ceb", - "display_name": "gerhold.test", + "id": "62c4eace-9cc8-41bd-8332-68a2ca44c842", + "display_name": "hilpert.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:32.868Z", - "stale_timestamp": "2034-10-08T11:32:32.868Z", - "stale_warning_timestamp": "2034-10-15T11:32:32.868Z", - "updated": "2024-10-08T11:32:32.868Z", + "culled_timestamp": "2034-10-25T14:38:22.225Z", + "stale_timestamp": "2034-10-11T14:38:22.225Z", + "stale_warning_timestamp": "2034-10-18T14:38:22.225Z", + "updated": "2024-10-11T14:38:22.226Z", "insights_id": null, "tags": [ { "key": "bandwidth", - "value": "wireless", - "namespace": "parsing" + "value": "cross-platform", + "namespace": "synthesizing" }, { - "key": "monitor", - "value": "digital", - "namespace": "bypassing" + "key": "pixel", + "value": "cross-platform", + "namespace": "connecting" }, { "key": "system", - "value": "mobile", - "namespace": "calculating" + "value": "optical", + "namespace": "generating" }, { - "key": "card", - "value": "multi-byte", - "namespace": "generating" + "key": "alarm", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "firewall", - "value": "optical", + "key": "matrix", + "value": "solid state", "namespace": "copying" } ], @@ -10250,9 +10427,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/9b522ac5-2c6f-4530-afb4-62118a34d571/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/9b522ac5-2c6f-4530-afb4-62118a34d571/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", - "next": "/api/compliance/v2/policies/9b522ac5-2c6f-4530-afb4-62118a34d571/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" + "first": "/api/compliance/v2/policies/3eadfb0a-f02e-4e45-81e6-2906e537bdbc/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/3eadfb0a-f02e-4e45-81e6-2906e537bdbc/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/policies/3eadfb0a-f02e-4e45-81e6-2906e537bdbc/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -10351,39 +10528,39 @@ "value": { "data": [ { - "id": "007e994a-c7e2-4129-a03d-e4441902f1e3", - "display_name": "orn.example", + "id": "01473d9e-9aa6-47a8-a8ef-c5174a8c1922", + "display_name": "cremin.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.351Z", - "stale_timestamp": "2034-10-08T11:32:33.351Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.351Z", - "updated": "2024-10-08T11:32:33.351Z", + "culled_timestamp": "2034-10-25T14:38:23.054Z", + "stale_timestamp": "2034-10-11T14:38:23.054Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.054Z", + "updated": "2024-10-11T14:38:23.054Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "auxiliary", - "namespace": "overriding" + "key": "alarm", + "value": "bluetooth", + "namespace": "indexing" }, { - "key": "bus", - "value": "primary", - "namespace": "programming" + "key": "firewall", + "value": "neural", + "namespace": "indexing" }, { - "key": "alarm", - "value": "cross-platform", - "namespace": "bypassing" + "key": "feed", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "system", - "value": "cross-platform", - "namespace": "synthesizing" + "key": "pixel", + "value": "solid state", + "namespace": "copying" }, { - "key": "feed", - "value": "1080p", - "namespace": "generating" + "key": "array", + "value": "redundant", + "namespace": "parsing" } ], "type": "system", @@ -10391,39 +10568,39 @@ "os_minor_version": 0 }, { - "id": "0ef1530d-603d-49fd-bc3c-7b8e9ec852d8", - "display_name": "fritsch-nicolas.test", + "id": "0209d917-7f64-4ba6-8981-513df34451ad", + "display_name": "block.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.353Z", - "stale_timestamp": "2034-10-08T11:32:33.353Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.353Z", - "updated": "2024-10-08T11:32:33.353Z", + "culled_timestamp": "2034-10-25T14:38:23.045Z", + "stale_timestamp": "2034-10-11T14:38:23.045Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.045Z", + "updated": "2024-10-11T14:38:23.045Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "1080p", - "namespace": "compressing" + "key": "program", + "value": "open-source", + "namespace": "connecting" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "transmitting" + "key": "capacitor", + "value": "auxiliary", + "namespace": "synthesizing" }, { - "key": "driver", - "value": "primary", - "namespace": "calculating" + "key": "microchip", + "value": "haptic", + "namespace": "parsing" }, { - "key": "feed", + "key": "monitor", "value": "redundant", - "namespace": "bypassing" + "namespace": "backing up" }, { - "key": "bus", + "key": "array", "value": "1080p", - "namespace": "parsing" + "namespace": "quantifying" } ], "type": "system", @@ -10431,39 +10608,39 @@ "os_minor_version": 0 }, { - "id": "13e198ba-c829-4238-bd9c-cc92c8a68fde", - "display_name": "zieme.test", + "id": "02df798b-9198-4eca-897e-78ed40f7dac0", + "display_name": "ratke.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.369Z", - "stale_timestamp": "2034-10-08T11:32:33.369Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.369Z", - "updated": "2024-10-08T11:32:33.369Z", + "culled_timestamp": "2034-10-25T14:38:23.052Z", + "stale_timestamp": "2034-10-11T14:38:23.052Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.052Z", + "updated": "2024-10-11T14:38:23.052Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "open-source", - "namespace": "overriding" + "key": "pixel", + "value": "solid state", + "namespace": "generating" }, { - "key": "matrix", - "value": "open-source", + "key": "transmitter", + "value": "1080p", "namespace": "transmitting" }, { - "key": "circuit", - "value": "optical", - "namespace": "parsing" + "key": "matrix", + "value": "1080p", + "namespace": "generating" }, { - "key": "array", - "value": "digital", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "virtual", + "namespace": "programming" }, { - "key": "bandwidth", - "value": "optical", - "namespace": "compressing" + "key": "bus", + "value": "open-source", + "namespace": "connecting" } ], "type": "system", @@ -10471,39 +10648,39 @@ "os_minor_version": 0 }, { - "id": "160649ca-4219-443c-bdfc-d1c7314adc17", - "display_name": "stiedemann.example", + "id": "09414105-1500-437a-b6c9-0b5f03f5c88c", + "display_name": "tremblay-watsica.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.367Z", - "stale_timestamp": "2034-10-08T11:32:33.367Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.367Z", - "updated": "2024-10-08T11:32:33.367Z", + "culled_timestamp": "2034-10-25T14:38:23.042Z", + "stale_timestamp": "2034-10-11T14:38:23.042Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.042Z", + "updated": "2024-10-11T14:38:23.042Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "cross-platform", - "namespace": "synthesizing" + "key": "capacitor", + "value": "neural", + "namespace": "overriding" }, { - "key": "sensor", - "value": "primary", - "namespace": "bypassing" + "key": "program", + "value": "online", + "namespace": "generating" }, { - "key": "protocol", - "value": "digital", - "namespace": "backing up" + "key": "sensor", + "value": "optical", + "namespace": "calculating" }, { - "key": "capacitor", - "value": "online", - "namespace": "quantifying" + "key": "hard drive", + "value": "1080p", + "namespace": "programming" }, { - "key": "bandwidth", - "value": "solid state", - "namespace": "copying" + "key": "microchip", + "value": "bluetooth", + "namespace": "parsing" } ], "type": "system", @@ -10511,39 +10688,39 @@ "os_minor_version": 0 }, { - "id": "247a67ea-a978-4ab8-b81a-a3aefc6e3bfd", - "display_name": "gutmann.example", + "id": "12fd6d6a-0e48-4ec2-b8d9-3223eca8e572", + "display_name": "mcglynn.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.358Z", - "stale_timestamp": "2034-10-08T11:32:33.358Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.358Z", - "updated": "2024-10-08T11:32:33.358Z", + "culled_timestamp": "2034-10-25T14:38:23.061Z", + "stale_timestamp": "2034-10-11T14:38:23.061Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.061Z", + "updated": "2024-10-11T14:38:23.061Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "open-source", - "namespace": "programming" + "key": "monitor", + "value": "neural", + "namespace": "synthesizing" }, { - "key": "circuit", - "value": "back-end", - "namespace": "backing up" + "key": "capacitor", + "value": "bluetooth", + "namespace": "indexing" }, { "key": "microchip", - "value": "primary", + "value": "mobile", "namespace": "hacking" }, { - "key": "pixel", - "value": "1080p", - "namespace": "programming" + "key": "capacitor", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "application", - "value": "wireless", - "namespace": "transmitting" + "key": "interface", + "value": "cross-platform", + "namespace": "compressing" } ], "type": "system", @@ -10551,39 +10728,39 @@ "os_minor_version": 0 }, { - "id": "307921e4-3c77-4ed6-9454-4542c8028685", - "display_name": "mueller.example", + "id": "23914886-58c6-4837-b103-59f9a5a34068", + "display_name": "quitzon.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.362Z", - "stale_timestamp": "2034-10-08T11:32:33.362Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.362Z", - "updated": "2024-10-08T11:32:33.362Z", + "culled_timestamp": "2034-10-25T14:38:23.040Z", + "stale_timestamp": "2034-10-11T14:38:23.040Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.040Z", + "updated": "2024-10-11T14:38:23.040Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "open-source", - "namespace": "programming" + "key": "interface", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "microchip", + "key": "interface", "value": "multi-byte", "namespace": "generating" }, { - "key": "pixel", - "value": "solid state", - "namespace": "backing up" + "key": "port", + "value": "online", + "namespace": "copying" }, { - "key": "panel", - "value": "open-source", - "namespace": "calculating" + "key": "system", + "value": "neural", + "namespace": "transmitting" }, { - "key": "firewall", - "value": "cross-platform", - "namespace": "indexing" + "key": "transmitter", + "value": "virtual", + "namespace": "navigating" } ], "type": "system", @@ -10591,39 +10768,39 @@ "os_minor_version": 0 }, { - "id": "54b14fad-c6f6-4f91-bfb0-1ffe42db2a6c", - "display_name": "schaefer.test", + "id": "2595bdb9-eff2-4fdd-b3c6-8961d2520115", + "display_name": "okuneva.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.364Z", - "stale_timestamp": "2034-10-08T11:32:33.364Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.364Z", - "updated": "2024-10-08T11:32:33.364Z", + "culled_timestamp": "2034-10-25T14:38:23.036Z", + "stale_timestamp": "2034-10-11T14:38:23.036Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.036Z", + "updated": "2024-10-11T14:38:23.036Z", "insights_id": null, "tags": [ { "key": "panel", - "value": "digital", - "namespace": "transmitting" + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "port", - "value": "mobile", - "namespace": "overriding" + "key": "feed", + "value": "auxiliary", + "namespace": "bypassing" }, { - "key": "application", - "value": "cross-platform", - "namespace": "backing up" + "key": "bandwidth", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "sensor", - "value": "online", - "namespace": "programming" + "key": "transmitter", + "value": "virtual", + "namespace": "copying" }, { - "key": "circuit", - "value": "haptic", - "namespace": "quantifying" + "key": "program", + "value": "cross-platform", + "namespace": "navigating" } ], "type": "system", @@ -10631,39 +10808,39 @@ "os_minor_version": 0 }, { - "id": "6924de10-8c69-461a-84b0-e6aee1b32da3", - "display_name": "bernier-leannon.example", + "id": "4cf82f6b-f8f4-4d11-a98b-2af5a673e733", + "display_name": "vandervort.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.354Z", - "stale_timestamp": "2034-10-08T11:32:33.354Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.354Z", - "updated": "2024-10-08T11:32:33.354Z", + "culled_timestamp": "2034-10-25T14:38:23.059Z", + "stale_timestamp": "2034-10-11T14:38:23.059Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.059Z", + "updated": "2024-10-11T14:38:23.059Z", "insights_id": null, "tags": [ { "key": "matrix", "value": "primary", - "namespace": "bypassing" + "namespace": "compressing" }, { - "key": "driver", - "value": "cross-platform", + "key": "matrix", + "value": "online", "namespace": "quantifying" }, { "key": "array", - "value": "back-end", - "namespace": "indexing" + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "array", - "value": "wireless", - "namespace": "copying" + "key": "card", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "driver", - "value": "solid state", - "namespace": "navigating" + "key": "system", + "value": "haptic", + "namespace": "quantifying" } ], "type": "system", @@ -10671,39 +10848,39 @@ "os_minor_version": 0 }, { - "id": "70c76c04-aee8-459d-9f64-d8e7a7f26993", - "display_name": "murazik.example", + "id": "562d96f9-f9e9-419b-9ed1-057100a5754b", + "display_name": "ratke.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.361Z", - "stale_timestamp": "2034-10-08T11:32:33.361Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.361Z", - "updated": "2024-10-08T11:32:33.361Z", + "culled_timestamp": "2034-10-25T14:38:23.062Z", + "stale_timestamp": "2034-10-11T14:38:23.062Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.062Z", + "updated": "2024-10-11T14:38:23.063Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "1080p", + "key": "sensor", + "value": "multi-byte", "namespace": "navigating" }, { - "key": "driver", - "value": "primary", - "namespace": "indexing" + "key": "circuit", + "value": "wireless", + "namespace": "parsing" }, { - "key": "feed", - "value": "online", + "key": "bus", + "value": "redundant", "namespace": "bypassing" }, { - "key": "pixel", - "value": "digital", + "key": "sensor", + "value": "neural", "namespace": "programming" }, { - "key": "bus", - "value": "bluetooth", - "namespace": "calculating" + "key": "transmitter", + "value": "1080p", + "namespace": "parsing" } ], "type": "system", @@ -10711,39 +10888,39 @@ "os_minor_version": 0 }, { - "id": "7a277321-19c7-4651-a0f2-d249d74bc3cd", - "display_name": "pfeffer-hansen.example", + "id": "6afcb073-dbd5-4f75-8012-9168cea41d46", + "display_name": "rath-hoppe.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.370Z", - "stale_timestamp": "2034-10-08T11:32:33.370Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.370Z", - "updated": "2024-10-08T11:32:33.370Z", + "culled_timestamp": "2034-10-25T14:38:23.028Z", + "stale_timestamp": "2034-10-11T14:38:23.028Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.028Z", + "updated": "2024-10-11T14:38:23.028Z", "insights_id": null, "tags": [ { "key": "bandwidth", - "value": "primary", - "namespace": "generating" + "value": "online", + "namespace": "quantifying" }, { - "key": "array", - "value": "digital", - "namespace": "indexing" + "key": "interface", + "value": "virtual", + "namespace": "backing up" }, { - "key": "port", - "value": "digital", - "namespace": "bypassing" + "key": "feed", + "value": "redundant", + "namespace": "copying" }, { - "key": "protocol", - "value": "primary", - "namespace": "backing up" + "key": "bus", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "feed", - "value": "back-end", - "namespace": "compressing" + "key": "capacitor", + "value": "open-source", + "namespace": "transmitting" } ], "type": "system", @@ -10758,9 +10935,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/a48e7435-d899-40d8-ad55-61eb2f30780a/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/a48e7435-d899-40d8-ad55-61eb2f30780a/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/a48e7435-d899-40d8-ad55-61eb2f30780a/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/e2bca0d8-c8fd-42d3-901b-34e1ab0def13/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/e2bca0d8-c8fd-42d3-901b-34e1ab0def13/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/e2bca0d8-c8fd-42d3-901b-34e1ab0def13/systems?limit=10&offset=10" } }, "summary": "", @@ -10803,7 +10980,7 @@ "items": { "type": "string", "examples": [ - "5e450eb9-0c81-466b-8ad7-02dac9b4f265" + "636b34c9-c963-4cdf-a60c-1ecd3a730808" ] } } @@ -10919,39 +11096,39 @@ "Assigns a System to a Policy": { "value": { "data": { - "id": "21859983-c070-44dc-826e-5d2026c7e830", - "display_name": "carroll.test", + "id": "9f91de02-8f23-49da-a446-896d31daad71", + "display_name": "maggio.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.542Z", - "stale_timestamp": "2034-10-08T11:32:33.542Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.542Z", - "updated": "2024-10-08T11:32:33.542Z", + "culled_timestamp": "2034-10-25T14:38:23.360Z", + "stale_timestamp": "2034-10-11T14:38:23.360Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.360Z", + "updated": "2024-10-11T14:38:23.360Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "redundant", - "namespace": "indexing" + "key": "driver", + "value": "1080p", + "namespace": "synthesizing" }, { - "key": "sensor", - "value": "optical", - "namespace": "copying" + "key": "microchip", + "value": "open-source", + "namespace": "connecting" }, { - "key": "driver", - "value": "haptic", - "namespace": "transmitting" + "key": "monitor", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "driver", - "value": "haptic", - "namespace": "quantifying" + "key": "port", + "value": "cross-platform", + "namespace": "indexing" }, { - "key": "bus", - "value": "wireless", - "namespace": "parsing" + "key": "monitor", + "value": "haptic", + "namespace": "calculating" } ], "type": "system", @@ -10987,7 +11164,7 @@ "Assigns a System to a Policy": { "value": { "errors": [ - "V2::System not found with ID 387a8b07-1e88-4cc0-a912-cb70f9f4c390" + "V2::System not found with ID 47462a39-3b50-45e8-9e67-7910b96ddc35" ] }, "summary": "", @@ -11044,39 +11221,39 @@ "Unassigns a System from a Policy": { "value": { "data": { - "id": "85841887-60b5-40ed-93b8-ef5acb454c29", - "display_name": "cummerata.test", + "id": "4d40aa2d-47f6-40ea-a5ed-e25d03e6011e", + "display_name": "farrell-feil.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.607Z", - "stale_timestamp": "2034-10-08T11:32:33.607Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.607Z", - "updated": "2024-10-08T11:32:33.607Z", + "culled_timestamp": "2034-10-25T14:38:23.460Z", + "stale_timestamp": "2034-10-11T14:38:23.460Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.460Z", + "updated": "2024-10-11T14:38:23.460Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "online", - "namespace": "navigating" + "key": "firewall", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "bus", - "value": "digital", - "namespace": "overriding" + "key": "system", + "value": "online", + "namespace": "bypassing" }, { - "key": "driver", - "value": "open-source", - "namespace": "copying" + "key": "pixel", + "value": "1080p", + "namespace": "hacking" }, { "key": "panel", - "value": "auxiliary", - "namespace": "indexing" + "value": "primary", + "namespace": "parsing" }, { - "key": "card", - "value": "primary", - "namespace": "navigating" + "key": "microchip", + "value": "solid state", + "namespace": "transmitting" } ], "type": "system", @@ -11112,7 +11289,7 @@ "Description of an error when unassigning a non-existing System": { "value": { "errors": [ - "V2::System not found with ID db646d54-5ecb-450a-88bc-fda08b340eed" + "V2::System not found with ID b58ef904-d7c6-43f8-8c7c-5a0da4ee8658" ] }, "summary": "", @@ -11239,39 +11416,39 @@ "value": { "data": [ { - "id": "02655c4c-1df8-450f-bd3b-9e38b379cd9c", - "display_name": "langworth.test", + "id": "112f7f19-4c6f-4e40-83a6-819baf0932dc", + "display_name": "auer.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.899Z", - "stale_timestamp": "2034-10-08T11:32:33.899Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.899Z", - "updated": "2024-10-08T11:32:33.899Z", + "culled_timestamp": "2034-10-25T14:38:23.904Z", + "stale_timestamp": "2034-10-11T14:38:23.904Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.904Z", + "updated": "2024-10-11T14:38:23.904Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "open-source", - "namespace": "backing up" + "key": "panel", + "value": "primary", + "namespace": "generating" }, { - "key": "program", - "value": "virtual", - "namespace": "compressing" + "key": "microchip", + "value": "multi-byte", + "namespace": "bypassing" }, { - "key": "port", - "value": "cross-platform", - "namespace": "programming" + "key": "bus", + "value": "online", + "namespace": "indexing" }, { - "key": "microchip", - "value": "multi-byte", - "namespace": "calculating" + "key": "monitor", + "value": "virtual", + "namespace": "navigating" }, { - "key": "firewall", - "value": "1080p", - "namespace": "indexing" + "key": "card", + "value": "optical", + "namespace": "transmitting" } ], "type": "system", @@ -11279,45 +11456,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "09d620f2-180d-4afa-b672-882e5433b1dc", - "display_name": "herman.example", + "id": "131602d9-8fec-4100-8208-d31b511af009", + "display_name": "zieme-ankunding.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.873Z", - "stale_timestamp": "2034-10-08T11:32:33.873Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.873Z", - "updated": "2024-10-08T11:32:33.873Z", + "culled_timestamp": "2034-10-25T14:38:23.880Z", + "stale_timestamp": "2034-10-11T14:38:23.880Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.880Z", + "updated": "2024-10-11T14:38:23.880Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "digital", - "namespace": "programming" - }, - { - "key": "hard drive", + "key": "transmitter", "value": "back-end", - "namespace": "overriding" + "namespace": "backing up" }, { - "key": "application", - "value": "redundant", - "namespace": "parsing" + "key": "alarm", + "value": "optical", + "namespace": "backing up" }, { - "key": "panel", - "value": "open-source", - "namespace": "generating" + "key": "matrix", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "firewall", - "value": "optical", + "key": "sensor", + "value": "solid state", "namespace": "navigating" + }, + { + "key": "interface", + "value": "digital", + "namespace": "parsing" } ], "type": "system", @@ -11325,45 +11502,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "293dbff6-3479-403c-ad1e-ad580313e885", - "display_name": "emmerich.example", + "id": "13af414b-9e76-4d64-b6a7-cc64a4000a74", + "display_name": "smith-cronin.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.912Z", - "stale_timestamp": "2034-10-08T11:32:33.912Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.912Z", - "updated": "2024-10-08T11:32:33.912Z", + "culled_timestamp": "2034-10-25T14:38:24.009Z", + "stale_timestamp": "2034-10-11T14:38:24.009Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.009Z", + "updated": "2024-10-11T14:38:24.009Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "digital", + "key": "card", + "value": "cross-platform", "namespace": "overriding" }, { - "key": "application", - "value": "wireless", - "namespace": "hacking" + "key": "alarm", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "circuit", - "value": "solid state", - "namespace": "synthesizing" + "key": "transmitter", + "value": "auxiliary", + "namespace": "indexing" }, { - "key": "feed", - "value": "solid state", - "namespace": "overriding" + "key": "microchip", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "port", - "value": "open-source", - "namespace": "parsing" + "key": "transmitter", + "value": "virtual", + "namespace": "transmitting" } ], "type": "system", @@ -11371,45 +11548,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "2f9a69e5-db71-4ac3-986d-ba908d095788", - "display_name": "osinski-ondricka.test", + "id": "1de3e403-6ea8-4e10-9942-45c4386b043f", + "display_name": "gottlieb.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.877Z", - "stale_timestamp": "2034-10-08T11:32:33.877Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.877Z", - "updated": "2024-10-08T11:32:33.877Z", + "culled_timestamp": "2034-10-25T14:38:23.987Z", + "stale_timestamp": "2034-10-11T14:38:23.987Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.987Z", + "updated": "2024-10-11T14:38:23.987Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "primary", - "namespace": "backing up" + "key": "protocol", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "virtual", - "namespace": "copying" + "key": "card", + "value": "cross-platform", + "namespace": "programming" }, { - "key": "driver", + "key": "port", "value": "primary", - "namespace": "bypassing" + "namespace": "connecting" }, { - "key": "pixel", - "value": "cross-platform", - "namespace": "generating" + "key": "card", + "value": "neural", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "redundant", - "namespace": "hacking" + "key": "feed", + "value": "mobile", + "namespace": "parsing" } ], "type": "system", @@ -11417,45 +11594,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "381fcdad-50ae-48c7-bdf2-57bf8afc011e", - "display_name": "bailey.test", + "id": "2ad42560-ce22-4091-b8b7-18ba2aab2675", + "display_name": "stoltenberg.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.890Z", - "stale_timestamp": "2034-10-08T11:32:33.890Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.890Z", - "updated": "2024-10-08T11:32:33.890Z", + "culled_timestamp": "2034-10-25T14:38:23.994Z", + "stale_timestamp": "2034-10-11T14:38:23.994Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.994Z", + "updated": "2024-10-11T14:38:23.994Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "neural", - "namespace": "connecting" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "calculating" }, { - "key": "hard drive", - "value": "multi-byte", - "namespace": "transmitting" + "key": "port", + "value": "wireless", + "namespace": "backing up" }, { - "key": "microchip", - "value": "digital", - "namespace": "quantifying" + "key": "bus", + "value": "solid state", + "namespace": "overriding" }, { - "key": "hard drive", - "value": "cross-platform", - "namespace": "quantifying" + "key": "circuit", + "value": "digital", + "namespace": "connecting" }, { - "key": "panel", - "value": "multi-byte", - "namespace": "hacking" + "key": "matrix", + "value": "neural", + "namespace": "quantifying" } ], "type": "system", @@ -11463,45 +11640,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "472c6078-2efa-4527-b36a-096ced518155", - "display_name": "vandervort.example", + "id": "2c117d88-9ba6-46e1-88de-753b0add509f", + "display_name": "turner.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.894Z", - "stale_timestamp": "2034-10-08T11:32:33.894Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.894Z", - "updated": "2024-10-08T11:32:33.894Z", + "culled_timestamp": "2034-10-25T14:38:23.964Z", + "stale_timestamp": "2034-10-11T14:38:23.964Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.964Z", + "updated": "2024-10-11T14:38:23.964Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "1080p", - "namespace": "generating" + "key": "panel", + "value": "redundant", + "namespace": "indexing" }, { - "key": "protocol", - "value": "back-end", - "namespace": "generating" + "key": "feed", + "value": "open-source", + "namespace": "copying" }, { - "key": "monitor", - "value": "primary", - "namespace": "generating" + "key": "transmitter", + "value": "haptic", + "namespace": "calculating" }, { "key": "bus", - "value": "digital", - "namespace": "generating" + "value": "neural", + "namespace": "programming" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "parsing" + "key": "bus", + "value": "1080p", + "namespace": "backing up" } ], "type": "system", @@ -11509,44 +11686,44 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "557e3d40-ecbe-4301-8db7-2ebd5899b2b3", - "display_name": "nikolaus.test", + "id": "35e57dfb-5fbb-4283-8037-3e252195bda5", + "display_name": "schuster.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.930Z", - "stale_timestamp": "2034-10-08T11:32:33.930Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.930Z", - "updated": "2024-10-08T11:32:33.931Z", + "culled_timestamp": "2034-10-25T14:38:24.052Z", + "stale_timestamp": "2034-10-11T14:38:24.052Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.052Z", + "updated": "2024-10-11T14:38:24.052Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "open-source", - "namespace": "programming" + "key": "driver", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "alarm", - "value": "primary", - "namespace": "transmitting" + "key": "array", + "value": "mobile", + "namespace": "navigating" }, { - "key": "firewall", - "value": "digital", - "namespace": "quantifying" + "key": "alarm", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "microchip", - "value": "cross-platform", - "namespace": "navigating" + "key": "bandwidth", + "value": "digital", + "namespace": "transmitting" }, { - "key": "interface", - "value": "back-end", + "key": "bus", + "value": "neural", "namespace": "bypassing" } ], @@ -11555,45 +11732,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "65161781-df07-4010-80ee-c2886539236d", - "display_name": "stracke.example", + "id": "38bec165-2dd4-4a98-96ec-cb7db63463a0", + "display_name": "hegmann.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.926Z", - "stale_timestamp": "2034-10-08T11:32:33.926Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.926Z", - "updated": "2024-10-08T11:32:33.926Z", + "culled_timestamp": "2034-10-25T14:38:23.972Z", + "stale_timestamp": "2034-10-11T14:38:23.972Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.972Z", + "updated": "2024-10-11T14:38:23.972Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "open-source", - "namespace": "hacking" + "key": "matrix", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "protocol", - "value": "digital", + "key": "program", + "value": "optical", "namespace": "transmitting" }, { - "key": "alarm", - "value": "haptic", - "namespace": "transmitting" + "key": "application", + "value": "optical", + "namespace": "backing up" }, { - "key": "port", - "value": "auxiliary", + "key": "firewall", + "value": "solid state", "namespace": "backing up" }, { - "key": "bus", - "value": "bluetooth", - "namespace": "calculating" + "key": "matrix", + "value": "virtual", + "namespace": "indexing" } ], "type": "system", @@ -11601,45 +11778,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "66b79758-e1b0-463e-a99f-f81345730aea", - "display_name": "nicolas-larkin.test", + "id": "4807ca72-1bb4-4b63-891e-39247c583202", + "display_name": "wehner.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.885Z", - "stale_timestamp": "2034-10-08T11:32:33.885Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.885Z", - "updated": "2024-10-08T11:32:33.885Z", + "culled_timestamp": "2034-10-25T14:38:24.016Z", + "stale_timestamp": "2034-10-11T14:38:24.016Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.016Z", + "updated": "2024-10-11T14:38:24.016Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "online", - "namespace": "transmitting" + "key": "panel", + "value": "haptic", + "namespace": "programming" }, { - "key": "microchip", - "value": "digital", - "namespace": "programming" + "key": "system", + "value": "online", + "namespace": "backing up" }, { - "key": "microchip", - "value": "1080p", - "namespace": "overriding" + "key": "panel", + "value": "open-source", + "namespace": "backing up" }, { - "key": "monitor", - "value": "redundant", + "key": "interface", + "value": "auxiliary", "namespace": "parsing" }, { - "key": "matrix", - "value": "cross-platform", - "namespace": "copying" + "key": "sensor", + "value": "solid state", + "namespace": "parsing" } ], "type": "system", @@ -11647,45 +11824,45 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] }, { - "id": "7165218f-8937-4e61-badf-da4432410e4d", - "display_name": "gibson.example", + "id": "5175ad9b-b6cc-4a6a-a6a7-6491b2b89a5a", + "display_name": "sauer-champlin.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:33.935Z", - "stale_timestamp": "2034-10-08T11:32:33.935Z", - "stale_warning_timestamp": "2034-10-15T11:32:33.935Z", - "updated": "2024-10-08T11:32:33.935Z", + "culled_timestamp": "2034-10-25T14:38:23.920Z", + "stale_timestamp": "2034-10-11T14:38:23.920Z", + "stale_warning_timestamp": "2034-10-18T14:38:23.920Z", + "updated": "2024-10-11T14:38:23.920Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "open-source", - "namespace": "bypassing" + "key": "hard drive", + "value": "bluetooth", + "namespace": "programming" }, { "key": "system", - "value": "online", - "namespace": "indexing" + "value": "bluetooth", + "namespace": "quantifying" }, { - "key": "panel", - "value": "auxiliary", - "namespace": "navigating" + "key": "driver", + "value": "digital", + "namespace": "synthesizing" }, { - "key": "monitor", - "value": "redundant", - "namespace": "generating" + "key": "alarm", + "value": "1080p", + "namespace": "parsing" }, { - "key": "system", - "value": "virtual", - "namespace": "indexing" + "key": "program", + "value": "cross-platform", + "namespace": "copying" } ], "type": "system", @@ -11693,8 +11870,8 @@ "os_minor_version": 0, "policies": [ { - "id": "545531fe-dfe5-4576-9380-65dd7bec2a23", - "title": "Repudiandae voluptatibus et incidunt." + "id": "3735a94b-3f97-41fa-b80a-947b5c9c5998", + "title": "Distinctio ducimus incidunt voluptate." } ] } @@ -11706,9 +11883,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/545531fe-dfe5-4576-9380-65dd7bec2a23/systems?limit=10&offset=0", - "last": "/api/compliance/v2/reports/545531fe-dfe5-4576-9380-65dd7bec2a23/systems?limit=10&offset=20", - "next": "/api/compliance/v2/reports/545531fe-dfe5-4576-9380-65dd7bec2a23/systems?limit=10&offset=10" + "first": "/api/compliance/v2/reports/3735a94b-3f97-41fa-b80a-947b5c9c5998/systems?limit=10&offset=0", + "last": "/api/compliance/v2/reports/3735a94b-3f97-41fa-b80a-947b5c9c5998/systems?limit=10&offset=20", + "next": "/api/compliance/v2/reports/3735a94b-3f97-41fa-b80a-947b5c9c5998/systems?limit=10&offset=10" } }, "summary": "", @@ -11718,39 +11895,39 @@ "value": { "data": [ { - "id": "18889a3c-76b3-4b7a-b93f-1239cee1c5d3", - "display_name": "corkery.test", + "id": "029610fa-8cad-4bc8-8990-57a4e07cfeeb", + "display_name": "champlin-stiedemann.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.160Z", - "stale_timestamp": "2034-10-08T11:32:34.160Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.160Z", - "updated": "2024-10-08T11:32:34.160Z", + "culled_timestamp": "2034-10-25T14:38:24.554Z", + "stale_timestamp": "2034-10-11T14:38:24.554Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.554Z", + "updated": "2024-10-11T14:38:24.554Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "digital", - "namespace": "calculating" - }, - { - "key": "program", - "value": "mobile", - "namespace": "indexing" + "key": "driver", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "firewall", - "value": "multi-byte", + "key": "bus", + "value": "auxiliary", "namespace": "hacking" }, { - "key": "pixel", - "value": "cross-platform", + "key": "hard drive", + "value": "solid state", "namespace": "bypassing" }, { - "key": "circuit", - "value": "neural", + "key": "feed", + "value": "primary", "namespace": "compressing" + }, + { + "key": "transmitter", + "value": "optical", + "namespace": "indexing" } ], "type": "system", @@ -11758,45 +11935,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "27c2e97c-fbf4-4fa4-82d8-651cea0865dc", - "display_name": "pollich.test", + "id": "0cad014c-a613-454f-a168-eba5e1e37e37", + "display_name": "pfeffer-green.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.257Z", - "stale_timestamp": "2034-10-08T11:32:34.257Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.257Z", - "updated": "2024-10-08T11:32:34.257Z", + "culled_timestamp": "2034-10-25T14:38:24.505Z", + "stale_timestamp": "2034-10-11T14:38:24.505Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.505Z", + "updated": "2024-10-11T14:38:24.505Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "back-end", + "key": "monitor", + "value": "multi-byte", "namespace": "overriding" }, { - "key": "capacitor", - "value": "digital", - "namespace": "backing up" + "key": "program", + "value": "bluetooth", + "namespace": "hacking" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "connecting" + "key": "bus", + "value": "neural", + "namespace": "copying" }, { - "key": "firewall", - "value": "neural", - "namespace": "backing up" + "key": "transmitter", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "application", - "value": "mobile", - "namespace": "synthesizing" + "key": "interface", + "value": "auxiliary", + "namespace": "bypassing" } ], "type": "system", @@ -11804,44 +11981,44 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "3a84bc35-d8b3-4f3e-bf7e-7b697a178dbc", - "display_name": "haag.example", + "id": "13cdacc6-6222-4aa0-aa29-e43736094d9b", + "display_name": "little.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.200Z", - "stale_timestamp": "2034-10-08T11:32:34.200Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.200Z", - "updated": "2024-10-08T11:32:34.200Z", + "culled_timestamp": "2034-10-25T14:38:24.522Z", + "stale_timestamp": "2034-10-11T14:38:24.522Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.522Z", + "updated": "2024-10-11T14:38:24.522Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "auxiliary", - "namespace": "transmitting" + "key": "program", + "value": "redundant", + "namespace": "overriding" }, { - "key": "bandwidth", - "value": "open-source", - "namespace": "programming" + "key": "circuit", + "value": "digital", + "namespace": "synthesizing" }, { - "key": "bus", - "value": "redundant", - "namespace": "synthesizing" + "key": "circuit", + "value": "neural", + "namespace": "hacking" }, { - "key": "array", - "value": "haptic", - "namespace": "parsing" + "key": "firewall", + "value": "digital", + "namespace": "quantifying" }, { - "key": "port", - "value": "digital", + "key": "circuit", + "value": "virtual", "namespace": "backing up" } ], @@ -11850,45 +12027,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "3eb9a28f-e774-4bff-9e06-14ad4ae23085", - "display_name": "balistreri-ledner.example", + "id": "2c7ad4b5-9028-4c25-ad36-2cc91368013c", + "display_name": "kiehn-rodriguez.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.174Z", - "stale_timestamp": "2034-10-08T11:32:34.174Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.174Z", - "updated": "2024-10-08T11:32:34.174Z", + "culled_timestamp": "2034-10-25T14:38:24.576Z", + "stale_timestamp": "2034-10-11T14:38:24.576Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.576Z", + "updated": "2024-10-11T14:38:24.576Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "online", - "namespace": "backing up" + "key": "program", + "value": "optical", + "namespace": "quantifying" }, { - "key": "array", - "value": "digital", - "namespace": "bypassing" + "key": "panel", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "hard drive", + "key": "sensor", "value": "optical", - "namespace": "backing up" + "namespace": "navigating" }, { "key": "interface", - "value": "auxiliary", - "namespace": "navigating" + "value": "haptic", + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "cross-platform", - "namespace": "overriding" + "key": "circuit", + "value": "digital", + "namespace": "navigating" } ], "type": "system", @@ -11896,45 +12073,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "41b0b4fa-8d3b-4f4a-abf4-eb28d75d437d", - "display_name": "murphy.test", + "id": "30469f3a-6c37-49ac-a36a-3e294f5a6f71", + "display_name": "lebsack-feeney.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.208Z", - "stale_timestamp": "2034-10-08T11:32:34.208Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.208Z", - "updated": "2024-10-08T11:32:34.208Z", + "culled_timestamp": "2034-10-25T14:38:24.539Z", + "stale_timestamp": "2034-10-11T14:38:24.539Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.539Z", + "updated": "2024-10-11T14:38:24.539Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "multi-byte", - "namespace": "programming" + "key": "interface", + "value": "solid state", + "namespace": "copying" }, { - "key": "panel", - "value": "1080p", - "namespace": "generating" + "key": "bandwidth", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "circuit", - "value": "multi-byte", - "namespace": "compressing" + "key": "pixel", + "value": "wireless", + "namespace": "navigating" }, { - "key": "transmitter", - "value": "virtual", - "namespace": "compressing" + "key": "monitor", + "value": "multi-byte", + "namespace": "calculating" }, { - "key": "transmitter", - "value": "solid state", - "namespace": "overriding" + "key": "monitor", + "value": "auxiliary", + "namespace": "synthesizing" } ], "type": "system", @@ -11942,45 +12119,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "4f5dfc45-261b-4b8a-95d7-dce4b795cb89", - "display_name": "welch.example", + "id": "30eb89a1-cf87-4957-ab94-3265038d436b", + "display_name": "funk-johnson.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.196Z", - "stale_timestamp": "2034-10-08T11:32:34.196Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.196Z", - "updated": "2024-10-08T11:32:34.196Z", + "culled_timestamp": "2034-10-25T14:38:24.531Z", + "stale_timestamp": "2034-10-11T14:38:24.531Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.531Z", + "updated": "2024-10-11T14:38:24.531Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "haptic", - "namespace": "generating" + "key": "bandwidth", + "value": "redundant", + "namespace": "indexing" }, { - "key": "bus", - "value": "solid state", - "namespace": "transmitting" + "key": "transmitter", + "value": "open-source", + "namespace": "programming" }, { - "key": "program", - "value": "back-end", - "namespace": "connecting" + "key": "matrix", + "value": "neural", + "namespace": "compressing" }, { "key": "transmitter", - "value": "back-end", - "namespace": "compressing" + "value": "wireless", + "namespace": "hacking" }, { - "key": "card", - "value": "optical", - "namespace": "hacking" + "key": "bandwidth", + "value": "virtual", + "namespace": "calculating" } ], "type": "system", @@ -11988,45 +12165,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "535fe08f-e13c-4151-8c67-109960ae3884", - "display_name": "cremin.example", + "id": "452a7e48-f4c1-46de-88cf-f4ed49c3b06d", + "display_name": "rath.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.237Z", - "stale_timestamp": "2034-10-08T11:32:34.237Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.237Z", - "updated": "2024-10-08T11:32:34.237Z", + "culled_timestamp": "2034-10-25T14:38:24.451Z", + "stale_timestamp": "2034-10-11T14:38:24.451Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.451Z", + "updated": "2024-10-11T14:38:24.451Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "open-source", - "namespace": "indexing" + "key": "transmitter", + "value": "redundant", + "namespace": "navigating" }, { - "key": "port", - "value": "optical", - "namespace": "programming" + "key": "circuit", + "value": "primary", + "namespace": "copying" }, { - "key": "feed", - "value": "mobile", - "namespace": "bypassing" + "key": "application", + "value": "optical", + "namespace": "navigating" }, { - "key": "bandwidth", - "value": "wireless", - "namespace": "navigating" + "key": "pixel", + "value": "solid state", + "namespace": "backing up" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "quantifying" + "key": "circuit", + "value": "open-source", + "namespace": "copying" } ], "type": "system", @@ -12034,45 +12211,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "7726cee7-8f57-4f85-b6d7-d9807f40320d", - "display_name": "douglas-metz.test", + "id": "4d82ddbf-6f80-4b91-bea6-2a8376415071", + "display_name": "fahey.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.247Z", - "stale_timestamp": "2034-10-08T11:32:34.247Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.247Z", - "updated": "2024-10-08T11:32:34.247Z", + "culled_timestamp": "2034-10-25T14:38:24.387Z", + "stale_timestamp": "2034-10-11T14:38:24.387Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.387Z", + "updated": "2024-10-11T14:38:24.387Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "digital", - "namespace": "connecting" + "key": "circuit", + "value": "haptic", + "namespace": "indexing" }, { - "key": "application", - "value": "open-source", - "namespace": "backing up" + "key": "panel", + "value": "neural", + "namespace": "calculating" }, { - "key": "firewall", - "value": "back-end", - "namespace": "navigating" + "key": "matrix", + "value": "redundant", + "namespace": "programming" }, { - "key": "bandwidth", - "value": "solid state", - "namespace": "programming" + "key": "circuit", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "monitor", - "value": "open-source", - "namespace": "backing up" + "key": "hard drive", + "value": "primary", + "namespace": "indexing" } ], "type": "system", @@ -12080,45 +12257,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "9557be49-8337-41de-b2e6-a9397d533b00", - "display_name": "kemmer.test", + "id": "575bf0e5-11a9-4f36-9987-994602240256", + "display_name": "bode.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.187Z", - "stale_timestamp": "2034-10-08T11:32:34.187Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.187Z", - "updated": "2024-10-08T11:32:34.187Z", + "culled_timestamp": "2034-10-25T14:38:24.431Z", + "stale_timestamp": "2034-10-11T14:38:24.431Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.431Z", + "updated": "2024-10-11T14:38:24.431Z", "insights_id": null, "tags": [ { - "key": "card", + "key": "hard drive", "value": "mobile", - "namespace": "parsing" + "namespace": "quantifying" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "calculating" + "key": "program", + "value": "primary", + "namespace": "connecting" }, { - "key": "panel", - "value": "multi-byte", - "namespace": "quantifying" + "key": "feed", + "value": "online", + "namespace": "synthesizing" }, { - "key": "monitor", - "value": "bluetooth", - "namespace": "hacking" + "key": "hard drive", + "value": "haptic", + "namespace": "quantifying" }, { - "key": "interface", - "value": "bluetooth", - "namespace": "programming" + "key": "driver", + "value": "digital", + "namespace": "bypassing" } ], "type": "system", @@ -12126,45 +12303,45 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] }, { - "id": "9b2d733b-4824-41e5-bb34-e0e90a872ffb", - "display_name": "oconnell.test", + "id": "6c928573-c121-455d-bb5a-0cdf133da9d2", + "display_name": "sawayn.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.223Z", - "stale_timestamp": "2034-10-08T11:32:34.223Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.223Z", - "updated": "2024-10-08T11:32:34.223Z", + "culled_timestamp": "2034-10-25T14:38:24.465Z", + "stale_timestamp": "2034-10-11T14:38:24.465Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.465Z", + "updated": "2024-10-11T14:38:24.465Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "cross-platform", - "namespace": "quantifying" + "key": "microchip", + "value": "primary", + "namespace": "generating" }, { - "key": "array", - "value": "cross-platform", - "namespace": "quantifying" + "key": "microchip", + "value": "back-end", + "namespace": "programming" }, { - "key": "card", - "value": "mobile", - "namespace": "hacking" + "key": "alarm", + "value": "haptic", + "namespace": "generating" }, { - "key": "program", - "value": "bluetooth", - "namespace": "transmitting" + "key": "sensor", + "value": "cross-platform", + "namespace": "copying" }, { - "key": "interface", - "value": "auxiliary", - "namespace": "backing up" + "key": "capacitor", + "value": "optical", + "namespace": "indexing" } ], "type": "system", @@ -12172,8 +12349,8 @@ "os_minor_version": 0, "policies": [ { - "id": "c45d8fc1-a07f-42ea-b435-69aac63a30af", - "title": "Consequatur nesciunt voluptatem odit." + "id": "4948b0da-0540-4396-bffd-c0b9aec6c2fb", + "title": "Eum molestiae id est." } ] } @@ -12186,9 +12363,9 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/reports/c45d8fc1-a07f-42ea-b435-69aac63a30af/systems?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/reports/c45d8fc1-a07f-42ea-b435-69aac63a30af/systems?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/reports/c45d8fc1-a07f-42ea-b435-69aac63a30af/systems?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/reports/4948b0da-0540-4396-bffd-c0b9aec6c2fb/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/reports/4948b0da-0540-4396-bffd-c0b9aec6c2fb/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/reports/4948b0da-0540-4396-bffd-c0b9aec6c2fb/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", @@ -12198,39 +12375,39 @@ "value": { "data": [ { - "id": "0e1c99d5-d7f5-4c4e-8fa7-c6c4f35da747", - "display_name": "howe-rogahn.test", + "id": "070536b5-4013-4eb8-befd-17478308c013", + "display_name": "hermann.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.562Z", - "stale_timestamp": "2034-10-08T11:32:34.562Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.562Z", - "updated": "2024-10-08T11:32:34.562Z", + "culled_timestamp": "2034-10-25T14:38:24.933Z", + "stale_timestamp": "2034-10-11T14:38:24.933Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.933Z", + "updated": "2024-10-11T14:38:24.933Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "optical", - "namespace": "generating" + "key": "driver", + "value": "digital", + "namespace": "quantifying" }, { - "key": "port", - "value": "1080p", - "namespace": "parsing" + "key": "card", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "sensor", - "value": "open-source", - "namespace": "generating" + "key": "matrix", + "value": "online", + "namespace": "calculating" }, { - "key": "port", - "value": "digital", - "namespace": "calculating" + "key": "alarm", + "value": "redundant", + "namespace": "parsing" }, { - "key": "sensor", - "value": "neural", - "namespace": "backing up" + "key": "port", + "value": "primary", + "namespace": "generating" } ], "type": "system", @@ -12238,45 +12415,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "0f26ad26-def5-4d30-836b-fd30b75b6286", - "display_name": "volkman.example", + "id": "0c78f79f-41c6-4400-99c8-a3b9c7981da4", + "display_name": "pagac.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.553Z", - "stale_timestamp": "2034-10-08T11:32:34.553Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.553Z", - "updated": "2024-10-08T11:32:34.553Z", + "culled_timestamp": "2034-10-25T14:38:24.957Z", + "stale_timestamp": "2034-10-11T14:38:24.957Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.957Z", + "updated": "2024-10-11T14:38:24.957Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "back-end", - "namespace": "transmitting" + "key": "feed", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "driver", + "key": "pixel", "value": "optical", - "namespace": "synthesizing" + "namespace": "backing up" }, { - "key": "port", - "value": "primary", - "namespace": "overriding" + "key": "bus", + "value": "cross-platform", + "namespace": "transmitting" }, { - "key": "sensor", - "value": "primary", - "namespace": "indexing" + "key": "program", + "value": "solid state", + "namespace": "hacking" }, { - "key": "monitor", - "value": "neural", - "namespace": "transmitting" + "key": "transmitter", + "value": "back-end", + "namespace": "navigating" } ], "type": "system", @@ -12284,45 +12461,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "1d35b2b2-4a1b-4f73-80a4-b916d559f3e5", - "display_name": "stokes.example", + "id": "0cd36930-a3f8-4bef-a668-9fb8f0f42c14", + "display_name": "cummerata.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.580Z", - "stale_timestamp": "2034-10-08T11:32:34.580Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.580Z", - "updated": "2024-10-08T11:32:34.580Z", + "culled_timestamp": "2034-10-25T14:38:25.057Z", + "stale_timestamp": "2034-10-11T14:38:25.057Z", + "stale_warning_timestamp": "2034-10-18T14:38:25.057Z", + "updated": "2024-10-11T14:38:25.057Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "solid state", - "namespace": "connecting" + "key": "transmitter", + "value": "back-end", + "namespace": "compressing" }, { - "key": "port", - "value": "digital", - "namespace": "compressing" + "key": "feed", + "value": "online", + "namespace": "indexing" }, { - "key": "firewall", - "value": "multi-byte", - "namespace": "compressing" + "key": "panel", + "value": "solid state", + "namespace": "overriding" }, { - "key": "protocol", - "value": "optical", - "namespace": "hacking" + "key": "bus", + "value": "virtual", + "namespace": "indexing" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "overriding" + "key": "protocol", + "value": "open-source", + "namespace": "transmitting" } ], "type": "system", @@ -12330,45 +12507,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "1e5972f0-a61b-4b79-9286-ede30f6acb30", - "display_name": "yost.example", + "id": "10f86651-2769-4c06-af97-3a10aefbe07b", + "display_name": "cronin-bogan.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.494Z", - "stale_timestamp": "2034-10-08T11:32:34.494Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.494Z", - "updated": "2024-10-08T11:32:34.494Z", + "culled_timestamp": "2034-10-25T14:38:24.886Z", + "stale_timestamp": "2034-10-11T14:38:24.886Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.886Z", + "updated": "2024-10-11T14:38:24.886Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "back-end", - "namespace": "indexing" + "key": "application", + "value": "primary", + "namespace": "copying" }, { "key": "system", - "value": "virtual", - "namespace": "indexing" + "value": "primary", + "namespace": "generating" }, { - "key": "port", - "value": "multi-byte", - "namespace": "generating" + "key": "firewall", + "value": "digital", + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "bypassing" + "key": "card", + "value": "digital", + "namespace": "quantifying" }, { - "key": "sensor", + "key": "pixel", "value": "primary", - "namespace": "backing up" + "namespace": "copying" } ], "type": "system", @@ -12376,45 +12553,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "2209297b-67b9-4245-977f-8a69f570d8f9", - "display_name": "klein.example", + "id": "19ba5e40-20fc-4032-9826-c9c0f492b8c2", + "display_name": "gleason.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.548Z", - "stale_timestamp": "2034-10-08T11:32:34.548Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.548Z", - "updated": "2024-10-08T11:32:34.548Z", + "culled_timestamp": "2034-10-25T14:38:25.009Z", + "stale_timestamp": "2034-10-11T14:38:25.009Z", + "stale_warning_timestamp": "2034-10-18T14:38:25.009Z", + "updated": "2024-10-11T14:38:25.009Z", "insights_id": null, "tags": [ { "key": "alarm", - "value": "haptic", - "namespace": "calculating" + "value": "primary", + "namespace": "navigating" }, { - "key": "circuit", - "value": "redundant", - "namespace": "backing up" + "key": "firewall", + "value": "solid state", + "namespace": "copying" }, { - "key": "sensor", - "value": "1080p", - "namespace": "programming" + "key": "driver", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "capacitor", - "value": "open-source", - "namespace": "transmitting" + "key": "monitor", + "value": "1080p", + "namespace": "backing up" }, { - "key": "driver", - "value": "optical", - "namespace": "backing up" + "key": "bandwidth", + "value": "auxiliary", + "namespace": "bypassing" } ], "type": "system", @@ -12422,45 +12599,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "389c5969-b52b-4d6c-86b9-c75bebf484fa", - "display_name": "cummings.example", + "id": "1c14105b-a176-4232-9362-cde2d1a467d8", + "display_name": "willms.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.539Z", - "stale_timestamp": "2034-10-08T11:32:34.539Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.539Z", - "updated": "2024-10-08T11:32:34.539Z", + "culled_timestamp": "2034-10-25T14:38:24.901Z", + "stale_timestamp": "2034-10-11T14:38:24.901Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.901Z", + "updated": "2024-10-11T14:38:24.901Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "mobile", - "namespace": "compressing" + "key": "hard drive", + "value": "primary", + "namespace": "connecting" }, { - "key": "program", - "value": "multi-byte", - "namespace": "quantifying" + "key": "matrix", + "value": "primary", + "namespace": "copying" }, { "key": "alarm", - "value": "virtual", - "namespace": "indexing" + "value": "cross-platform", + "namespace": "overriding" }, { - "key": "bus", - "value": "multi-byte", + "key": "system", + "value": "redundant", "namespace": "overriding" }, { - "key": "driver", - "value": "virtual", - "namespace": "connecting" + "key": "card", + "value": "online", + "namespace": "bypassing" } ], "type": "system", @@ -12468,44 +12645,44 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "401b2f74-8031-47db-a7e6-c451295eb10b", - "display_name": "hermiston-marvin.test", + "id": "314dd65f-c58c-4fe9-85ad-858a9eefcc4b", + "display_name": "harris.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.571Z", - "stale_timestamp": "2034-10-08T11:32:34.571Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.571Z", - "updated": "2024-10-08T11:32:34.571Z", + "culled_timestamp": "2034-10-25T14:38:24.862Z", + "stale_timestamp": "2034-10-11T14:38:24.862Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.862Z", + "updated": "2024-10-11T14:38:24.862Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "mobile", - "namespace": "overriding" + "key": "system", + "value": "virtual", + "namespace": "calculating" }, { - "key": "alarm", - "value": "online", - "namespace": "transmitting" + "key": "monitor", + "value": "neural", + "namespace": "navigating" }, { - "key": "pixel", - "value": "virtual", - "namespace": "bypassing" + "key": "hard drive", + "value": "online", + "namespace": "programming" }, { - "key": "pixel", - "value": "optical", - "namespace": "overriding" + "key": "bandwidth", + "value": "solid state", + "namespace": "hacking" }, { - "key": "capacitor", - "value": "neural", + "key": "monitor", + "value": "1080p", "namespace": "navigating" } ], @@ -12514,45 +12691,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "6c630f4d-be9b-4dd9-b928-0bbe2eb4c9a3", - "display_name": "gottlieb.test", + "id": "3bb32e3b-950e-4d71-9e82-036b1e110d13", + "display_name": "fritsch.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.530Z", - "stale_timestamp": "2034-10-08T11:32:34.530Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.530Z", - "updated": "2024-10-08T11:32:34.530Z", + "culled_timestamp": "2034-10-25T14:38:24.964Z", + "stale_timestamp": "2034-10-11T14:38:24.964Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.964Z", + "updated": "2024-10-11T14:38:24.964Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "optical", - "namespace": "synthesizing" + "key": "application", + "value": "online", + "namespace": "copying" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "quantifying" + "key": "card", + "value": "digital", + "namespace": "generating" }, { - "key": "driver", - "value": "digital", - "namespace": "connecting" + "key": "capacitor", + "value": "back-end", + "namespace": "indexing" }, { - "key": "firewall", - "value": "solid state", - "namespace": "bypassing" + "key": "monitor", + "value": "cross-platform", + "namespace": "hacking" }, { - "key": "array", - "value": "1080p", - "namespace": "backing up" + "key": "microchip", + "value": "online", + "namespace": "connecting" } ], "type": "system", @@ -12560,45 +12737,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "71177a61-2fcf-469e-bf0a-2eb50abd64e2", - "display_name": "padberg.test", + "id": "4938bdc8-9cf6-4f5a-87a3-bf8d3bd30981", + "display_name": "moore-donnelly.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.598Z", - "stale_timestamp": "2034-10-08T11:32:34.598Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.598Z", - "updated": "2024-10-08T11:32:34.598Z", + "culled_timestamp": "2034-10-25T14:38:24.980Z", + "stale_timestamp": "2034-10-11T14:38:24.980Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.980Z", + "updated": "2024-10-11T14:38:24.980Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "solid state", - "namespace": "parsing" + "key": "feed", + "value": "digital", + "namespace": "transmitting" }, { - "key": "bandwidth", - "value": "redundant", - "namespace": "hacking" + "key": "card", + "value": "1080p", + "namespace": "indexing" }, { - "key": "array", - "value": "bluetooth", - "namespace": "quantifying" + "key": "hard drive", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "card", - "value": "primary", - "namespace": "parsing" + "key": "protocol", + "value": "optical", + "namespace": "quantifying" }, { - "key": "sensor", + "key": "feed", "value": "neural", - "namespace": "bypassing" + "namespace": "navigating" } ], "type": "system", @@ -12606,45 +12783,45 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] }, { - "id": "788ad99d-0c14-4ec3-9d44-e92cb73bbe12", - "display_name": "kirlin-erdman.example", + "id": "4f9bb2d2-4615-428f-b587-3249b754fc85", + "display_name": "brown.test", "groups": [], - "culled_timestamp": "2034-10-22T11:32:34.589Z", - "stale_timestamp": "2034-10-08T11:32:34.589Z", - "stale_warning_timestamp": "2034-10-15T11:32:34.589Z", - "updated": "2024-10-08T11:32:34.589Z", + "culled_timestamp": "2034-10-25T14:38:24.940Z", + "stale_timestamp": "2034-10-11T14:38:24.940Z", + "stale_warning_timestamp": "2034-10-18T14:38:24.940Z", + "updated": "2024-10-11T14:38:24.940Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "auxiliary", - "namespace": "generating" + "key": "interface", + "value": "multi-byte", + "namespace": "programming" }, { - "key": "microchip", - "value": "back-end", - "namespace": "navigating" + "key": "array", + "value": "multi-byte", + "namespace": "connecting" }, { - "key": "sensor", - "value": "online", - "namespace": "calculating" + "key": "hard drive", + "value": "primary", + "namespace": "generating" }, { - "key": "circuit", - "value": "digital", - "namespace": "quantifying" + "key": "feed", + "value": "haptic", + "namespace": "calculating" }, { - "key": "transmitter", - "value": "open-source", - "namespace": "bypassing" + "key": "driver", + "value": "primary", + "namespace": "navigating" } ], "type": "system", @@ -12652,8 +12829,8 @@ "os_minor_version": 0, "policies": [ { - "id": "fb39b1de-15b4-42a9-9af0-33abfcdbbbed", - "title": "Quaerat quia adipisci molestias." + "id": "56939d22-7efb-4aac-bcd9-7c4c59441810", + "title": "Exercitationem illum cupiditate modi." } ] } @@ -12666,9 +12843,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/fb39b1de-15b4-42a9-9af0-33abfcdbbbed/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/fb39b1de-15b4-42a9-9af0-33abfcdbbbed/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", - "next": "/api/compliance/v2/reports/fb39b1de-15b4-42a9-9af0-33abfcdbbbed/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" + "first": "/api/compliance/v2/reports/56939d22-7efb-4aac-bcd9-7c4c59441810/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/56939d22-7efb-4aac-bcd9-7c4c59441810/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/reports/56939d22-7efb-4aac-bcd9-7c4c59441810/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -12837,39 +13014,39 @@ "Returns a System under a Report": { "value": { "data": { - "id": "9562e464-3dc2-4899-821c-4d91cee24036", - "display_name": "oberbrunner.test", + "id": "c8b8f982-d01f-4349-96d3-29feb3af75df", + "display_name": "smith-green.example", "groups": [], - "culled_timestamp": "2034-10-22T11:32:35.812Z", - "stale_timestamp": "2034-10-08T11:32:35.812Z", - "stale_warning_timestamp": "2034-10-15T11:32:35.812Z", - "updated": "2024-10-08T11:32:35.812Z", + "culled_timestamp": "2034-10-25T14:38:27.492Z", + "stale_timestamp": "2034-10-11T14:38:27.492Z", + "stale_warning_timestamp": "2034-10-18T14:38:27.492Z", + "updated": "2024-10-11T14:38:27.492Z", "insights_id": null, "tags": [ { - "key": "sensor", + "key": "feed", "value": "bluetooth", - "namespace": "generating" + "namespace": "compressing" }, { - "key": "interface", - "value": "neural", - "namespace": "indexing" + "key": "panel", + "value": "mobile", + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "digital", - "namespace": "quantifying" + "key": "microchip", + "value": "neural", + "namespace": "hacking" }, - { - "key": "card", - "value": "open-source", - "namespace": "bypassing" + { + "key": "program", + "value": "redundant", + "namespace": "parsing" }, { - "key": "pixel", + "key": "port", "value": "wireless", - "namespace": "hacking" + "namespace": "generating" } ], "type": "system", @@ -12877,8 +13054,8 @@ "os_minor_version": 0, "policies": [ { - "id": "7a6a1346-05c9-4607-9a7c-f9d0544c3248", - "title": "Non dolor aspernatur reprehenderit." + "id": "b4fcfdc5-47a4-4da2-bdc9-2121239c9b81", + "title": "Quia atque illo ut." } ] } @@ -12911,7 +13088,7 @@ "Description of an error when requesting a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 4b0ff2f9-6675-4c65-8333-84a8c0a1844c" + "V2::System not found with ID f0317d70-ea19-49c2-ad3e-99b4cbae4186" ] }, "summary": "", @@ -13020,104 +13197,104 @@ "value": { "data": [ { - "id": "10d6a8cd-50a5-4254-9123-8412dffc88e6", - "profile_id": "806d65b0-5429-4753-8645-9f5d52ca0e4f", - "os_minor_version": 19, + "id": "0f81f2ba-6c45-4750-9a95-6790068bf684", + "profile_id": "923f1f18-b730-4135-ad0e-98525a055e87", + "os_minor_version": 6, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "021b1a56-d7f5-4edc-b5a2-6d0535f48df8", - "security_guide_version": "100.96.14" + "security_guide_id": "8764dfa0-2651-42cb-90ca-80859d22f62c", + "security_guide_version": "100.96.31" }, { - "id": "164f3be1-90fb-43e3-9689-44363ae048ae", - "profile_id": "dcd4be54-e379-4f5e-9f54-d7a47671738f", - "os_minor_version": 17, + "id": "261d4454-a73f-4411-af03-0499dae0cbd1", + "profile_id": "492d1036-4504-493d-bf89-95203df9f77e", + "os_minor_version": 0, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "94534b6b-0f14-400e-bf45-9089a0acdf75", - "security_guide_version": "100.96.12" + "security_guide_id": "351d4e99-15d5-4e05-bc9a-e7b2a4d8bb63", + "security_guide_version": "100.96.25" }, { - "id": "1cfe436b-3e70-443d-ab24-cfa7baf6e1bb", - "profile_id": "994ec553-a3fd-46ab-bfd3-5cdea5d20dec", - "os_minor_version": 15, + "id": "292e6f42-4c21-4d3e-a336-161889fb36f1", + "profile_id": "ad31ac6a-fbb1-4b31-88df-557aa0d0ef48", + "os_minor_version": 1, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "eace2b6a-0c06-4cd0-88ec-04e4c3e557e0", - "security_guide_version": "100.96.10" + "security_guide_id": "f4d08915-fcdb-40a9-b95e-7f8617f4960d", + "security_guide_version": "100.96.26" }, { - "id": "2d24e08e-125d-4e30-96a2-512219109e19", - "profile_id": "ae025935-46bb-44b1-b285-f7dba6b86950", - "os_minor_version": 24, + "id": "2cb22ddf-f7d8-4dc1-83e4-e5259d985f24", + "profile_id": "55bf158c-89de-48b0-8138-eb0888b8ed85", + "os_minor_version": 19, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "77408c98-e33c-4f37-baec-2f2ddbb63184", - "security_guide_version": "100.96.19" + "security_guide_id": "89eb28ed-ea41-49ca-aa98-abca3f2a501b", + "security_guide_version": "100.96.44" }, { - "id": "43785f31-a2d7-48ca-b85f-65d1373e9a6e", - "profile_id": "356cffac-3cde-4d47-9f4e-fc1be0eb862c", - "os_minor_version": 23, + "id": "3a5ea273-aaea-40c5-b890-f750a872a1ae", + "profile_id": "c33c433e-f5f3-4e20-8e77-84e1a93481dd", + "os_minor_version": 18, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "8188ea96-a8aa-46e1-b633-300b4b85deb7", - "security_guide_version": "100.96.18" + "security_guide_id": "1f448281-d2c2-4ea5-844a-8fd05d8870e1", + "security_guide_version": "100.96.43" }, { - "id": "51214f9d-9e14-4fc3-8edc-41bc44d08964", - "profile_id": "41585e0d-c6c6-49a5-833f-186af30b94ef", - "os_minor_version": 1, + "id": "3c5feec7-e99a-41f6-902e-11d7cc839cfc", + "profile_id": "36a85367-f14a-4fe4-97be-8dedcf76b674", + "os_minor_version": 20, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "a43f890e-ebcc-4c7b-9e16-4ab7dd086f98", - "security_guide_version": "100.95.46" + "security_guide_id": "b92aca20-e0e4-4fd2-aa2f-aa1f5fa6407f", + "security_guide_version": "100.96.45" }, { - "id": "5e26f9af-98cb-4e07-958a-2d991b49129f", - "profile_id": "2b6a1479-521b-47c6-a6b9-d9c791b7f343", - "os_minor_version": 22, + "id": "47e39b98-5311-4b46-a31b-6e65ecb9d855", + "profile_id": "675166cf-80a9-4c1d-bca8-7895d1518dd9", + "os_minor_version": 17, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "e1fd4897-b7c0-4d03-bb7c-e353f9b9c0d4", - "security_guide_version": "100.96.17" + "security_guide_id": "894c3649-6140-4253-b2f6-3c2eca580b40", + "security_guide_version": "100.96.42" }, { - "id": "63b55c5c-6c88-405d-bc49-61319e5a6425", - "profile_id": "ac47dd6e-1b6d-4592-b114-5767cb8fc01d", - "os_minor_version": 0, + "id": "649a6a92-5c7d-424f-998f-e74ab82b29dd", + "profile_id": "c7a3732a-6177-4084-b81f-cfc67dabd7ea", + "os_minor_version": 9, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "ff23bad9-c4d3-4c62-878f-d7b9ee347943", - "security_guide_version": "100.95.45" + "security_guide_id": "25e9bc60-e7d2-43f8-89da-28b1c847d7ee", + "security_guide_version": "100.96.34" }, { - "id": "66811dba-ebd1-4bcd-a836-c28e1b0611ec", - "profile_id": "dcdee5b6-45a0-4266-a244-6c298bfe13b5", - "os_minor_version": 5, + "id": "69c8584b-3d53-43de-9a84-c4d81b7f52b3", + "profile_id": "7c7a0bc4-7264-4406-b460-0e5569a3938e", + "os_minor_version": 4, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "0d150fdd-e89d-481c-adf1-fda3799c5d1f", - "security_guide_version": "100.96.0" + "security_guide_id": "2bd2c9f7-1b26-4c1c-a885-7a4341221131", + "security_guide_version": "100.96.29" }, { - "id": "6b2d4219-1bb7-4a9e-a349-8d9b26ebba03", - "profile_id": "9c0e7ae2-f11c-4ad2-a234-e8ec115a9f36", - "os_minor_version": 8, + "id": "78c8887f-ffc0-49b9-aa7c-eeb0e2210dc9", + "profile_id": "31e53d7d-a698-4c22-b6a4-808320565621", + "os_minor_version": 21, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "3a263f7e-7d98-493e-914e-52353884cc2d", - "security_guide_version": "100.96.3" + "security_guide_id": "529aad5b-c3f2-4b53-9596-1ffb3bcfb933", + "security_guide_version": "100.96.46" } ], "meta": { @@ -13126,9 +13303,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/813f08bd-f73e-4fc9-87fe-f1974f963030/tailorings?limit=10&offset=0", - "last": "/api/compliance/v2/policies/813f08bd-f73e-4fc9-87fe-f1974f963030/tailorings?limit=10&offset=20", - "next": "/api/compliance/v2/policies/813f08bd-f73e-4fc9-87fe-f1974f963030/tailorings?limit=10&offset=10" + "first": "/api/compliance/v2/policies/7049155b-b7ca-455d-ba2c-343b2f32fca7/tailorings?limit=10&offset=0", + "last": "/api/compliance/v2/policies/7049155b-b7ca-455d-ba2c-343b2f32fca7/tailorings?limit=10&offset=20", + "next": "/api/compliance/v2/policies/7049155b-b7ca-455d-ba2c-343b2f32fca7/tailorings?limit=10&offset=10" } }, "summary": "", @@ -13138,104 +13315,104 @@ "value": { "data": [ { - "id": "b4df5fd2-f266-4639-86ec-f727995520db", - "profile_id": "48aa7d1e-c1f4-47d4-8070-f5747c79b386", + "id": "62844f44-7a2a-4150-84e4-2ee3571edc5a", + "profile_id": "ce0b5207-e2b2-4a7a-9f7b-3c33d627a63d", "os_minor_version": 0, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "3fb74697-5403-4a8a-9422-d4c0e0339a4d", - "security_guide_version": "100.96.20" + "security_guide_id": "d308bb75-7020-4954-bc15-47222e6c28d5", + "security_guide_version": "100.97.0" }, { - "id": "ec66224b-f31f-4be5-929c-b3b262f767f1", - "profile_id": "dfbb3d79-ccdc-47a9-9bba-13583613a0da", + "id": "c4335e3a-fbe4-45e2-a27c-91a286c022ca", + "profile_id": "2b1262c3-fa18-4b71-824a-6ecc5666f77f", "os_minor_version": 1, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "181c638f-9efd-4ca6-8167-92651bd07412", - "security_guide_version": "100.96.21" + "security_guide_id": "2e4e0893-c157-4ec4-9009-d19dff3e9a7a", + "security_guide_version": "100.97.1" }, { - "id": "bcc020e5-29e1-46b3-924b-741d80c10aa9", - "profile_id": "788f27d3-abc6-4a45-b520-0291d8c413b1", + "id": "77cc8258-8198-433a-97fb-b1d321ba8bab", + "profile_id": "5c75dea3-0031-44b9-969c-7528a0742c64", "os_minor_version": 2, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "678929fb-b861-437a-af1a-e99a497d6063", - "security_guide_version": "100.96.22" + "security_guide_id": "48da0d50-25fd-436b-af04-28069ce384bc", + "security_guide_version": "100.97.2" }, { - "id": "68c746a7-dd89-4ff2-9080-78714b4bf51e", - "profile_id": "4e07fe09-b97a-4501-ab1f-170ef9154876", + "id": "2cfcc878-3ed3-4402-8564-a866e5c763ca", + "profile_id": "3a1b24f4-b006-49a6-8951-b9e32e72142b", "os_minor_version": 3, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "6a39b215-50c4-46c4-99f0-37724637f494", - "security_guide_version": "100.96.23" + "security_guide_id": "b642b808-b417-4b8a-8f7f-591365dcaa11", + "security_guide_version": "100.97.3" }, { - "id": "f10d8769-8cb2-470e-902f-eb5405efdc77", - "profile_id": "4ea70600-10e2-4b6f-b3ee-e5cf6aa129cb", + "id": "f974ef7a-8c77-44b9-ba30-ddc4b0525cd5", + "profile_id": "0d328f34-dace-4725-9e97-aff657596806", "os_minor_version": 4, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "6c234b8f-29e8-476f-887c-bcd065cfe79b", - "security_guide_version": "100.96.24" + "security_guide_id": "f3d1ae42-630e-4d6c-b966-fa117420b659", + "security_guide_version": "100.97.4" }, { - "id": "ba75e72b-ef19-4997-a13c-c6406df0a38c", - "profile_id": "a752ef45-07c1-435c-9af5-13e6ce5b0c23", + "id": "691f2cb2-33ab-479d-a897-7e98f9501e8e", + "profile_id": "90114e96-4924-4ea0-96c4-64bde5de543b", "os_minor_version": 5, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "c33c63f2-1160-47e3-8003-3ebcc7707cc6", - "security_guide_version": "100.96.25" + "security_guide_id": "72755992-59b3-4b78-bb4d-4528729f7d75", + "security_guide_version": "100.97.5" }, { - "id": "e6b23c00-4be5-4c4e-938a-4f84a131e08d", - "profile_id": "e2c01bb6-a69f-4840-9997-965303e8363c", + "id": "72ad1c06-a35f-46f8-8ce2-f4142bea124a", + "profile_id": "582d6ba0-a941-4ccb-aac3-f8fc55ac92cd", "os_minor_version": 6, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "a83d35ec-0d36-4a09-97b9-1a81b5456410", - "security_guide_version": "100.96.26" + "security_guide_id": "ee077ccb-6908-4fac-b654-b922ddb72f23", + "security_guide_version": "100.97.6" }, { - "id": "a36c4cd0-7934-44ef-8b50-c827f7f954d8", - "profile_id": "7ef5716d-302e-429d-a40b-bb3396b85c19", + "id": "363e37fc-b330-41c4-9fef-d9cf5dc442fd", + "profile_id": "408f6205-6f0d-4cf9-b165-76e389c08a0b", "os_minor_version": 7, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "a3721749-658a-4272-9ca5-ce9c37b7d706", - "security_guide_version": "100.96.27" + "security_guide_id": "6781e566-7fcf-463e-a7f6-c06657f2906c", + "security_guide_version": "100.97.7" }, { - "id": "f6dd7722-3f74-49a5-9695-61b71914e33d", - "profile_id": "e4a49fe0-6fa8-44c8-b1e3-0b96aaa76cd2", + "id": "ac64d192-915a-4b33-8bcb-38d9d1895c0b", + "profile_id": "5f785b13-ad33-4348-b41b-96f47e81530e", "os_minor_version": 8, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "1ba07d79-ec03-4909-b8ed-f646058f7b87", - "security_guide_version": "100.96.28" + "security_guide_id": "5f3d9393-48b4-454b-91df-6c0d3b37704e", + "security_guide_version": "100.97.8" }, { - "id": "3b949f19-857c-4ad4-a98b-0296b3dbf157", - "profile_id": "063d04ec-190a-43f0-a852-4366c9df9f8e", + "id": "48c672bc-4dc6-4775-862d-36f82e9d354a", + "profile_id": "59bc2746-e3f1-4fbd-bd85-09542241e783", "os_minor_version": 9, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "064cbc71-8b16-421f-9b38-46052b4ac140", - "security_guide_version": "100.96.29" + "security_guide_id": "193d7643-4f8a-4a6b-b386-996ac84fcd66", + "security_guide_version": "100.97.9" } ], "meta": { @@ -13245,37 +13422,37 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/policies/f5735ead-29b7-4527-ac3b-5396b66e7247/tailorings?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/policies/f5735ead-29b7-4527-ac3b-5396b66e7247/tailorings?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/policies/f5735ead-29b7-4527-ac3b-5396b66e7247/tailorings?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/policies/06f25336-703b-43c9-b113-4949160f0e4e/tailorings?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/06f25336-703b-43c9-b113-4949160f0e4e/tailorings?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/06f25336-703b-43c9-b113-4949160f0e4e/tailorings?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", "description": "" }, - "List of Tailorings filtered by '(os_minor_version=4)'": { + "List of Tailorings filtered by '(os_minor_version=14)'": { "value": { "data": [ { - "id": "027312a5-ee27-49be-8146-79b9c34a3864", - "profile_id": "e27c4f33-ee28-4d35-88a2-fb79a752e8b8", - "os_minor_version": 4, + "id": "08796927-ddfe-4177-a22e-e12c84d0c089", + "profile_id": "f69bc14a-528d-4f49-8454-9aeb3f1619af", + "os_minor_version": 14, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "37f67538-52ed-4c64-98a7-bb962e325d18", - "security_guide_version": "100.96.49" + "security_guide_id": "7890aab4-a73f-414f-9a65-0a75b2fd583a", + "security_guide_version": "100.97.39" } ], "meta": { "total": 1, - "filter": "(os_minor_version=4)", + "filter": "(os_minor_version=14)", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/f61be177-5088-4f1c-ac3f-a51f41f020cf/tailorings?filter=%28os_minor_version%3D4%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/f61be177-5088-4f1c-ac3f-a51f41f020cf/tailorings?filter=%28os_minor_version%3D4%29&limit=10&offset=0" + "first": "/api/compliance/v2/policies/c05f6163-cd56-42d7-958d-45c57b03fbab/tailorings?filter=%28os_minor_version%3D14%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/c05f6163-cd56-42d7-958d-45c57b03fbab/tailorings?filter=%28os_minor_version%3D14%29&limit=10&offset=0" } }, "summary": "", @@ -13372,14 +13549,14 @@ "Response example": { "value": { "data": { - "id": "832fea3c-4d73-4197-b2f4-654a4b282077", - "profile_id": "0db20d76-1d6a-4456-bd65-242ef314636b", + "id": "5acd1630-2ee5-4514-a46b-1db995f98376", + "profile_id": "fad5ef21-1a73-4cb0-9a75-7fb9888e4d9b", "os_minor_version": 1, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "886459ad-9cb6-490e-9143-50ab0a202e3a", - "security_guide_version": "100.98.20" + "security_guide_id": "e350c702-909f-4c4a-97c1-e917bf3ad952", + "security_guide_version": "100.99.0" } }, "summary": "", @@ -13458,14 +13635,14 @@ "Returns a Tailoring": { "value": { "data": { - "id": "fa927793-d47a-4966-84aa-520b04226d00", - "profile_id": "e9d1951e-aa3d-450e-8a8e-43df87e1e6e8", + "id": "21b22be9-177e-4188-bb68-1cf05517c4a8", + "profile_id": "bf5cba56-2f2a-4074-ab23-518523e6fae5", "os_minor_version": 1, "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "31ea0ad7-550a-45b3-9b28-262ab80584c4", - "security_guide_version": "100.98.21" + "security_guide_id": "e0652d94-c701-47d2-b000-11675f6d3ee6", + "security_guide_version": "100.99.1" } }, "summary": "", @@ -13496,7 +13673,7 @@ "Description of an error when requesting a non-existing Tailoring": { "value": { "errors": [ - "V2::Tailoring not found with ID 56759195-bd2b-4afd-90e7-1c209355ef0c" + "V2::Tailoring not found with ID 7bca5194-9f68-416e-9ac8-babbe533c89b" ] }, "summary": "", @@ -13554,16 +13731,16 @@ "Returns the updated Tailoring": { "value": { "data": { - "id": "94ba30f7-9697-48b0-a1d4-a565dd469612", - "profile_id": "b5de539f-54cd-4500-bb96-9d3ddaceecd6", + "id": "3fa5bc1b-cd0c-482a-a87c-7c005d56fbfb", + "profile_id": "fc8db972-d361-4fa7-8551-fe84623afea5", "os_minor_version": 1, "value_overrides": { - "3c9d743c-ceab-4fb6-b00e-f39e6d6ba812": "123" + "a3cbcdba-5b40-4758-a9ef-14650991d358": "123" }, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "e06bf456-6a64-4cac-a72e-2177f4ccc326", - "security_guide_version": "100.98.22" + "security_guide_id": "efa659c8-d6a2-443f-a97b-a61f8c02f14c", + "security_guide_version": "100.99.2" } }, "summary": "", @@ -13598,6 +13775,183 @@ } } }, + "/policies/{policy_id}/tailorings/{tailoring_id}/rule_tree": { + "get": { + "summary": "Request the Rule Tree of a Tailoring", + "parameters": [ + { + "name": "X-RH-IDENTITY", + "in": "header", + "schema": { + "type": "string" + }, + "description": "For internal use only" + }, + { + "name": "policy_id", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "tailoring_id", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "tags": [ + "Policies" + ], + "description": "Returns the Rule Tree of a Tailoring", + "operationId": "TailoringRuleTree", + "responses": { + "200": { + "description": "Returns the Rule Tree of a Tailoring", + "content": { + "application/vnd.api+json": { + "examples": { + "Returns the Rule Tree of a Tailoring": { + "value": [ + { + "id": "791d51f4-83ff-4516-939c-071033f3c5ad", + "type": "rule_group", + "children": [ + { + "id": "5f79da54-4540-4c0f-85f3-9bf0a46d73a6", + "type": "rule" + } + ] + }, + { + "id": "29613677-90ca-4943-9c65-1f9f7991dd77", + "type": "rule_group", + "children": [ + { + "id": "f6a8d1c6-fd44-4bca-ac6f-7d315caf7ccf", + "type": "rule" + } + ] + }, + { + "id": "300ee482-aa23-45dc-a2fb-b3fe7a2b656a", + "type": "rule_group", + "children": [ + { + "id": "1fc6fbe9-0bf5-443e-8189-cbf7d61603bc", + "type": "rule" + } + ] + }, + { + "id": "5d1c84e6-c992-4fd6-81a5-2f5e09234d13", + "type": "rule_group", + "children": [ + { + "id": "de7dbb73-01ed-40c0-8cd9-3d9df90564f1", + "type": "rule" + } + ] + }, + { + "id": "467c8dcc-1182-46e3-94f7-529ff852c932", + "type": "rule_group", + "children": [ + { + "id": "9623cef2-987f-4981-9bab-8e177928e387", + "type": "rule" + } + ] + }, + { + "id": "7f41fadf-1025-47c3-9246-043f8b0c837e", + "type": "rule_group", + "children": [ + { + "id": "ae3fab69-40a0-4879-9f7d-4d9946718b0c", + "type": "rule" + } + ] + }, + { + "id": "89dee167-1a40-46f9-8110-f4af6ecabbfa", + "type": "rule_group", + "children": [ + { + "id": "77745039-b621-46a6-a4a8-e294f70ee588", + "type": "rule" + } + ] + }, + { + "id": "5aba7397-1e5e-460a-9a70-f73bdf09d1fc", + "type": "rule_group", + "children": [ + { + "id": "ffab7177-c748-4a39-b7f9-98adb4beb8b1", + "type": "rule" + } + ] + }, + { + "id": "dc765503-df35-4d37-9698-4650a56ed098", + "type": "rule_group", + "children": [ + { + "id": "7ac1ecbd-467e-4a24-bdbf-3820433f7e2d", + "type": "rule" + } + ] + }, + { + "id": "94a5cc78-09e7-4993-87b0-e8e3fc7b0391", + "type": "rule_group", + "children": [ + { + "id": "cce88c53-a830-45bc-8375-5cc5db631a49", + "type": "rule" + } + ] + } + ], + "summary": "", + "description": "" + } + }, + "schema": { + "$ref": "#/components/schemas/rule_tree" + } + } + } + }, + "404": { + "description": "Returns with Not Found", + "content": { + "application/vnd.api+json": { + "examples": { + "Description of an error when requesting a non-existing Tailoring": { + "value": { + "errors": [ + "V2::Tailoring not found with ID 687b91f3-57fe-4029-a273-1b711918dcea" + ] + }, + "summary": "", + "description": "" + } + }, + "schema": { + "$ref": "#/components/schemas/errors" + } + } + } + } + } + } + }, "/policies/{policy_id}/tailorings/{tailoring_id}/tailoring_file.json": { "get": { "summary": "Request a Tailoring file", @@ -13643,16 +13997,16 @@ "value": { "profiles": [ { - "id": "xccdf_org.ssgproject.content_profile_55f7d7cc149cffec7c83b25607a08388", - "title": "Quia qui veritatis eum.", + "id": "xccdf_org.ssgproject.content_profile_973accd26dec458cfa992628eb08407a", + "title": "Impedit occaecati et quia.", "groups": {}, "rules": {}, "variables": { - "foo_value_ad09757e-44f8-4c22-9a53-2eb79dacef4f": { - "value": "54084" + "foo_value_38f85fd1-ed12-420c-90ad-a9c223f94901": { + "value": "362640" }, - "foo_value_0985e068-c8de-4157-bb32-a32f909d6514": { - "value": "489090" + "foo_value_3fcba9a0-cb3b-4936-b933-1af874ab4812": { + "value": "353737" } } } @@ -13779,424 +14133,424 @@ "value": { "data": [ { - "id": "0ddb19e9-9af1-419c-8785-9ca09deea0e4", - "end_time": "2024-10-08T11:31:37.704Z", + "id": "050d2a5c-d535-47ac-92c8-a44f79fd132e", + "end_time": "2024-10-11T14:37:30.410Z", "failed_rule_count": 0, "supported": true, - "score": 46.38145057215605, + "score": 66.84684103122332, "type": "test_result", - "display_name": "feeney.test", + "display_name": "koepp.example", "groups": [], "tags": [ { - "key": "monitor", - "value": "neural", - "namespace": "copying" + "key": "alarm", + "value": "online", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "multi-byte", - "namespace": "compressing" + "key": "array", + "value": "bluetooth", + "namespace": "connecting" }, { - "key": "driver", - "value": "back-end", - "namespace": "copying" + "key": "pixel", + "value": "online", + "namespace": "overriding" }, { - "key": "pixel", - "value": "primary", - "namespace": "transmitting" + "key": "bandwidth", + "value": "mobile", + "namespace": "parsing" }, { - "key": "bus", + "key": "monitor", "value": "auxiliary", - "namespace": "programming" + "namespace": "connecting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "cd52eb00-a85a-454b-9425-14c5a2fd4bd4", - "security_guide_version": "100.99.45" + "system_id": "f780c902-020a-4f56-aee8-6e8ecabaeb90", + "security_guide_version": "100.101.28" }, { - "id": "15499521-d90d-476c-bcca-49399552de4d", - "end_time": "2024-10-08T11:31:37.777Z", + "id": "0d34b099-2151-405b-afae-185839248226", + "end_time": "2024-10-11T14:37:30.465Z", "failed_rule_count": 0, "supported": true, - "score": 27.53164108549356, + "score": 34.5889503977699, "type": "test_result", - "display_name": "ziemann.example", + "display_name": "volkman.test", "groups": [], "tags": [ { - "key": "card", - "value": "solid state", - "namespace": "transmitting" + "key": "circuit", + "value": "wireless", + "namespace": "parsing" }, { - "key": "matrix", - "value": "solid state", - "namespace": "navigating" + "key": "transmitter", + "value": "virtual", + "namespace": "connecting" }, { "key": "port", - "value": "haptic", - "namespace": "hacking" + "value": "1080p", + "namespace": "copying" }, { - "key": "port", - "value": "solid state", - "namespace": "generating" + "key": "protocol", + "value": "optical", + "namespace": "bypassing" }, { - "key": "application", - "value": "cross-platform", - "namespace": "indexing" + "key": "protocol", + "value": "mobile", + "namespace": "backing up" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "3820fef7-2a15-45cb-bfe5-c53c07b6edde", - "security_guide_version": "100.99.45" + "system_id": "e7e0d341-fa27-4e11-b27c-b7ae49165db4", + "security_guide_version": "100.101.28" }, { - "id": "1c7f0f9d-6973-43c6-a2ee-08fcfe0535e2", - "end_time": "2024-10-08T11:31:37.801Z", + "id": "4091ec34-79ab-4953-9f8a-98bab33e63ed", + "end_time": "2024-10-11T14:37:30.614Z", "failed_rule_count": 0, "supported": true, - "score": 73.92483147916182, + "score": 38.2372292404736, "type": "test_result", - "display_name": "batz.test", + "display_name": "mcglynn.test", "groups": [], "tags": [ { - "key": "monitor", - "value": "auxiliary", - "namespace": "synthesizing" + "key": "panel", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "protocol", - "value": "auxiliary", - "namespace": "bypassing" + "key": "matrix", + "value": "cross-platform", + "namespace": "transmitting" }, { - "key": "feed", - "value": "virtual", - "namespace": "navigating" + "key": "firewall", + "value": "solid state", + "namespace": "indexing" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "backing up" + "key": "port", + "value": "1080p", + "namespace": "overriding" }, { - "key": "protocol", - "value": "1080p", - "namespace": "compressing" + "key": "firewall", + "value": "wireless", + "namespace": "indexing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "6cd662f1-dd01-440e-beab-8ac0d1e5e423", - "security_guide_version": "100.99.45" + "system_id": "dce49d7b-9130-4589-8627-11f6bb1dc335", + "security_guide_version": "100.101.28" }, { - "id": "268469ad-4974-4646-b259-4e1e4639f012", - "end_time": "2024-10-08T11:31:37.771Z", + "id": "49fd2d20-0361-4211-8595-0bde5ea6dd3a", + "end_time": "2024-10-11T14:37:30.554Z", "failed_rule_count": 0, "supported": true, - "score": 3.11844352516627, + "score": 63.35584653429639, "type": "test_result", - "display_name": "dooley.test", + "display_name": "kulas.test", "groups": [], "tags": [ { - "key": "microchip", - "value": "haptic", - "namespace": "synthesizing" + "key": "transmitter", + "value": "digital", + "namespace": "bypassing" }, { - "key": "pixel", - "value": "primary", - "namespace": "copying" + "key": "matrix", + "value": "1080p", + "namespace": "navigating" }, { - "key": "driver", - "value": "open-source", - "namespace": "parsing" + "key": "feed", + "value": "primary", + "namespace": "overriding" }, { - "key": "matrix", - "value": "mobile", - "namespace": "generating" + "key": "driver", + "value": "primary", + "namespace": "indexing" }, { - "key": "bandwidth", - "value": "bluetooth", - "namespace": "transmitting" + "key": "interface", + "value": "wireless", + "namespace": "indexing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "5e4dcd81-10d2-4ef9-b487-0a840cabc2c3", - "security_guide_version": "100.99.45" + "system_id": "56dd94db-685b-4194-a502-98d6ad53e769", + "security_guide_version": "100.101.28" }, { - "id": "2def2b95-646d-4ffe-a0be-2684d15e1bad", - "end_time": "2024-10-08T11:31:37.748Z", + "id": "533615b3-a3df-4a5d-9122-c56268721443", + "end_time": "2024-10-11T14:37:30.455Z", "failed_rule_count": 0, "supported": true, - "score": 30.390105810896, + "score": 48.44635693042694, "type": "test_result", - "display_name": "fritsch-hahn.test", + "display_name": "ward.example", "groups": [], "tags": [ { - "key": "driver", - "value": "redundant", - "namespace": "copying" + "key": "array", + "value": "online", + "namespace": "backing up" }, { - "key": "capacitor", - "value": "neural", - "namespace": "connecting" + "key": "matrix", + "value": "solid state", + "namespace": "hacking" }, { - "key": "sensor", - "value": "bluetooth", - "namespace": "quantifying" + "key": "monitor", + "value": "virtual", + "namespace": "calculating" }, { - "key": "interface", - "value": "optical", - "namespace": "hacking" + "key": "protocol", + "value": "redundant", + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "primary", - "namespace": "copying" + "key": "bandwidth", + "value": "wireless", + "namespace": "connecting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "57e51750-ff95-4e9b-84aa-953ca6482e05", - "security_guide_version": "100.99.45" + "system_id": "1299815a-d18e-44e0-aea1-384aa8e50705", + "security_guide_version": "100.101.28" }, { - "id": "3bf14f4a-f8bb-4fc5-aba5-39f88345d1c4", - "end_time": "2024-10-08T11:31:37.677Z", + "id": "58df3c4c-1ac7-4ce4-9f47-b4e8ab530618", + "end_time": "2024-10-11T14:37:30.536Z", "failed_rule_count": 0, "supported": true, - "score": 68.61162642350577, + "score": 4.46669799576902, "type": "test_result", - "display_name": "homenick.test", + "display_name": "pfannerstill-nienow.test", "groups": [], "tags": [ { - "key": "port", - "value": "haptic", - "namespace": "overriding" + "key": "transmitter", + "value": "optical", + "namespace": "backing up" }, { - "key": "firewall", - "value": "back-end", - "namespace": "parsing" + "key": "interface", + "value": "1080p", + "namespace": "overriding" }, { - "key": "card", - "value": "open-source", - "namespace": "calculating" + "key": "program", + "value": "back-end", + "namespace": "programming" }, { - "key": "array", - "value": "virtual", - "namespace": "compressing" + "key": "protocol", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "port", - "value": "redundant", + "key": "matrix", + "value": "open-source", "namespace": "synthesizing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "50b3f422-cb6b-4cdc-9664-1176e4667645", - "security_guide_version": "100.99.45" + "system_id": "5e1adbc7-5d7c-42b4-b600-9af7fbbb22cf", + "security_guide_version": "100.101.28" }, { - "id": "417a0f95-ddc5-4d5f-8fe6-7c6195b1f5d5", - "end_time": "2024-10-08T11:31:37.667Z", + "id": "59127350-ad03-480e-af62-d3a0bc33cfb5", + "end_time": "2024-10-11T14:37:30.623Z", "failed_rule_count": 0, "supported": true, - "score": 38.51991215009451, + "score": 84.01507089769522, "type": "test_result", - "display_name": "daugherty.test", + "display_name": "barton.test", "groups": [], "tags": [ { - "key": "circuit", - "value": "digital", - "namespace": "navigating" - }, - { - "key": "bandwidth", - "value": "optical", - "namespace": "connecting" + "key": "sensor", + "value": "virtual", + "namespace": "transmitting" }, { - "key": "card", - "value": "mobile", + "key": "array", + "value": "wireless", "namespace": "indexing" }, { "key": "system", - "value": "multi-byte", + "value": "bluetooth", + "namespace": "connecting" + }, + { + "key": "interface", + "value": "neural", "namespace": "indexing" }, { - "key": "program", - "value": "online", - "namespace": "overriding" + "key": "panel", + "value": "cross-platform", + "namespace": "parsing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "6b0e584e-e22e-40fd-aab8-3ea18d7355fa", - "security_guide_version": "100.99.45" + "system_id": "6eed555d-de05-437c-8fca-06c54769f405", + "security_guide_version": "100.101.28" }, { - "id": "44e565fb-bf5c-4e3a-ade6-b4fa0194203c", - "end_time": "2024-10-08T11:31:37.683Z", + "id": "5d7337cd-85c9-41db-bda2-26a10dd47745", + "end_time": "2024-10-11T14:37:30.428Z", "failed_rule_count": 0, "supported": true, - "score": 4.831243376740179, + "score": 37.12486956947439, "type": "test_result", - "display_name": "satterfield.example", + "display_name": "walter.example", "groups": [], "tags": [ { - "key": "feed", - "value": "wireless", - "namespace": "calculating" + "key": "protocol", + "value": "online", + "namespace": "copying" }, { - "key": "sensor", - "value": "open-source", + "key": "port", + "value": "wireless", "namespace": "synthesizing" }, { - "key": "monitor", - "value": "1080p", - "namespace": "overriding" + "key": "port", + "value": "back-end", + "namespace": "hacking" }, { - "key": "hard drive", - "value": "wireless", - "namespace": "compressing" + "key": "microchip", + "value": "cross-platform", + "namespace": "backing up" }, { - "key": "application", - "value": "mobile", - "namespace": "overriding" + "key": "port", + "value": "open-source", + "namespace": "hacking" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "610253ce-799e-43c2-b211-cc91105cd47a", - "security_guide_version": "100.99.45" + "system_id": "c85ca51b-039c-4f96-8a68-171117cf9673", + "security_guide_version": "100.101.28" }, { - "id": "4d555756-3307-4777-a614-c95a2e84b4e3", - "end_time": "2024-10-08T11:31:37.808Z", + "id": "7ce7c7cb-b9c4-42cb-ace8-fc982a31fcc0", + "end_time": "2024-10-11T14:37:30.545Z", "failed_rule_count": 0, "supported": true, - "score": 54.23501134329547, + "score": 51.26162439600789, "type": "test_result", - "display_name": "hyatt-oberbrunner.example", + "display_name": "bernier.example", "groups": [], "tags": [ { - "key": "microchip", - "value": "cross-platform", - "namespace": "synthesizing" + "key": "bus", + "value": "virtual", + "namespace": "overriding" }, { - "key": "array", - "value": "solid state", - "namespace": "compressing" + "key": "hard drive", + "value": "back-end", + "namespace": "generating" }, { - "key": "array", + "key": "circuit", "value": "digital", - "namespace": "overriding" + "namespace": "bypassing" }, { - "key": "microchip", - "value": "haptic", - "namespace": "bypassing" + "key": "hard drive", + "value": "virtual", + "namespace": "compressing" }, { - "key": "circuit", - "value": "online", - "namespace": "navigating" + "key": "array", + "value": "haptic", + "namespace": "synthesizing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "670c2a7d-9330-4e6f-a8e4-70d9febdf352", - "security_guide_version": "100.99.45" + "system_id": "8c5f0224-e2e6-475c-943b-b033ffe22b90", + "security_guide_version": "100.101.28" }, { - "id": "5c7272e2-c667-4891-af77-0a48b26cf309", - "end_time": "2024-10-08T11:31:37.782Z", + "id": "8004c075-2622-4a73-b850-26ef4d0549fb", + "end_time": "2024-10-11T14:37:30.491Z", "failed_rule_count": 0, "supported": true, - "score": 35.62101261710937, + "score": 84.77349342418525, "type": "test_result", - "display_name": "zboncak.test", + "display_name": "oconnell.example", "groups": [], "tags": [ { - "key": "panel", - "value": "haptic", - "namespace": "bypassing" + "key": "port", + "value": "optical", + "namespace": "synthesizing" }, { - "key": "alarm", - "value": "open-source", - "namespace": "programming" + "key": "program", + "value": "primary", + "namespace": "copying" }, { - "key": "firewall", - "value": "online", - "namespace": "bypassing" + "key": "microchip", + "value": "neural", + "namespace": "transmitting" }, { - "key": "program", - "value": "virtual", - "namespace": "copying" + "key": "sensor", + "value": "optical", + "namespace": "overriding" }, { - "key": "matrix", - "value": "solid state", - "namespace": "navigating" + "key": "alarm", + "value": "multi-byte", + "namespace": "overriding" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "6b42477a-4df1-418d-b08c-2dc38ae195ea", - "security_guide_version": "100.99.45" + "system_id": "33e819f4-28e0-4579-9942-5ea00ba000e0", + "security_guide_version": "100.101.28" } ], "meta": { @@ -14205,9 +14559,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/8406f3f1-8adf-4180-93b2-31ca5bd58bb3/test_results?limit=10&offset=0", - "last": "/api/compliance/v2/reports/8406f3f1-8adf-4180-93b2-31ca5bd58bb3/test_results?limit=10&offset=20", - "next": "/api/compliance/v2/reports/8406f3f1-8adf-4180-93b2-31ca5bd58bb3/test_results?limit=10&offset=10" + "first": "/api/compliance/v2/reports/610108e8-4d38-42d7-9017-ab25b0f05fa6/test_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/610108e8-4d38-42d7-9017-ab25b0f05fa6/test_results?limit=10&offset=20", + "next": "/api/compliance/v2/reports/610108e8-4d38-42d7-9017-ab25b0f05fa6/test_results?limit=10&offset=10" } }, "summary": "", @@ -14217,424 +14571,424 @@ "value": { "data": [ { - "id": "82fb2396-4097-41b1-ac25-06aae55382d8", - "end_time": "2024-10-08T11:31:38.159Z", + "id": "1d5dd947-b96c-4d3a-aa73-6e509582ec1e", + "end_time": "2024-10-11T14:37:31.158Z", "failed_rule_count": 0, "supported": true, - "score": 0.5673613022359136, + "score": 0.08290220548575755, "type": "test_result", - "display_name": "miller.test", + "display_name": "lindgren.test", "groups": [], "tags": [ { - "key": "transmitter", - "value": "open-source", - "namespace": "compressing" + "key": "microchip", + "value": "online", + "namespace": "quantifying" }, { - "key": "array", - "value": "bluetooth", + "key": "hard drive", + "value": "online", "namespace": "quantifying" }, { - "key": "firewall", - "value": "multi-byte", - "namespace": "backing up" + "key": "bus", + "value": "open-source", + "namespace": "generating" }, { - "key": "program", - "value": "optical", - "namespace": "navigating" + "key": "feed", + "value": "redundant", + "namespace": "transmitting" }, { - "key": "bandwidth", - "value": "multi-byte", - "namespace": "connecting" + "key": "microchip", + "value": "virtual", + "namespace": "backing up" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "c0f36d19-8275-4487-8905-3ed6235e51ea", - "security_guide_version": "100.101.4" + "system_id": "e8426f85-6953-4d95-ac2b-66619e7f2540", + "security_guide_version": "100.102.44" }, { - "id": "ab00bf29-9306-4b66-a5ee-0a1f804f6b97", - "end_time": "2024-10-08T11:31:38.126Z", + "id": "107a3f8b-b994-444b-8692-45fe818bf904", + "end_time": "2024-10-11T14:37:31.185Z", "failed_rule_count": 0, "supported": true, - "score": 0.9858887108206038, + "score": 1.722071828844873, "type": "test_result", - "display_name": "vonrueden.test", + "display_name": "champlin.example", "groups": [], "tags": [ { - "key": "protocol", + "key": "capacitor", "value": "bluetooth", - "namespace": "connecting" + "namespace": "hacking" }, { - "key": "microchip", - "value": "primary", - "namespace": "indexing" + "key": "bandwidth", + "value": "back-end", + "namespace": "generating" }, { - "key": "interface", - "value": "auxiliary", - "namespace": "copying" + "key": "array", + "value": "haptic", + "namespace": "bypassing" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "quantifying" + "key": "bandwidth", + "value": "open-source", + "namespace": "parsing" }, { - "key": "feed", - "value": "virtual", - "namespace": "programming" + "key": "transmitter", + "value": "haptic", + "namespace": "indexing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "43751d82-1b5f-4042-8e76-fabc63e8224c", - "security_guide_version": "100.101.4" + "system_id": "96bb8f09-d750-4a8a-9d32-19c5c132b146", + "security_guide_version": "100.102.44" }, { - "id": "8c54f0c0-b57a-42a4-85a2-a28aeedcb95a", - "end_time": "2024-10-08T11:31:38.073Z", + "id": "6d2052d0-070a-4f14-8959-5712e8920c12", + "end_time": "2024-10-11T14:37:31.048Z", "failed_rule_count": 0, "supported": true, - "score": 1.835684282116734, + "score": 16.08271204347018, "type": "test_result", - "display_name": "mraz-jaskolski.test", + "display_name": "luettgen.example", "groups": [], "tags": [ { - "key": "feed", - "value": "open-source", + "key": "system", + "value": "online", "namespace": "bypassing" }, { - "key": "protocol", - "value": "wireless", - "namespace": "hacking" + "key": "matrix", + "value": "primary", + "namespace": "overriding" }, { - "key": "circuit", - "value": "auxiliary", - "namespace": "hacking" + "key": "program", + "value": "solid state", + "namespace": "navigating" }, { - "key": "matrix", - "value": "mobile", - "namespace": "synthesizing" + "key": "card", + "value": "bluetooth", + "namespace": "compressing" }, { - "key": "protocol", - "value": "1080p", - "namespace": "indexing" + "key": "sensor", + "value": "digital", + "namespace": "synthesizing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "e7b93214-34d7-40c1-84de-66ca24e4f079", - "security_guide_version": "100.101.4" + "system_id": "3edd2390-0f11-4e76-bf4b-6d4aee751278", + "security_guide_version": "100.102.44" }, { - "id": "73533577-186c-4bcd-8e50-0d9928ac51ba", - "end_time": "2024-10-08T11:31:38.149Z", + "id": "d104884a-b2ef-48d7-91b0-ad24db43d7bd", + "end_time": "2024-10-11T14:37:30.980Z", "failed_rule_count": 0, "supported": true, - "score": 9.2774066870012, + "score": 18.38785279834569, "type": "test_result", - "display_name": "pacocha-lehner.test", + "display_name": "orn-ankunding.test", "groups": [], "tags": [ { - "key": "interface", - "value": "virtual", - "namespace": "connecting" + "key": "program", + "value": "optical", + "namespace": "calculating" }, { - "key": "sensor", - "value": "mobile", - "namespace": "copying" + "key": "microchip", + "value": "online", + "namespace": "backing up" }, { - "key": "driver", - "value": "1080p", - "namespace": "copying" + "key": "application", + "value": "mobile", + "namespace": "hacking" }, { - "key": "interface", - "value": "optical", + "key": "bus", + "value": "online", "namespace": "compressing" }, { - "key": "transmitter", - "value": "wireless", - "namespace": "calculating" + "key": "driver", + "value": "mobile", + "namespace": "navigating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "98972a95-6a09-419a-9da5-1271aef8cd94", - "security_guide_version": "100.101.4" + "system_id": "6352d959-153e-4063-b746-aea3d72b3a25", + "security_guide_version": "100.102.44" }, { - "id": "a0ba22b0-6917-4563-a8ca-33d6e819556c", - "end_time": "2024-10-08T11:31:38.109Z", + "id": "600ac01e-82f0-40dc-890f-72d50bfe00b1", + "end_time": "2024-10-11T14:37:31.144Z", "failed_rule_count": 0, "supported": true, - "score": 12.43102814479936, + "score": 18.47366189001762, "type": "test_result", - "display_name": "dare.example", + "display_name": "senger-dietrich.example", "groups": [], "tags": [ { - "key": "capacitor", - "value": "redundant", - "namespace": "hacking" + "key": "port", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "application", + "key": "alarm", "value": "neural", - "namespace": "generating" + "namespace": "navigating" }, { - "key": "firewall", - "value": "primary", - "namespace": "synthesizing" + "key": "monitor", + "value": "neural", + "namespace": "calculating" }, { - "key": "interface", - "value": "bluetooth", - "namespace": "calculating" + "key": "application", + "value": "optical", + "namespace": "synthesizing" }, { - "key": "array", - "value": "solid state", - "namespace": "indexing" + "key": "program", + "value": "digital", + "namespace": "calculating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "3d0ab387-da61-4194-bf50-e8ff2ee91dba", - "security_guide_version": "100.101.4" + "system_id": "854a460c-697a-40ef-ace4-d51c285fad00", + "security_guide_version": "100.102.44" }, { - "id": "668bb9ce-3623-474f-80b0-21da702fc7eb", - "end_time": "2024-10-08T11:31:38.176Z", + "id": "729cb1b0-2ec0-45da-92f2-66bf50e1acfc", + "end_time": "2024-10-11T14:37:31.010Z", "failed_rule_count": 0, "supported": true, - "score": 18.69444005949655, + "score": 27.40407296577157, "type": "test_result", - "display_name": "collier-kautzer.example", + "display_name": "veum.example", "groups": [], "tags": [ { "key": "interface", - "value": "mobile", - "namespace": "backing up" + "value": "primary", + "namespace": "quantifying" }, { - "key": "program", - "value": "virtual", - "namespace": "calculating" + "key": "application", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "bandwidth", - "value": "solid state", - "namespace": "backing up" + "key": "protocol", + "value": "neural", + "namespace": "compressing" }, { - "key": "bus", - "value": "haptic", - "namespace": "copying" + "key": "port", + "value": "solid state", + "namespace": "generating" }, { - "key": "bus", - "value": "mobile", - "namespace": "bypassing" + "key": "bandwidth", + "value": "online", + "namespace": "transmitting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "d6e3e94b-f908-4ff4-b01a-8392fd2b65cd", - "security_guide_version": "100.101.4" + "system_id": "12afc715-2fe9-4c24-8de4-d8541c62961a", + "security_guide_version": "100.102.44" }, { - "id": "78673f9b-9f1f-4c77-bca5-0301705b9a22", - "end_time": "2024-10-08T11:31:38.204Z", + "id": "d1792588-fc96-4941-ab87-8bb6436163f5", + "end_time": "2024-10-11T14:37:31.067Z", "failed_rule_count": 0, "supported": true, - "score": 20.6878211433971, + "score": 32.34049335176115, "type": "test_result", - "display_name": "shanahan.example", + "display_name": "barton.example", "groups": [], "tags": [ { - "key": "bandwidth", - "value": "haptic", - "namespace": "overriding" + "key": "capacitor", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "program", - "value": "1080p", - "namespace": "synthesizing" + "key": "array", + "value": "multi-byte", + "namespace": "copying" }, { - "key": "capacitor", - "value": "bluetooth", - "namespace": "backing up" + "key": "firewall", + "value": "back-end", + "namespace": "compressing" }, { - "key": "interface", - "value": "primary", - "namespace": "calculating" + "key": "port", + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "panel", + "key": "bus", "value": "back-end", - "namespace": "parsing" + "namespace": "compressing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "79c0fab8-5426-4a07-b50c-20607526e484", - "security_guide_version": "100.101.4" + "system_id": "30921804-26fb-49e7-b6c0-fd643caf63c3", + "security_guide_version": "100.102.44" }, { - "id": "fb548c7b-0652-427e-92ae-0d923bf3fc09", - "end_time": "2024-10-08T11:31:38.080Z", + "id": "830f441c-66df-4483-ac9e-480d89c5face", + "end_time": "2024-10-11T14:37:31.117Z", "failed_rule_count": 0, "supported": true, - "score": 23.75609317554474, + "score": 32.4639209866183, "type": "test_result", - "display_name": "johns-waelchi.test", + "display_name": "brakus-schumm.test", "groups": [], "tags": [ - { - "key": "alarm", - "value": "optical", - "namespace": "bypassing" - }, { "key": "firewall", - "value": "optical", + "value": "auxiliary", "namespace": "quantifying" }, { - "key": "panel", - "value": "optical", - "namespace": "calculating" + "key": "pixel", + "value": "open-source", + "namespace": "bypassing" }, { - "key": "circuit", - "value": "digital", - "namespace": "indexing" + "key": "microchip", + "value": "virtual", + "namespace": "connecting" }, { - "key": "firewall", - "value": "bluetooth", - "namespace": "indexing" + "key": "port", + "value": "neural", + "namespace": "programming" + }, + { + "key": "capacitor", + "value": "back-end", + "namespace": "copying" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "aa0d81fc-482d-4be2-9d88-7d14b2f62183", - "security_guide_version": "100.101.4" + "system_id": "fac9609e-03e4-4abb-b8ea-4cb06e985699", + "security_guide_version": "100.102.44" }, { - "id": "0dbd8dae-7db9-4f23-9198-1879519bcb1a", - "end_time": "2024-10-08T11:31:38.115Z", + "id": "1b78b248-d96f-48ae-8c83-a5b08cbe12ee", + "end_time": "2024-10-11T14:37:31.205Z", "failed_rule_count": 0, "supported": true, - "score": 27.05994900349286, + "score": 41.17724929057868, "type": "test_result", - "display_name": "west.test", + "display_name": "gerhold.test", "groups": [], "tags": [ { - "key": "application", - "value": "redundant", - "namespace": "indexing" + "key": "driver", + "value": "digital", + "namespace": "calculating" }, { "key": "microchip", - "value": "solid state", - "namespace": "generating" + "value": "multi-byte", + "namespace": "parsing" }, { "key": "pixel", - "value": "auxiliary", - "namespace": "copying" + "value": "wireless", + "namespace": "calculating" }, { - "key": "array", - "value": "digital", - "namespace": "programming" + "key": "matrix", + "value": "primary", + "namespace": "transmitting" }, { - "key": "application", - "value": "open-source", - "namespace": "quantifying" + "key": "program", + "value": "online", + "namespace": "synthesizing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "3c157443-afeb-484a-ae33-0ed5c9d9143c", - "security_guide_version": "100.101.4" + "system_id": "cb804811-89c8-4ddb-9f6e-40f6a405f662", + "security_guide_version": "100.102.44" }, { - "id": "bfe5103c-aaa1-4f68-a32a-18c46304f4d2", - "end_time": "2024-10-08T11:31:38.154Z", + "id": "7692c437-57fe-4ad2-9aca-0e99e90074cf", + "end_time": "2024-10-11T14:37:30.990Z", "failed_rule_count": 0, "supported": true, - "score": 33.20599273406921, + "score": 46.3671555114532, "type": "test_result", - "display_name": "wiza.test", + "display_name": "baumbach.test", "groups": [], "tags": [ { - "key": "application", + "key": "feed", "value": "neural", - "namespace": "compressing" + "namespace": "programming" }, { - "key": "feed", - "value": "1080p", - "namespace": "quantifying" + "key": "alarm", + "value": "primary", + "namespace": "parsing" }, { - "key": "capacitor", - "value": "1080p", - "namespace": "programming" + "key": "protocol", + "value": "mobile", + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "optical", - "namespace": "hacking" + "key": "pixel", + "value": "redundant", + "namespace": "compressing" }, { - "key": "panel", - "value": "redundant", - "namespace": "synthesizing" + "key": "protocol", + "value": "auxiliary", + "namespace": "programming" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "0e29fc79-84e8-4705-b861-9edf1dc8c8ef", - "security_guide_version": "100.101.4" + "system_id": "ebeb9ab0-1ba5-4fd9-91e1-14ec5643c52b", + "security_guide_version": "100.102.44" } ], "meta": { @@ -14644,9 +14998,9 @@ "sort_by": "score" }, "links": { - "first": "/api/compliance/v2/reports/02223ff6-1f87-4860-ae00-1ed2d4d44212/test_results?limit=10&offset=0&sort_by=score", - "last": "/api/compliance/v2/reports/02223ff6-1f87-4860-ae00-1ed2d4d44212/test_results?limit=10&offset=20&sort_by=score", - "next": "/api/compliance/v2/reports/02223ff6-1f87-4860-ae00-1ed2d4d44212/test_results?limit=10&offset=10&sort_by=score" + "first": "/api/compliance/v2/reports/4ef2f8e5-7e47-4360-8780-e1c18bd4adf2/test_results?limit=10&offset=0&sort_by=score", + "last": "/api/compliance/v2/reports/4ef2f8e5-7e47-4360-8780-e1c18bd4adf2/test_results?limit=10&offset=20&sort_by=score", + "next": "/api/compliance/v2/reports/4ef2f8e5-7e47-4360-8780-e1c18bd4adf2/test_results?limit=10&offset=10&sort_by=score" } }, "summary": "", @@ -14662,8 +15016,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/88935264-8236-4ce4-bde8-1b12b1fb3053/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/88935264-8236-4ce4-bde8-1b12b1fb3053/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0" + "first": "/api/compliance/v2/reports/65e4dded-2abb-4c0b-b58f-a74e5d9d22ee/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/65e4dded-2abb-4c0b-b58f-a74e5d9d22ee/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0" } }, "summary": "", @@ -14832,46 +15186,46 @@ "Returns a Test Result under a Report": { "value": { "data": { - "id": "3d6ab0a4-08f6-48ed-9c8c-b29bb5c8beed", - "end_time": "2024-10-08T11:31:40.131Z", + "id": "ef711a43-d481-4a96-a04a-90d75af7da40", + "end_time": "2024-10-11T14:37:33.810Z", "failed_rule_count": 0, "supported": true, - "score": 20.0080114240056, + "score": 41.07442944352071, "type": "test_result", - "display_name": "bartoletti.example", + "display_name": "bins-rogahn.example", "groups": [], "tags": [ { - "key": "matrix", - "value": "optical", - "namespace": "parsing" + "key": "transmitter", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "panel", - "value": "bluetooth", - "namespace": "connecting" + "key": "bandwidth", + "value": "primary", + "namespace": "backing up" }, { - "key": "array", - "value": "solid state", - "namespace": "transmitting" + "key": "panel", + "value": "open-source", + "namespace": "navigating" }, { - "key": "bus", - "value": "open-source", - "namespace": "calculating" + "key": "circuit", + "value": "virtual", + "namespace": "compressing" }, { - "key": "matrix", - "value": "mobile", - "namespace": "indexing" + "key": "alarm", + "value": "online", + "namespace": "quantifying" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "7ff29bb2-74b4-4e1d-990e-ef62b3141c37", - "security_guide_version": "100.107.27" + "system_id": "3ca0b001-d4e0-45c2-a8ce-e2de59b6b1f2", + "security_guide_version": "100.109.5" } }, "summary": "", @@ -14902,7 +15256,7 @@ "Description of an error when requesting a non-existing Test Result": { "value": { "errors": [ - "V2::TestResult not found with ID 62ce0bb0-5219-41d9-972b-43db291af990" + "V2::TestResult not found with ID 0770ae9b-f42e-457c-98fb-43136fa5c67b" ] }, "summary": "", @@ -15011,93 +15365,93 @@ "value": { "data": [ { - "id": "03d30688-f0c2-4a0f-abb5-3bc4a2bdd606", - "ref_id": "foo_value_a5f3cff9-4554-4653-bce1-8757de96c9c6", - "title": "Impedit exercitationem accusantium rerum.", - "description": "Veritatis sapiente dolorum. Ut voluptatem omnis. In consequatur veritatis.", + "id": "0c86dda7-ea4a-4b9b-9a77-3bdb6ee4e64c", + "ref_id": "foo_value_bfe3313c-83e8-49f6-a1a3-19ba74ae4b2b", + "title": "Dolor voluptate impedit voluptas.", + "description": "Doloremque modi aut. Facere corrupti molestias. Est quia iusto.", "value_type": "number", - "default_value": "0.07892939650779052", + "default_value": "0.27864454171552855", "type": "value_definition" }, { - "id": "255ca0d4-259e-459d-b4d5-be50f6305dea", - "ref_id": "foo_value_828389df-7d2d-4d59-908f-8f9dbbc92082", - "title": "Enim iusto qui repellat.", - "description": "Impedit quam voluptas. Rerum quam magni. Itaque hic non.", + "id": "0dc750a3-cdec-4707-807a-ef3a6ed2e686", + "ref_id": "foo_value_985a9f3d-7a31-4dc6-b88e-1c9a8faedcdd", + "title": "Dolores natus aut voluptatem.", + "description": "Pariatur repellendus minus. Impedit et consectetur. Cum temporibus est.", "value_type": "number", - "default_value": "0.611933171270912", + "default_value": "0.5845102949223583", "type": "value_definition" }, { - "id": "2d706d12-773e-433c-914e-0950ab95a679", - "ref_id": "foo_value_b1122c36-920a-4d65-b939-dd672d6d547c", - "title": "Et vel eius est.", - "description": "Dolores quos deleniti. Labore dolorem magni. Numquam neque consectetur.", + "id": "157f7262-9ecf-494e-aa8e-a486ae5e763a", + "ref_id": "foo_value_83c60097-bd1d-498c-984c-4911575a5e35", + "title": "Dolores accusamus totam iure.", + "description": "Ipsa aut quae. Atque quia quibusdam. Quas nihil aperiam.", "value_type": "number", - "default_value": "0.6560108880128623", + "default_value": "0.4639003575318106", "type": "value_definition" }, { - "id": "346a663f-8588-4f20-8a3e-fa14a2155935", - "ref_id": "foo_value_3fd7e98b-1351-4033-9039-0d20fe50fbde", - "title": "Sit voluptatibus quia sequi.", - "description": "Expedita culpa vel. Est delectus dolores. Qui laboriosam ipsum.", + "id": "1f107404-814b-44bd-88c9-b86253d2ba61", + "ref_id": "foo_value_220f2170-cde9-4879-8edb-dc389caa316f", + "title": "Aut suscipit minus sed.", + "description": "Delectus consequuntur et. Voluptatem debitis facilis. Quis deserunt nostrum.", "value_type": "number", - "default_value": "0.8904946615377775", + "default_value": "0.18873964537074783", "type": "value_definition" }, { - "id": "35c4203e-3a26-498b-af33-1d9c8b6a1401", - "ref_id": "foo_value_2179e3b5-f209-4419-866d-3e7b07dc8af6", - "title": "Itaque nemo et sunt.", - "description": "Eligendi ut ut. Dolor ducimus possimus. Eaque accusamus non.", + "id": "2749ec6e-5b9e-4052-8fff-05422f418e7b", + "ref_id": "foo_value_1b7dfafc-c783-4d22-bdd2-72eb21cc6a6b", + "title": "Et fuga qui repellat.", + "description": "Sed dolorem vero. Accusamus quam iure. Et dolorum nulla.", "value_type": "number", - "default_value": "0.14161294377416878", + "default_value": "0.5057993659317077", "type": "value_definition" }, { - "id": "3f65dc6b-d6d2-464a-9946-a23582bf8fce", - "ref_id": "foo_value_0125220c-5543-43b7-9c0e-15abe457b951", - "title": "Quas eos voluptatem tempora.", - "description": "Et excepturi consectetur. Fugit voluptatem aliquam. A enim officia.", + "id": "27a4bd15-b437-4478-8de3-b37fe6c06130", + "ref_id": "foo_value_4fc1ac50-59c7-4d4f-9669-193947f11d6d", + "title": "Deleniti magni in est.", + "description": "Molestiae exercitationem sunt. Placeat sed quae. Est quae libero.", "value_type": "number", - "default_value": "0.19138554262262886", + "default_value": "0.8390159318002849", "type": "value_definition" }, { - "id": "4ca86034-6a14-4d97-866d-a7a491a0cbce", - "ref_id": "foo_value_f5ef54c1-24b3-4ede-91ee-0cffa6e2190d", - "title": "Eos dolores dolores odit.", - "description": "Et qui sunt. Similique labore cum. Doloribus eius dolorum.", + "id": "3379431b-c8c6-44ad-93d7-8a024f693459", + "ref_id": "foo_value_144c812b-22ad-4e6a-bbb8-47bb2686ce44", + "title": "Explicabo minus ut suscipit.", + "description": "Dicta aut consequuntur. Debitis ea nisi. Sed maxime aut.", "value_type": "number", - "default_value": "0.44216553481624044", + "default_value": "0.8201352299200653", "type": "value_definition" }, { - "id": "4ee59e30-fe8f-4b8b-9c0a-3703f4dfce13", - "ref_id": "foo_value_588f4bc5-0470-417e-bbb4-2f5a67edeb0e", - "title": "Ullam numquam nihil in.", - "description": "Autem sed in. Consequatur reprehenderit odit. Provident est earum.", + "id": "404ff864-7f12-46a6-a95f-529336aff57f", + "ref_id": "foo_value_2988791c-6a10-4700-b6fc-4706cc4e001a", + "title": "Ut minima qui voluptates.", + "description": "Odio facere voluptatem. Voluptatem a aut. Sunt repellat est.", "value_type": "number", - "default_value": "0.5893350415690004", + "default_value": "0.9357215753507014", "type": "value_definition" }, { - "id": "56f036cd-8ecd-484f-a145-97000edc256a", - "ref_id": "foo_value_7fa60467-1d4c-4953-ada1-7de79b19ff57", - "title": "Rerum velit quo minus.", - "description": "Quibusdam et iure. Odio recusandae at. Quisquam nisi est.", + "id": "47489e80-4e51-4fb2-8ca3-c191c5e815e3", + "ref_id": "foo_value_da4daddb-bee5-4bfa-a4fc-ca794b291b68", + "title": "Voluptatem minus ut repudiandae.", + "description": "Molestias dolorum qui. Fugiat est deserunt. Voluptatum at rem.", "value_type": "number", - "default_value": "0.8987836301439539", + "default_value": "0.1382755935408293", "type": "value_definition" }, { - "id": "5ed56e97-8ba0-4236-adfb-be70628d2c0c", - "ref_id": "foo_value_678c1cc7-0e96-414e-a9b9-4aeedbdca622", - "title": "Est minima id reprehenderit.", - "description": "Error optio est. Sunt reprehenderit quo. Quia dolorem cum.", + "id": "50613207-8e7f-49d6-ba2a-6ddac85dc060", + "ref_id": "foo_value_4c5137fd-aec8-4140-bbee-11c74e5adc53", + "title": "Adipisci cum sit nobis.", + "description": "Doloremque rerum magnam. Commodi illum consectetur. Sapiente suscipit et.", "value_type": "number", - "default_value": "0.15016716294474064", + "default_value": "0.39193496971331854", "type": "value_definition" } ], @@ -15107,9 +15461,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/372db10b-edbb-416f-8506-47f64d050a7d/value_definitions?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/372db10b-edbb-416f-8506-47f64d050a7d/value_definitions?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/372db10b-edbb-416f-8506-47f64d050a7d/value_definitions?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/e42fae67-e95d-42d8-9003-d9cbd606f9d3/value_definitions?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/e42fae67-e95d-42d8-9003-d9cbd606f9d3/value_definitions?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/e42fae67-e95d-42d8-9003-d9cbd606f9d3/value_definitions?limit=10&offset=10" } }, "summary": "", @@ -15119,93 +15473,93 @@ "value": { "data": [ { - "id": "189d4ba4-6363-4291-b45e-886ca44b878b", - "ref_id": "foo_value_cbb5033c-f9b8-40b7-936f-a50682b42fb9", - "title": "Aut neque dolor optio.", - "description": "Consequatur qui voluptatem. Reiciendis qui delectus. Officia vero hic.", + "id": "9824cab6-c9a8-4cf9-bbf1-1274ce1c0bf6", + "ref_id": "foo_value_62a6aea2-f01e-442e-88f2-5a2cc156f63b", + "title": "Aspernatur eius qui accusantium.", + "description": "Quia error aut. Optio quisquam recusandae. Voluptatem atque fugit.", "value_type": "number", - "default_value": "0.030639624334032667", + "default_value": "0.15433687385714867", "type": "value_definition" }, { - "id": "aa9f2f78-751b-4252-926b-8166378d9b4b", - "ref_id": "foo_value_a1d2e351-632f-49df-9328-e3e8784937b1", - "title": "Aut velit id ea.", - "description": "Sed repellat eum. Eos porro facere. Sunt quasi est.", + "id": "8aca02bd-53a4-4111-9b6b-ba1914a14146", + "ref_id": "foo_value_7c48e4f7-b4e5-48c0-af49-afb169cd176d", + "title": "Aspernatur iure voluptatem aut.", + "description": "Explicabo aliquam et. Quasi vitae et. Adipisci accusamus quisquam.", "value_type": "number", - "default_value": "0.3073919446557618", + "default_value": "0.10453718051580674", "type": "value_definition" }, { - "id": "22983803-6344-41b4-997c-707979bd70b6", - "ref_id": "foo_value_0f8c2005-1704-4a18-98ec-c103c8c3f25d", - "title": "Commodi sint iste et.", - "description": "Quas at qui. Accusamus autem aut. Dicta rerum dolore.", + "id": "24ebc3b1-c58f-44fc-bcb3-89d0b72065e7", + "ref_id": "foo_value_2776a729-5861-4c51-9e5c-11712e936abe", + "title": "At rerum sunt excepturi.", + "description": "Dolores tempore sed. Rem aut labore. Voluptas sit voluptas.", "value_type": "number", - "default_value": "0.5772071469058944", + "default_value": "0.44543656983107327", "type": "value_definition" }, { - "id": "96167466-7a73-4547-b019-4147f438f02d", - "ref_id": "foo_value_e9891f7d-fca1-4bb9-b68a-e8ef4db07bd4", - "title": "Dolor non atque magnam.", - "description": "Autem quos cupiditate. Quidem quis facere. Architecto magnam repellat.", + "id": "4c3bb593-ca4f-4988-b4b0-732368efeb04", + "ref_id": "foo_value_cd8e51c2-6638-4878-af88-c896f7149156", + "title": "Cumque quisquam quasi odio.", + "description": "Est maxime expedita. Est et error. Voluptatum distinctio accusantium.", "value_type": "number", - "default_value": "0.5314291813812315", + "default_value": "0.03703496239330761", "type": "value_definition" }, { - "id": "fcf04ae3-e9fd-4fde-8784-273b336bcc08", - "ref_id": "foo_value_b077f4af-3051-4096-984d-a86ce47f397d", - "title": "Dolorem nihil quia doloremque.", - "description": "Unde et libero. Aut minus sed. Laudantium quisquam nostrum.", + "id": "048ae339-7a2f-4854-87c5-6a4fec4eeeee", + "ref_id": "foo_value_d0fbbef0-aca8-4953-9ce1-5897c9666104", + "title": "Delectus et at porro.", + "description": "Quae et totam. Voluptatem vel quisquam. Neque vero culpa.", "value_type": "number", - "default_value": "0.109663362605537", + "default_value": "0.04101252134136224", "type": "value_definition" }, { - "id": "be98a812-f2dc-404e-b93d-d7fdc4a7e824", - "ref_id": "foo_value_a11782c4-bbd0-47b9-9cc6-8b36a9213ca7", - "title": "Enim suscipit quod quia.", - "description": "Nostrum quos perspiciatis. Sapiente quo dicta. Nihil autem itaque.", + "id": "67ae207b-768e-4825-a58b-8ce583b41454", + "ref_id": "foo_value_814f7905-5102-47c9-9f8e-950af5d267b6", + "title": "Deleniti minus cum culpa.", + "description": "Doloremque perspiciatis eaque. Perspiciatis velit error. Est deserunt accusantium.", "value_type": "number", - "default_value": "0.04891931669256877", + "default_value": "0.6341077617453291", "type": "value_definition" }, { - "id": "667bec52-1bd8-4477-b365-0134d9270892", - "ref_id": "foo_value_b0e4f424-9300-4b4a-a948-3c8fc498ab94", - "title": "Est explicabo maxime repellendus.", - "description": "Voluptatem est ut. Porro corrupti quia. Ipsum distinctio numquam.", + "id": "b303f904-ccb3-4b8d-8584-f1338c1891d8", + "ref_id": "foo_value_8f61b5e9-199c-489d-8a3d-e9d12ba7dd4d", + "title": "Dolores sint voluptatem aut.", + "description": "Et architecto possimus. Non esse minima. Laborum qui qui.", "value_type": "number", - "default_value": "0.23635343001005515", + "default_value": "0.9559510037335981", "type": "value_definition" }, { - "id": "34687a3b-1d2a-4c0d-a6b1-e0f7a6202cf9", - "ref_id": "foo_value_ac07d663-8d23-4fd8-96d2-3d289304c36c", - "title": "Exercitationem magni qui perspiciatis.", - "description": "Error in architecto. Doloribus sed deleniti. Odio ducimus doloremque.", + "id": "3cb31dc8-d46c-41cc-826b-fa573683f043", + "ref_id": "foo_value_65988f2e-555b-44d6-b624-b017a52903fb", + "title": "Eaque ad culpa quis.", + "description": "Excepturi labore dignissimos. Quis perspiciatis et. Consequatur eos sit.", "value_type": "number", - "default_value": "0.7925518484929894", + "default_value": "0.2230423209723278", "type": "value_definition" }, { - "id": "7fa2bed1-9f0f-4d69-827f-efb53014fb9a", - "ref_id": "foo_value_f3a728b3-107f-4181-89d6-522258689043", - "title": "Ipsum sequi consectetur quasi.", - "description": "Porro ipsum ducimus. Rerum nostrum sint. Ut quia fuga.", + "id": "27a47a75-c130-45aa-95bb-656dff662aef", + "ref_id": "foo_value_aebc64de-6768-425d-be7a-bbc6d6da1f11", + "title": "Enim et voluptatum culpa.", + "description": "Perspiciatis dignissimos laborum. Et rerum doloribus. Error ab in.", "value_type": "number", - "default_value": "0.26199662570910864", + "default_value": "0.33784068496647646", "type": "value_definition" }, { - "id": "11c68ccc-8856-43f0-be02-4303a647983f", - "ref_id": "foo_value_594ae040-a5ce-44ae-b1f5-5e5f9c26aa62", - "title": "Maiores voluptatem nostrum pariatur.", - "description": "Sit eligendi non. Mollitia dolores tenetur. Libero est repellat.", + "id": "0aa656f4-80cc-43e2-bc49-a3425b1a9694", + "ref_id": "foo_value_6cc74001-f321-4a47-b720-d143c064384e", + "title": "Enim voluptatem soluta dicta.", + "description": "Aut temporibus velit. Voluptates voluptatum est. Dolorem molestias est.", "value_type": "number", - "default_value": "0.9327469813270146", + "default_value": "0.11782891564825015", "type": "value_definition" } ], @@ -15216,36 +15570,36 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/526cb421-244a-4484-835c-d77f7f480482/value_definitions?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/526cb421-244a-4484-835c-d77f7f480482/value_definitions?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/526cb421-244a-4484-835c-d77f7f480482/value_definitions?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/94285329-4a1f-4411-b87c-d49b051b2761/value_definitions?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/94285329-4a1f-4411-b87c-d49b051b2761/value_definitions?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/94285329-4a1f-4411-b87c-d49b051b2761/value_definitions?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Value Definitions filtered by '(title=Consectetur dolores veritatis repellat.)'": { + "List of Value Definitions filtered by '(title=Nesciunt dolorem quia maiores.)'": { "value": { "data": [ { - "id": "061e6dc9-f107-42cd-87dd-25dc47df66ab", - "ref_id": "foo_value_61895bf3-2c82-4fcb-a348-ac96cc16b192", - "title": "Consectetur dolores veritatis repellat.", - "description": "Labore ut consequatur. Pariatur minima debitis. Culpa dolorum sunt.", + "id": "01df39f2-bffd-45b2-ac56-06463e4624bd", + "ref_id": "foo_value_7022076e-d4ce-4332-8a34-3afbf54a7e2a", + "title": "Nesciunt dolorem quia maiores.", + "description": "Ut at et. Temporibus numquam quibusdam. Non labore ut.", "value_type": "number", - "default_value": "0.3400990476889325", + "default_value": "0.4308459144280994", "type": "value_definition" } ], "meta": { "total": 1, - "filter": "(title=\"Consectetur dolores veritatis repellat.\")", + "filter": "(title=\"Nesciunt dolorem quia maiores.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/22cc3d14-7898-4c30-b384-3cae008f0fbe/value_definitions?filter=%28title%3D%22Consectetur+dolores+veritatis+repellat.%22%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/22cc3d14-7898-4c30-b384-3cae008f0fbe/value_definitions?filter=%28title%3D%22Consectetur+dolores+veritatis+repellat.%22%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/f35efbea-c6f7-45d1-ba3e-139e2e51c5be/value_definitions?filter=%28title%3D%22Nesciunt+dolorem+quia+maiores.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/f35efbea-c6f7-45d1-ba3e-139e2e51c5be/value_definitions?filter=%28title%3D%22Nesciunt+dolorem+quia+maiores.%22%29&limit=10&offset=0" } }, "summary": "", @@ -15352,12 +15706,12 @@ "Returns a Value Definition": { "value": { "data": { - "id": "7afef548-507c-43e9-b15f-ab9a9aa9fc85", - "ref_id": "foo_value_4ffe9be1-9872-49bb-8200-431f01e2d047", - "title": "Error porro cum corrupti.", - "description": "Soluta quidem sunt. Est inventore enim. Error enim nihil.", + "id": "e9aefbd7-1a98-4677-be30-b80bfbab06a6", + "ref_id": "foo_value_43f51135-1021-4c8f-9737-e67ed36474b4", + "title": "Omnis eveniet dolores unde.", + "description": "Sint quisquam et. Rerum fugit provident. Ut necessitatibus accusamus.", "value_type": "number", - "default_value": "0.1549700510310349", + "default_value": "0.5987488949104612", "type": "value_definition" } }, @@ -15389,7 +15743,7 @@ "Description of an error when requesting a non-existing Value Definition": { "value": { "errors": [ - "V2::ValueDefinition not found with ID f631a554-b1fb-44b8-804c-c9604b4037d3" + "V2::ValueDefinition not found with ID 2a050759-d3c1-4263-8a68-c819e87d3c4e" ] }, "summary": "", @@ -16527,9 +16881,9 @@ "description": "Pair of keys and values for Value Definition customizations", "examples": [ { - "85c8b54c-4e8e-4899-a9d0-01817ca322aa": "foo", - "c7d24636-8d36-4506-86b0-f2d70138f5f5": "123", - "6d4aefdd-5e2b-41d5-b2a1-9f15ac382e33": "false" + "26f3df38-925a-477f-aa37-8fbf4f7dfdf5": "foo", + "8bfcbe2a-19cb-4747-aa58-baf5302c1ff2": "123", + "b133e0dc-87f4-4449-a30b-0f96a582ac51": "false" } ] }