From 24d6606f1de582ab8d17538f4c6c39080751557f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Hal=C3=A1sz?= Date: Tue, 3 Sep 2024 07:50:30 +0200 Subject: [PATCH] fix(APIv2): RHINENG-11772 restrict search/sort to specific parents --- app/controllers/concerns/error_handling.rb | 3 + app/controllers/concerns/v2/collection.rb | 7 + app/models/concerns/v2/searchable.rb | 21 +- app/models/v2/policy.rb | 2 +- app/models/v2/report.rb | 4 +- app/models/v2/system.rb | 8 +- spec/integration/v2/policies_spec.rb | 4 +- spec/integration/v2/reports_spec.rb | 4 +- spec/integration/v2/systems_spec.rb | 26 +- spec/swagger_helper.rb | 17 +- swagger/v1/openapi.json | 1329 +-- swagger/v2/openapi.json | 9227 ++++++++++---------- 12 files changed, 4903 insertions(+), 5749 deletions(-) diff --git a/app/controllers/concerns/error_handling.rb b/app/controllers/concerns/error_handling.rb index d6b5b4a10..91ac5aea4 100644 --- a/app/controllers/concerns/error_handling.rb +++ b/app/controllers/concerns/error_handling.rb @@ -74,6 +74,9 @@ module ErrorHandling rescue_from ScopedSearch::QueryNotSupported do |error| message = "Invalid parameter: #{error.message}" + # As we are using the validation to restrict searches for certain hierarchies, the error message + # for these should be adjusted to reflect the actual issue. + message.sub!(/Value '([^']*)' is not valid for field '([^']+)'/, "Field '\\2' is not searchable in this context") logger.info "#{message} (#{ScopedSearch::QueryNotSupported})" render_error message, status: :unprocessable_entity end diff --git a/app/controllers/concerns/v2/collection.rb b/app/controllers/concerns/v2/collection.rb index 94d11acfc..12c9d4fac 100644 --- a/app/controllers/concerns/v2/collection.rb +++ b/app/controllers/concerns/v2/collection.rb @@ -48,6 +48,7 @@ def filter_by_tags(data) data.where('tags @> ?', tags.to_json) end + # rubocop:disable Metrics/AbcSize def search(data) return data if permitted_params[:filter].blank? @@ -56,8 +57,14 @@ def search(data) raise ActionController::UnpermittedParameters.new(filter: permitted_params[:filter]) end + # Pass the parents to the current thread context as there is no other way to access + # the parents from inside models. This is obviously an antipattern, but we are limited + # by scoped_search here and I have not found any better option. + Thread.current[:parents] = permitted_params[:parents] + data.search_for(permitted_params[:filter]) end + # rubocop:enable Metrics/AbcSize def sort(data) order_hash = data.klass.build_order_by(permitted_params[:sort_by]) diff --git a/app/models/concerns/v2/searchable.rb b/app/models/concerns/v2/searchable.rb index 2d456fca8..9964881ca 100644 --- a/app/models/concerns/v2/searchable.rb +++ b/app/models/concerns/v2/searchable.rb @@ -7,10 +7,26 @@ module V2 module Searchable extend ActiveSupport::Concern + # The validator is used to ensure that some fields are not available for searching under certain + # parent hierarchy combinations. It is expected that the controller passes the parents to the + # current thread context before calling seach_for. + module ParentValidator + def self.new(except, only) + lambda do |_| + parents = Thread.current[:parents].to_a + + !(only.any? && !parents.intersect?(only)) && !(except.any? && parents.intersect?(except)) + end + end + end + class_methods do # This is a wrapper around scoped_search with some of our conventions around explicit-by-default # search and mandatory operator definitions. It also simplifies the usage of ext_method searches # by allowing them to be passed as blocks. The block's signature is the same as the ext_method's. + # Additionally, the `except_parents` and `only_parents` arrays can be used for search restriction + # to specific parent hierarchies. + # # For more info see: https://github.com/wvanbergen/scoped_search/wiki/search-definition # # Examples: @@ -21,13 +37,14 @@ module Searchable # { condition: 'first_name = ? OR last_name = ?', parameters: [val] } # end # ``` - def searchable_by(field, operators, **args, &) + def searchable_by(field, operators, except_parents: [], only_parents: [], **args, &) if block_given? args[:ext_method] = "__find_by_#{field}".to_sym define_singleton_method(args[:ext_method], &) end - scoped_search on: field, operators: operators, only_explicit: true, **args + validator = ParentValidator.new(except_parents, only_parents) + scoped_search on: field, operators: operators, validator: validator, only_explicit: true, **args end end end diff --git a/app/models/v2/policy.rb b/app/models/v2/policy.rb index a7ce3d557..1e74e41f4 100644 --- a/app/models/v2/policy.rb +++ b/app/models/v2/policy.rb @@ -33,7 +33,7 @@ class Policy < ApplicationRecord sortable_by :compliance_threshold searchable_by :title, %i[like unlike eq ne in notin] - searchable_by :os_major_version, %i[eq ne in notin] do |_key, op, val| + searchable_by :os_major_version, %i[eq ne in notin], except_parents: %i[systems] do |_key, op, val| bind = ['IN', 'NOT IN'].include?(op) ? '(?)' : '?' { diff --git a/app/models/v2/report.rb b/app/models/v2/report.rb index 66518ad54..218eda9c6 100644 --- a/app/models/v2/report.rb +++ b/app/models/v2/report.rb @@ -101,7 +101,7 @@ class Report < ApplicationRecord sortable_by :percent_compliant, 'aggregate_percent_compliant' searchable_by :title, %i[like unlike eq ne in notin] - searchable_by :os_major_version, %i[eq ne in notin] do |_key, op, val| + searchable_by :os_major_version, %i[eq ne in notin], except_parents: %i[system] do |_key, op, val| bind = ['IN', 'NOT IN'].include?(op) ? '(?)' : '?' { @@ -109,7 +109,7 @@ class Report < ApplicationRecord parameter: [val.split.map(&:to_i)] } end - searchable_by :with_reported_systems, %i[eq] do |_key, _op, _val| + searchable_by :with_reported_systems, %i[eq], except_parents: %i[system] do |_key, _op, _val| ids = V2::Report.joins(:test_results).reselect(:id) { conditions: "v2_policies.id IN (#{ids.to_sql})" } diff --git a/app/models/v2/system.rb b/app/models/v2/system.rb index d1dd87fd8..91a9122bb 100644 --- a/app/models/v2/system.rb +++ b/app/models/v2/system.rb @@ -82,7 +82,7 @@ def self.first_group_name(table = arel_table) searchable_by :display_name, %i[eq neq like unlike] - searchable_by :os_major_version, %i[eq neq in notin] do |_key, op, val| + searchable_by :os_major_version, %i[eq neq in notin], except_parents: %i[policies reports] do |_key, op, val| { conditions: os_major_versions(val.split.map(&:to_i), %w[IN =].include?(op)).arel.where_sql.sub(/^where /i, '') } @@ -102,7 +102,7 @@ def self.first_group_name(table = arel_table) { conditions: "inventory.hosts.id IN (#{ids.to_sql})" } end - searchable_by :never_reported, %i[eq] do |_key, _op, _val| + searchable_by :never_reported, %i[eq], only_parents: %i[reports] do |_key, _op, _val| ids = V2::TestResult.reselect(:system_id, :report_id) { conditions: "(inventory.hosts.id, reports.id) NOT IN (#{ids.to_sql})" } @@ -114,14 +114,14 @@ def self.first_group_name(table = arel_table) { conditions: systems.arel.where_sql.gsub(/^where /i, '') } end - searchable_by :policies, %i[eq in] do |_key, _op, val| + searchable_by :policies, %i[eq in], except_parents: %i[policies reports] do |_key, _op, val| values = val.split.map(&:strip) ids = ::V2::PolicySystem.where(policy_id: values).select(:system_id) { conditions: "inventory.hosts.id IN (#{ids.to_sql})" } end - searchable_by :profile_ref_id, %i[neq notin] do |_key, _op, val| + searchable_by :profile_ref_id, %i[neq notin], except_parents: %i[policies reports] do |_key, _op, val| values = val.split.map(&:strip) ids = ::V2::PolicySystem.joins(policy: :profile).where(profile: { ref_id: values }).select(:system_id) diff --git a/spec/integration/v2/policies_spec.rb b/spec/integration/v2/policies_spec.rb index 7ccc346aa..246398840 100644 --- a/spec/integration/v2/policies_spec.rb +++ b/spec/integration/v2/policies_spec.rb @@ -189,8 +189,8 @@ operationId 'SystemsPolicies' content_types pagination_params_v2 - sort_params_v2(V2::Policy) - search_params_v2(V2::Policy) + sort_params_v2(V2::Policy, except: %i[os_major_version total_system_count]) + search_params_v2(V2::Policy, except: %i[os_major_version]) parameter name: :system_id, in: :path, type: :string, required: true diff --git a/spec/integration/v2/reports_spec.rb b/spec/integration/v2/reports_spec.rb index ba1d32121..569e3c6a7 100644 --- a/spec/integration/v2/reports_spec.rb +++ b/spec/integration/v2/reports_spec.rb @@ -208,8 +208,8 @@ operationId 'SystemReports' content_types pagination_params_v2 - sort_params_v2(V2::Report) - search_params_v2(V2::Report) + sort_params_v2(V2::Report, except: %i[os_major_version]) + search_params_v2(V2::Report, except: %i[os_major_version with_reported_systems]) parameter name: :system_id, in: :path, type: :string, required: true diff --git a/spec/integration/v2/systems_spec.rb b/spec/integration/v2/systems_spec.rb index 41b4a8ccd..84b7f804f 100644 --- a/spec/integration/v2/systems_spec.rb +++ b/spec/integration/v2/systems_spec.rb @@ -19,7 +19,7 @@ content_types pagination_params_v2 sort_params_v2(V2::System) - search_params_v2(V2::System) + search_params_v2(V2::System, except: %i[never_reported]) response '200', 'Lists Systems' do v2_collection_schema 'system' @@ -149,8 +149,8 @@ operationId 'PolicySystems' content_types pagination_params_v2 - sort_params_v2(V2::System) - search_params_v2(V2::System) + sort_params_v2(V2::System, except: %i[os_major_version]) + search_params_v2(V2::System, except: %i[never_reported os_major_version policies profile_ref_id]) parameter name: :policy_id, in: :path, type: :string, required: true @@ -163,19 +163,19 @@ end response '200', 'Lists Systems assigned to a Policy' do - let(:sort_by) { ['os_major_version'] } + let(:sort_by) { ['os_minor_version'] } v2_collection_schema 'system' - after { |e| autogenerate_examples(e, 'List of Systems sorted by "os_major_version:asc"') } + after { |e| autogenerate_examples(e, 'List of Systems sorted by "os_minor_version:asc"') } run_test! end response '200', 'Lists Systems assigned to a Policy' do - let(:filter) { '(os_major_version=8)' } + let(:filter) { '(os_minor_version=0)' } v2_collection_schema 'system' - after { |e| autogenerate_examples(e, 'List of Systems filtered by "(os_major_version=8)"') } + after { |e| autogenerate_examples(e, 'List of Systems filtered by "(os_minor_version=0)"') } run_test! end @@ -388,8 +388,8 @@ operationId 'ReportSystems' content_types pagination_params_v2 - sort_params_v2(V2::System) - search_params_v2(V2::System) + sort_params_v2(V2::System, except: %i[os_major_version]) + search_params_v2(V2::System, except: %i[os_major_version policies profile_ref_id]) parameter name: :report_id, in: :path, type: :string, required: true @@ -402,19 +402,19 @@ end response '200', 'Lists Systems assigned to a Report' do - let(:sort_by) { ['os_major_version'] } + let(:sort_by) { ['os_minor_version'] } v2_collection_schema 'system' - after { |e| autogenerate_examples(e, 'List of Systems sorted by "os_major_version:asc"') } + after { |e| autogenerate_examples(e, 'List of Systems sorted by "os_minor_version:asc"') } run_test! end response '200', 'Lists Systems assigned to a Report' do - let(:filter) { '(os_major_version=8)' } + let(:filter) { '(os_minor_version=0)' } v2_collection_schema 'system' - after { |e| autogenerate_examples(e, 'List of Systems filtered by "(os_major_version=8)"') } + after { |e| autogenerate_examples(e, 'List of Systems filtered by "(os_minor_version=0)"') } run_test! end diff --git a/spec/swagger_helper.rb b/spec/swagger_helper.rb index 2c6167725..a1162a3af 100644 --- a/spec/swagger_helper.rb +++ b/spec/swagger_helper.rb @@ -119,15 +119,16 @@ def search_params schema: { type: :string } end -def search_params_v2(model = nil) +def search_params_v2(model = nil, except: []) + keys = model.scoped_search.fields.keys.reject { |key| key == :_____ || except.include?(key) } + parameter name: :filter, in: :query, required: false, description: 'Query string to filter items by their attributes. ' \ 'Compliant with scoped_search query language. ' \ 'However, only `=` or `!=` (resp. `<>`) operators are supported.

' \ "#{model.name.split('::').second.gsub(/([A-Z])/) { " #{Regexp.last_match(1)}" }.strip.pluralize} " \ - 'are searchable using attributes ' \ - "#{model.scoped_search.fields.keys.reject { |k| k == :_____ }.map { |k| "`#{k}`" }.to_sentence}" \ + "are searchable using attributes #{keys.map { |k| "`#{k}`" }.to_sentence}" \ '

(e.g.: `(field_1=something AND field_2!="something else") OR field_3>40`)', schema: { type: :string } end @@ -152,7 +153,7 @@ def sort_params(model = nil) } end -def sort_params_v2(model = nil) +def sort_params_v2(model = nil, except: []) parameter name: :sort_by, in: :query, required: false, description: 'Attribute and direction to sort the items by. ' \ 'Represented by an array of fields with an optional direction ' \ @@ -160,12 +161,14 @@ def sort_params_v2(model = nil) 'If no direction is selected, `:asc` is used by default.', schema: { type: :array, - items: { enum: sort_combinations(model) } + items: { enum: sort_combinations(model, except) } } end -def sort_combinations(model) - fields = model.instance_variable_get(:@sortable_by).keys +def sort_combinations(model, except = []) + fields = model.instance_variable_get(:@sortable_by).keys.reject do |field| + except.include?(field) + end fields + fields.flat_map do |field| %w[asc desc].map do |direction| [field, direction].join(':') diff --git a/swagger/v1/openapi.json b/swagger/v1/openapi.json index 2a610f2dd..3ba1df4b7 100644 --- a/swagger/v1/openapi.json +++ b/swagger/v1/openapi.json @@ -121,13 +121,13 @@ "value": { "data": [ { - "id": "2c7e1f15-1ff6-4c4b-91d6-4535cc700f94", + "id": "135742ed-86f9-4c04-97e5-a063fdd9bde9", "type": "benchmark", "attributes": { "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Placeat assumenda soluta unde.", - "version": "100.0.1", - "description": "Dolor perspiciatis quae. Nihil minima earum. Qui itaque ipsa.", + "title": "Velit occaecati beatae assumenda.", + "version": "100.0.2", + "description": "Architecto et quibusdam. Provident vel amet. Ut earum eaque.", "os_major_version": "7", "latest_supported_os_minor_versions": [] }, @@ -135,11 +135,11 @@ "rules": { "data": [ { - "id": "f77e08e9-1232-48d3-91a1-7b25f2508624", + "id": "26f886e9-5911-4129-beec-cefb26b2135d", "type": "rule" }, { - "id": "2941ff77-de14-4b2b-a95f-ae2e090f964f", + "id": "3a8fa967-d652-4fbb-906f-395852809cef", "type": "rule" } ] @@ -147,7 +147,7 @@ "profiles": { "data": [ { - "id": "1aaa864b-1e80-4f13-9600-cb34d1b931c4", + "id": "dd5d03d8-05fe-4abb-ab81-bdf08da085ca", "type": "profile" } ] @@ -158,13 +158,13 @@ } }, { - "id": "a2d117bb-c15d-48ed-84e9-15abe50f8ddf", + "id": "653907f0-3062-4d1b-99b4-3e436d3ddc62", "type": "benchmark", "attributes": { "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Enim voluptatibus commodi et.", - "version": "100.0.2", - "description": "Voluptas eum iste. Rem quia vel. Eaque similique tenetur.", + "title": "Alias quos cupiditate ea.", + "version": "100.0.1", + "description": "Iste quo tempora. Quibusdam sed possimus. Minus enim aut.", "os_major_version": "7", "latest_supported_os_minor_versions": [] }, @@ -172,11 +172,11 @@ "rules": { "data": [ { - "id": "bc62004f-c69f-46ff-a81a-cd037149066f", + "id": "9beb1095-bb4a-4d50-9cd3-41eb4ec552cd", "type": "rule" }, { - "id": "f6116ac1-e1af-4b96-9aa4-41675e714454", + "id": "32acc283-51fe-4c3b-b17f-471d6a6c2f48", "type": "rule" } ] @@ -184,7 +184,7 @@ "profiles": { "data": [ { - "id": "0b9a28de-85e8-45b9-a104-cf233d437091", + "id": "a710546d-662e-4903-bf9a-56929de11ad7", "type": "profile" } ] @@ -307,143 +307,143 @@ "Response example": { "value": { "data": { - "id": "894a8879-42ca-42b3-8d7e-19e2786b4606", + "id": "00784043-f742-4df5-9439-fc773bbf4b6f", "type": "benchmark", "attributes": { "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Omnis reprehenderit ut laboriosam.", + "title": "Et eaque ut dicta.", "version": "100.0.4", - "description": "Qui ex fugit. Ipsa architecto quod. Ipsam fugiat velit.", + "description": "Assumenda harum ut. Ut autem velit. Eos asperiores beatae.", "os_major_version": "7", "latest_supported_os_minor_versions": [], "rule_tree": [ { "type": "rule_group", - "id": "428c7ba3-b124-489a-b3b3-b582fe7ffe12", - "ref_id": "foo_group_86bf7272-3b22-45cc-b7ce-472759b564ae", - "title": "Dolor dolore commodi veniam.", + "id": "c919f2bb-e6ac-46da-9505-8973cfba6666", + "ref_id": "foo_group_4f7ee3e6-9a92-4b3e-84a0-1e91fd7f431c", + "title": "Ea consequatur amet occaecati.", "children": [ { "type": "rule", - "id": "960c75d9-cfcd-40a6-931c-34dc8fcb0ff9", - "ref_id": "foo_rule_3e2f14e8-1791-463a-86db-23067ab04e0d" + "id": "804224c3-aa52-43a6-80fc-010c3d75ff11", + "ref_id": "foo_rule_203b30d8-c9e2-43b8-8eda-6a397eb276f7" } ] }, { "type": "rule_group", - "id": "4b41be7a-463d-427c-ac2b-43823b6042ab", - "ref_id": "foo_group_7b4da413-775e-43e9-972b-e5585e6eb650", - "title": "Qui esse ut culpa.", + "id": "7d1d8774-1708-4ac4-bcbc-5631fd1cb281", + "ref_id": "foo_group_7f4b0b47-3c96-4c3b-9ce1-cc253a8c7126", + "title": "Voluptatum assumenda repellendus optio.", "children": [ { "type": "rule", - "id": "172a06cf-0aed-41f6-8e96-889f4ba32d21", - "ref_id": "foo_rule_f7488502-c399-41ec-b87a-b095e302cced" + "id": "fb6a9ec9-9354-45c9-9284-88504e0cbcda", + "ref_id": "foo_rule_8997cd40-0ddd-4f5d-8811-4985ae60d223" } ] }, { "type": "rule_group", - "id": "7db14974-ca1e-4ede-8830-a697659088eb", - "ref_id": "foo_group_239052dc-74f5-4062-8dc0-86b5de829923", - "title": "Quia itaque quidem voluptatem.", + "id": "5409d43e-cb28-4d7c-a446-8767ba15bcf3", + "ref_id": "foo_group_c0aebc7f-c740-4f3d-a1f0-c83a5ed0e18e", + "title": "Dolore exercitationem aliquid soluta.", "children": [ { "type": "rule", - "id": "b373572c-9e9c-41f0-b376-bfc2df9c04b8", - "ref_id": "foo_rule_8ee5e1fa-c98e-418a-93cc-e2167c8a9828" + "id": "8a1067da-a6a2-4a45-bd8e-c18562bc3c0d", + "ref_id": "foo_rule_a492b750-dc9a-4d6b-9857-5ef09eed6902" } ] }, { "type": "rule_group", - "id": "65ed8cf6-035f-423a-8c18-4f071eb1b783", - "ref_id": "foo_group_a2eeb601-c1ef-4746-a68c-a848b3ebc30b", - "title": "Reiciendis occaecati alias voluptatem.", + "id": "4d7584a3-2476-43b4-b2cb-4b97ff8d7164", + "ref_id": "foo_group_fe34c211-801d-4674-8191-f83704262bd2", + "title": "Ratione sit aliquid omnis.", "children": [ { "type": "rule", - "id": "801587ca-e2b6-4508-8193-e60fde0089fd", - "ref_id": "foo_rule_032caf33-6bb2-4d47-8b09-a2df55de4c55" + "id": "53e40296-7a57-4554-81e0-2cee68273d9b", + "ref_id": "foo_rule_66d9d4ef-e1fa-4139-8b41-3305e486899b" } ] }, { "type": "rule_group", - "id": "dd11acaa-9a2b-42ac-b99a-bb8ed208d4ed", - "ref_id": "foo_group_6b1a3f02-153b-4667-b374-af20668d56d5", - "title": "Iusto vitae omnis ipsam.", + "id": "e2b5fd44-d65d-44c6-b7f1-8c14d8c18c27", + "ref_id": "foo_group_f6e10d76-fa52-4323-be3c-b79b4d6581cf", + "title": "Soluta earum aut natus.", "children": [ { "type": "rule", - "id": "9921b45b-36e0-4b8f-b1f4-7ad35969e26d", - "ref_id": "foo_rule_41023f49-de5d-4e90-8593-8df96eedc222" + "id": "0b0e8348-a312-4046-bc3e-601e2beeccab", + "ref_id": "foo_rule_31c7f4d0-5139-4a24-a797-100760a54af3" } ] }, { "type": "rule_group", - "id": "e09c1e50-b7f6-4467-b50d-d4a801d71cbe", - "ref_id": "foo_group_d220375c-d998-481b-89db-73f14a20686e", - "title": "Corrupti et iste sed.", + "id": "fb8f884b-81ec-473b-bf6f-7718635df243", + "ref_id": "foo_group_f5b73f0a-6841-4013-8c9a-a5a3f6a2da70", + "title": "Quas iusto sunt ipsam.", "children": [ { "type": "rule", - "id": "b741913b-7feb-4d32-b7d9-f01ddbbbf24a", - "ref_id": "foo_rule_254904a7-22cf-4687-8165-ee026553ff0d" + "id": "b1ab95b6-d2d6-40ae-a892-14ed11667f49", + "ref_id": "foo_rule_88022919-0e88-4d83-9733-16ba919cb70c" } ] }, { "type": "rule_group", - "id": "675490e6-7228-47e4-8703-c686e965f467", - "ref_id": "foo_group_a592fc92-883a-44e3-8ff6-1e4d039e0ebd", - "title": "Ad et aut itaque.", + "id": "263cf43f-fb82-4a91-96a1-0a1d82075544", + "ref_id": "foo_group_1eb92047-d12f-4230-89ac-911b729da240", + "title": "Explicabo similique et nam.", "children": [ { "type": "rule", - "id": "1baa0c85-3e10-4a5d-a3fe-9eb9a222e362", - "ref_id": "foo_rule_46a14e7b-5dfd-4abd-9ff3-57b803b296f2" + "id": "192efcbc-4eb9-4799-bf7f-a7aa7f4a3cd1", + "ref_id": "foo_rule_0e98a391-ffc4-47d5-86c7-116c55cc3590" } ] }, { "type": "rule_group", - "id": "c5128aa5-1d8d-42f2-87f5-9e24d2d25dc2", - "ref_id": "foo_group_bd4043f1-4fa0-49f1-9369-3f764aa8fe83", - "title": "Velit facere qui soluta.", + "id": "6f4d6bbe-a1ad-4f4a-be19-54945ff64b43", + "ref_id": "foo_group_58148dc9-10cb-40a4-ae02-9b45fcda17ed", + "title": "Beatae distinctio quas soluta.", "children": [ { "type": "rule", - "id": "e683df4c-c487-4e40-b097-bb4403285350", - "ref_id": "foo_rule_897f4b4d-af4a-4a9d-8c30-94e10fabee29" + "id": "495fc544-f18b-4cbe-80c0-d1982f451c19", + "ref_id": "foo_rule_55888991-e17e-4485-a84f-c27f35c73d17" } ] }, { "type": "rule_group", - "id": "66a8dc9c-15e0-4bf5-9258-29bf6d49977f", - "ref_id": "foo_group_7c660e93-a174-44a8-9c04-c94a1436f5d7", - "title": "Dolores dolor vel ad.", + "id": "0fd23415-1105-47f1-9100-ffe52a0c3396", + "ref_id": "foo_group_397fee08-0071-4ed2-a654-a8ac1cdb08f5", + "title": "Quas quia praesentium accusamus.", "children": [ { "type": "rule", - "id": "551def25-035b-4cd7-94bb-d30e242c02be", - "ref_id": "foo_rule_93de98b9-41a1-4638-b949-6c30f7a7ba1a" + "id": "b9b68d6b-ba64-4da2-891e-1ee068bcd0e3", + "ref_id": "foo_rule_0aefcf65-19e7-46f9-b77a-693959b4a916" } ] }, { "type": "rule_group", - "id": "3a37ba19-5f9a-4ffc-830e-5c9ceb3de875", - "ref_id": "foo_group_063dc25e-c66c-4d3d-9639-718b7e5125ad", - "title": "Ullam ut quae voluptatem.", + "id": "bf36c227-ffb3-421d-8b0c-585269ce284f", + "ref_id": "foo_group_91f20004-78d5-4df9-9c12-0e9c0d528299", + "title": "Eos deleniti est aliquid.", "children": [ { "type": "rule", - "id": "76c43e04-b792-45b2-9b7c-e1627b7848dc", - "ref_id": "foo_rule_17c3d4d8-c98f-4558-a085-132fd68e19dd" + "id": "c331059a-23a5-4dd5-90b3-1c2aa9318098", + "ref_id": "foo_rule_e36cab5f-cddb-4791-9044-26bd35e4e8e4" } ] } @@ -453,43 +453,43 @@ "rules": { "data": [ { - "id": "960c75d9-cfcd-40a6-931c-34dc8fcb0ff9", + "id": "804224c3-aa52-43a6-80fc-010c3d75ff11", "type": "rule" }, { - "id": "172a06cf-0aed-41f6-8e96-889f4ba32d21", + "id": "fb6a9ec9-9354-45c9-9284-88504e0cbcda", "type": "rule" }, { - "id": "b373572c-9e9c-41f0-b376-bfc2df9c04b8", + "id": "8a1067da-a6a2-4a45-bd8e-c18562bc3c0d", "type": "rule" }, { - "id": "801587ca-e2b6-4508-8193-e60fde0089fd", + "id": "53e40296-7a57-4554-81e0-2cee68273d9b", "type": "rule" }, { - "id": "9921b45b-36e0-4b8f-b1f4-7ad35969e26d", + "id": "0b0e8348-a312-4046-bc3e-601e2beeccab", "type": "rule" }, { - "id": "b741913b-7feb-4d32-b7d9-f01ddbbbf24a", + "id": "b1ab95b6-d2d6-40ae-a892-14ed11667f49", "type": "rule" }, { - "id": "1baa0c85-3e10-4a5d-a3fe-9eb9a222e362", + "id": "192efcbc-4eb9-4799-bf7f-a7aa7f4a3cd1", "type": "rule" }, { - "id": "e683df4c-c487-4e40-b097-bb4403285350", + "id": "495fc544-f18b-4cbe-80c0-d1982f451c19", "type": "rule" }, { - "id": "551def25-035b-4cd7-94bb-d30e242c02be", + "id": "b9b68d6b-ba64-4da2-891e-1ee068bcd0e3", "type": "rule" }, { - "id": "76c43e04-b792-45b2-9b7c-e1627b7848dc", + "id": "c331059a-23a5-4dd5-90b3-1c2aa9318098", "type": "rule" } ] @@ -497,11 +497,11 @@ "profiles": { "data": [ { - "id": "022506c0-d14d-46c8-b85c-24ac470c4f2a", + "id": "56d57673-5da9-440b-ba01-5e8b89adbd08", "type": "profile" }, { - "id": "1e04256c-dd93-4249-bf63-2c3993d60635", + "id": "a318fb48-7e0e-475b-a7c5-01c4fb4d933b", "type": "profile" } ] @@ -644,16 +644,16 @@ "value": { "data": [ { - "id": "b260b1c2-9ba7-4388-b284-46677898784f", + "id": "395211b1-5518-4d39-8678-f589f7ad72b2", "type": "business_objective", "attributes": { - "title": "Numquam similique vel animi." + "title": "Repellat non et saepe." }, "relationships": { "profiles": { "data": [ { - "id": "d5c5bfd6-c994-448f-9162-a4afa263ba59", + "id": "fa41006d-a1d8-4edf-ae33-52a53ec5248c", "type": "profile" } ] @@ -661,16 +661,16 @@ } }, { - "id": "0bddeaad-9d3f-4cdb-b48a-ea54bf66e714", + "id": "c74301d4-c72a-4bdf-901e-74b38765c366", "type": "business_objective", "attributes": { - "title": "Voluptatem eos magnam laudantium." + "title": "Ut dolorem itaque nam." }, "relationships": { "profiles": { "data": [ { - "id": "144834bc-4647-425a-b8b1-42537044994b", + "id": "18ae1c5e-8df3-4ce8-9a7e-6c71ce2d1454", "type": "profile" } ] @@ -788,16 +788,16 @@ "Response example": { "value": { "data": { - "id": "494fac09-0c67-4226-8994-2c9c7fc80658", + "id": "ea65dd31-8ae1-4c0b-bfde-ecb8b455e30f", "type": "business_objective", "attributes": { - "title": "Totam ipsa inventore ipsum." + "title": "Ea quos velit facere." }, "relationships": { "profiles": { "data": [ { - "id": "08b65494-5864-417b-93a6-3329953ba8a8", + "id": "68bd3213-1319-42ac-b279-741fd371a77d", "type": "profile" } ] @@ -943,10 +943,10 @@ "value": { "data": [ { - "id": "f4066397-57c0-4e3b-a184-ba5f47794912", + "id": "9725515d-b48f-418e-a80e-6d3af03bcb59", "type": "profile", "attributes": { - "ref_id": "xccdf_org.ssgproject.content_profile_aedcd46b-8014-409d-a4ca-a82bf1533d23", + "ref_id": "xccdf_org.ssgproject.content_profile_9c3df96c-06ad-438b-b9ab-c171629fcf9d", "score": 0.42, "parent_profile_id": null, "external": false, @@ -975,7 +975,7 @@ }, "benchmark": { "data": { - "id": "c98ae288-0ca8-4c5e-a8b8-4d5350342d77", + "id": "c79b1851-fbad-4564-af17-98de10764259", "type": "benchmark" } }, @@ -988,7 +988,7 @@ "hosts": { "data": [ { - "id": "46872938-f8ad-400b-8e33-c628ba9901ed", + "id": "17684148-6432-4b3d-80e2-04c71abce237", "type": "host" } ] @@ -996,7 +996,7 @@ "test_results": { "data": [ { - "id": "27cc5046-46a0-48be-a371-31baf91690a3", + "id": "0bcb7dea-329c-48e2-9aeb-9afd6e044533", "type": "test_result" } ] @@ -1004,10 +1004,10 @@ } }, { - "id": "ce51608c-dec2-4360-9167-e8817de40a99", + "id": "c60f6131-764b-428c-bbbe-4fc4b71733e6", "type": "profile", "attributes": { - "ref_id": "xccdf_org.ssgproject.content_profile_3d1f6150-bd50-4296-91e8-3173ea82675f", + "ref_id": "xccdf_org.ssgproject.content_profile_25d938ac-b170-4826-9f78-c70daa2a39c8", "score": 0.68, "parent_profile_id": null, "external": false, @@ -1018,8 +1018,8 @@ "os_minor_version": "", "parent_profile_ref_id": null, "values": {}, - "name": "Fugit molestiae et quia.", - "description": "Deserunt ipsam reiciendis. Totam reiciendis necessitatibus. Repudiandae est quam.", + "name": "Quia similique est laudantium.", + "description": "Consequatur reprehenderit qui. Est sunt aut. Est quia vero.", "canonical": true, "tailored": false, "total_host_count": 0, @@ -1028,7 +1028,7 @@ "test_result_host_count": 0, "unsupported_host_count": 0, "business_objective": null, - "policy_type": "Fugit molestiae et quia." + "policy_type": "Quia similique est laudantium." }, "relationships": { "account": { @@ -1036,7 +1036,7 @@ }, "benchmark": { "data": { - "id": "8fe80830-f36a-4cad-b5a6-279d4fbf2f01", + "id": "c8f6537d-2a32-4376-b9ad-c13ee6a7f42f", "type": "benchmark" } }, @@ -1049,7 +1049,7 @@ "hosts": { "data": [ { - "id": "46872938-f8ad-400b-8e33-c628ba9901ed", + "id": "17684148-6432-4b3d-80e2-04c71abce237", "type": "host" } ] @@ -1057,7 +1057,7 @@ "test_results": { "data": [ { - "id": "24114b60-2aab-4092-9fcf-72aad30690bf", + "id": "0bc3be18-3331-4712-be08-200e490c7387", "type": "test_result" } ] @@ -1065,25 +1065,25 @@ } }, { - "id": "9fc2a723-592c-4ed7-8ab5-c64303207707", + "id": "dbc120d8-91ed-4a88-999b-e08c7d8e6122", "type": "profile", "attributes": { - "ref_id": "xccdf_org.ssgproject.content_profile_3d1f6150-bd50-4296-91e8-3173ea82675f", + "ref_id": "xccdf_org.ssgproject.content_profile_25d938ac-b170-4826-9f78-c70daa2a39c8", "score": 0.0, - "parent_profile_id": "ce51608c-dec2-4360-9167-e8817de40a99", + "parent_profile_id": "c60f6131-764b-428c-bbbe-4fc4b71733e6", "external": false, "compliance_threshold": 100.0, "os_major_version": "7", "os_version": "7", - "policy_profile_id": "9fc2a723-592c-4ed7-8ab5-c64303207707", + "policy_profile_id": "dbc120d8-91ed-4a88-999b-e08c7d8e6122", "os_minor_version": "", - "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_3d1f6150-bd50-4296-91e8-3173ea82675f", + "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_25d938ac-b170-4826-9f78-c70daa2a39c8", "values": { - "2762a472-2128-4cd4-b301-9e7112fc93d8": "hkaqoo", - "2e2d8f98-ab62-4853-8c29-31b402b663e6": "hikfcv", - "71ed5e73-1a89-4ac0-b4fb-3ebee841202d": "cnkcvh", - "83a9e740-ddaa-4cf1-b117-74ee59eacf60": "jcivzh", - "a57bad15-4c5b-4036-a641-827fe7e960e9": "uebeba" + "36d736e3-881a-46ff-875f-df1b766045f5": "kvaely", + "47bf16b5-1e1c-42d8-8372-8be7d8e5e36f": "hzgzze", + "9ad893bb-52a7-4f96-890e-1dc19152bf71": "akhibm", + "df53ba91-f3d8-4fb4-9390-fbad5d5a3f4d": "iuskfx", + "ecb110ef-27f9-4125-98d9-ee3fe9d2ab7c": "iuzzgx" }, "name": "Policy for Profile", "description": "Policy assigned to Profile", @@ -1095,24 +1095,24 @@ "test_result_host_count": 0, "unsupported_host_count": 0, "business_objective": null, - "policy_type": "Fugit molestiae et quia." + "policy_type": "Quia similique est laudantium." }, "relationships": { "account": { "data": { - "id": "c29f977f-b010-4a38-ab0c-efb2a28d6894", + "id": "bdfb57d1-77c0-4bbd-bfcf-a47623e017b5", "type": "account" } }, "benchmark": { "data": { - "id": "8fe80830-f36a-4cad-b5a6-279d4fbf2f01", + "id": "c8f6537d-2a32-4376-b9ad-c13ee6a7f42f", "type": "benchmark" } }, "parent_profile": { "data": { - "id": "ce51608c-dec2-4360-9167-e8817de40a99", + "id": "c60f6131-764b-428c-bbbe-4fc4b71733e6", "type": "profile" } }, @@ -1205,23 +1205,23 @@ "Response example": { "value": { "data": { - "id": "41e43f9a-5f8c-44ad-a537-78962cecc40d", + "id": "660a0087-52c6-419e-aec7-54307e4f4816", "type": "profile", "attributes": { - "ref_id": "xccdf_org.ssgproject.content_profile_5b8d7447-37f2-4703-8284-052ec6493ae2", + "ref_id": "xccdf_org.ssgproject.content_profile_7dd016e3-200c-4573-8539-4dcb3ea4abbb", "score": 0.0, - "parent_profile_id": "6c9c44d8-62c3-44b7-ae1f-d6d077d0d5cf", + "parent_profile_id": "69acd35b-9f16-4609-8b01-2724341080bf", "external": false, "compliance_threshold": 93.5, "os_major_version": "7", "os_version": "7", - "policy_profile_id": "41e43f9a-5f8c-44ad-a537-78962cecc40d", + "policy_profile_id": "660a0087-52c6-419e-aec7-54307e4f4816", "os_minor_version": "", - "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_5b8d7447-37f2-4703-8284-052ec6493ae2", + "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_7dd016e3-200c-4573-8539-4dcb3ea4abbb", "values": { - "c97d36f9-20ca-4786-a748-dbdaf7403b5b": "lelkar", - "6fbc5a7d-f7f2-495d-91b5-c9c2a8b792f0": "imyiqw", - "7ad9ee76-432f-465d-8d5f-a7b5a4582996": "nnudyx" + "e4896b4c-ac7f-4d14-8d8f-ec78aa959cbb": "igbcly", + "e9f8f189-b201-441d-a28e-7c9591ae5110": "pardhz", + "9d05bf1e-f189-4086-84bf-6ce3dcd8f1c9": "jphqau" }, "name": "A custom name", "description": "Canonical (Generated) Profile", @@ -1238,30 +1238,30 @@ "relationships": { "account": { "data": { - "id": "3b1658e5-f8f0-4580-b9a2-2c89319438b4", + "id": "6c7a5762-a594-46a5-8b00-2c64bb222d2a", "type": "account" } }, "benchmark": { "data": { - "id": "5ffa356c-ec0c-4c4b-8d05-90a4763fa6a6", + "id": "93bc0ba0-a46d-449a-aec3-82e37c65f2ee", "type": "benchmark" } }, "parent_profile": { "data": { - "id": "6c9c44d8-62c3-44b7-ae1f-d6d077d0d5cf", + "id": "69acd35b-9f16-4609-8b01-2724341080bf", "type": "profile" } }, "rules": { "data": [ { - "id": "e2025eeb-efb2-45ba-a763-441b519dd701", + "id": "73051713-9be5-4d1d-9ecf-749ff92d025d", "type": "rule" }, { - "id": "ff7cb8e6-b973-4ccd-b4a1-b36d28b3e573", + "id": "f14e7b2b-a9b0-47c1-ba8e-b5a65af970b0", "type": "rule" } ] @@ -1269,11 +1269,11 @@ "hosts": { "data": [ { - "id": "9fcf9775-a11c-4d6d-962d-99135684224e", + "id": "b994d28a-67fd-415d-ba35-ac4e67a21969", "type": "host" }, { - "id": "82831064-6342-4e9b-b7c8-d5d6f50df15a", + "id": "5a37b55e-c86e-475e-bf21-746179f12627", "type": "host" } ] @@ -1444,10 +1444,10 @@ "Response example": { "value": { "data": { - "id": "e54a4694-cb22-49ae-8562-67a3935d88ec", + "id": "e91c0d19-3704-49c1-99b6-9827bbb72b73", "type": "profile", "attributes": { - "ref_id": "xccdf_org.ssgproject.content_profile_3de75efb-8921-42b9-a655-7ed276e866c8", + "ref_id": "xccdf_org.ssgproject.content_profile_a4bb9fe8-7f92-4890-a93f-681df22e6c40", "score": 0.42, "parent_profile_id": null, "external": false, @@ -1458,11 +1458,11 @@ "os_minor_version": "", "parent_profile_ref_id": null, "values": { - "0500263b-4e81-41fd-97c7-222b04f2f208": "kfohbj", - "3309c874-edc7-45f6-a6c0-aa9c7b5c6b79": "eyrlyw", - "6f464b92-7060-41b2-ac29-61b22d60b28d": "jvizkf", - "8d28ceae-6a3f-4f5f-9657-e94194a636a6": "jrbmyf", - "911bdc13-da2d-4a0b-a06a-e90f1de40c99": "plmjrb" + "0e4f1eac-1bd1-4af6-aaea-f59519cb3caa": "lzlujy", + "2665a729-60d6-4711-9a0a-3f01356fae4c": "gknsfv", + "56fc7774-3247-4062-9093-fa7db2451624": "bjizsr", + "9297d079-50c0-4d29-9b92-be322f423a7f": "fybkij", + "d627cf1c-f1d1-4846-a5a4-6270bfadcab3": "akbxkp" }, "name": "Canonical Profile", "description": "Canonical (Generated) Profile", @@ -1479,13 +1479,13 @@ "relationships": { "account": { "data": { - "id": "f33d5846-eaf2-4817-9eb5-a918a479ab73", + "id": "b0369723-670d-4caf-b243-e83ae6807442", "type": "account" } }, "benchmark": { "data": { - "id": "67894b54-7b56-4f7d-a58d-6742c22dff53", + "id": "0b4a7c89-6b1e-4583-930a-210ea0a036b9", "type": "benchmark" } }, @@ -1501,7 +1501,7 @@ "test_results": { "data": [ { - "id": "3b2d2418-4f29-40b7-83db-bb1e70c4a460", + "id": "3b03ac83-04d2-4b4f-98ad-b228ed43ac3a", "type": "test_result" } ] @@ -1510,13 +1510,13 @@ }, "included": [ { - "id": "67894b54-7b56-4f7d-a58d-6742c22dff53", + "id": "0b4a7c89-6b1e-4583-930a-210ea0a036b9", "type": "benchmark", "attributes": { "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Ullam ipsam enim deleniti.", + "title": "Omnis quia laboriosam at.", "version": "100.0.19", - "description": "Aperiam dolor laudantium. Dolorum quia est. Nisi minus ut.", + "description": "Facilis iure eaque. Temporibus facere deleniti. Molestias nulla possimus.", "os_major_version": "7", "latest_supported_os_minor_versions": [], "rule_tree": [] @@ -1643,19 +1643,19 @@ "Response example": { "value": { "data": { - "id": "a8f54de4-827f-4099-a90a-5b4f77640cb3", + "id": "99522dcf-69fc-4ab7-91e9-a596ac2a3d23", "type": "profile", "attributes": { - "ref_id": "xccdf_org.ssgproject.content_profile_d31b6cce-9d13-4fad-a822-c92154b85f39", + "ref_id": "xccdf_org.ssgproject.content_profile_67085870-5b4f-4c1b-8f5d-d8794e5abfc2", "score": 0.0, - "parent_profile_id": "590c08dd-117e-4743-b5a6-e420505523c7", + "parent_profile_id": "0162c304-aab8-4220-8b43-4da0a593a24c", "external": false, "compliance_threshold": 93.5, "os_major_version": "7", "os_version": "7", - "policy_profile_id": "a8f54de4-827f-4099-a90a-5b4f77640cb3", + "policy_profile_id": "99522dcf-69fc-4ab7-91e9-a596ac2a3d23", "os_minor_version": "", - "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_de3a353a-6162-4152-9ec7-593a014a15bd", + "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_c5050f35-9825-425d-8529-66ceb1874bad", "values": {}, "name": "Policy for Profile", "description": "An updated custom description", @@ -1672,42 +1672,42 @@ "relationships": { "account": { "data": { - "id": "d37851fb-6eb7-45dc-8b00-e2a90e1771e8", + "id": "e677acb0-d237-4413-b209-c298abdc4393", "type": "account" } }, "benchmark": { "data": { - "id": "d99c124e-1c92-4ae9-8242-aa275c1983d3", + "id": "17d6f500-b8af-49da-9db3-a107eba7f9c9", "type": "benchmark" } }, "parent_profile": { "data": { - "id": "590c08dd-117e-4743-b5a6-e420505523c7", + "id": "0162c304-aab8-4220-8b43-4da0a593a24c", "type": "profile" } }, "rules": { "data": [ { - "id": "90aabcb3-8bc0-4787-af87-b039b2c7d300", + "id": "16fb010d-99c9-4ca6-ab8a-95f14401107b", "type": "rule" }, { - "id": "8f2e2c12-f48b-46c7-93b2-c937261c1523", + "id": "52e6ecdc-eb0b-465b-8b98-0bf535b22b8b", "type": "rule" }, { - "id": "ddceeeba-1d33-441e-a5b4-ca6e0fc27be1", + "id": "d75717dc-a077-4ebd-9ba7-8ca58215d9f9", "type": "rule" }, { - "id": "af7e6aac-3293-4e91-9228-cd99e167cb52", + "id": "b59615db-9879-4621-9a67-568bf6819d45", "type": "rule" }, { - "id": "7271a227-0e53-41ad-8870-01e0ab7c533f", + "id": "d7a849e1-64d2-464c-8546-48b3cd475f9f", "type": "rule" } ] @@ -1715,11 +1715,11 @@ "hosts": { "data": [ { - "id": "988d3e89-7417-49ac-a094-e4a7feac8453", + "id": "472be383-766a-4ebf-b8d3-b17c4cdab1f7", "type": "host" }, { - "id": "0de8c18e-09c9-4cf2-98d0-b8f2b0bd9ef1", + "id": "e07629ad-8c20-426b-8f25-6fc99f9643c3", "type": "host" } ] @@ -1898,22 +1898,22 @@ "Response example": { "value": { "data": { - "id": "e65577b8-b75a-4f51-bdd0-5a35b35ee2c6", + "id": "9fc30e4c-1916-42cc-b500-2ba849e3c0a6", "type": "profile", "attributes": { - "ref_id": "xccdf_org.ssgproject.content_profile_320ce75b-e8dc-4abf-a82d-54c8786dddd2", + "ref_id": "xccdf_org.ssgproject.content_profile_fef45c46-82f8-44b8-b15b-59567f6d8cdf", "score": 0.0, - "parent_profile_id": "0b157fc7-108e-4c14-a828-a9417aedde5c", + "parent_profile_id": "f49c06fa-9a39-442a-af61-7c19001322cb", "external": false, "compliance_threshold": 100.0, "os_major_version": "7", "os_version": "7", "policy_profile_id": null, "os_minor_version": "", - "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_320ce75b-e8dc-4abf-a82d-54c8786dddd2", + "parent_profile_ref_id": "xccdf_org.ssgproject.content_profile_fef45c46-82f8-44b8-b15b-59567f6d8cdf", "values": {}, - "name": "Voluptas maiores ea est.", - "description": "Autem fuga ipsum. Consequuntur omnis sit. Aperiam officia quo.", + "name": "Deserunt dolore quo fugit.", + "description": "Aperiam tempora fugiat. Magnam alias veritatis. Saepe et molestiae.", "canonical": false, "tailored": false, "total_host_count": 0, @@ -1922,24 +1922,24 @@ "test_result_host_count": 0, "unsupported_host_count": 0, "business_objective": null, - "policy_type": "At maiores hic quam." + "policy_type": "Quia accusamus velit voluptas." }, "relationships": { "account": { "data": { - "id": "fd84c6cf-1e02-43c6-b594-ef577cb6f46f", + "id": "33cc1ffa-d310-4a77-adbd-c68855ac1bf2", "type": "account" } }, "benchmark": { "data": { - "id": "b0563228-b193-4f6a-955d-5d9209f57233", + "id": "b4702032-5aac-4059-b602-8b6e6bb0d6c0", "type": "benchmark" } }, "parent_profile": { "data": { - "id": "0b157fc7-108e-4c14-a828-a9417aedde5c", + "id": "f49c06fa-9a39-442a-af61-7c19001322cb", "type": "profile" } }, @@ -2087,7 +2087,7 @@ "value": { "data": [ { - "id": "8a11629e-0a73-4a86-a667-0dde4f4c3be4", + "id": "1f73237a-2b23-4635-8b9a-908863b08723", "type": "rule_result", "attributes": { "result": "pass" @@ -2095,13 +2095,13 @@ "relationships": { "host": { "data": { - "id": "8c6f2c0e-ce69-467f-909f-0fd16d5c6b41", + "id": "7cead7e4-d156-4da6-a445-b2222924787a", "type": "host" } }, "rule": { "data": { - "id": "33f95e97-ec7f-4150-bfaf-42bc7906ebf1", + "id": "3ed8c11f-bba1-4ece-91ac-7e8921dd0a99", "type": "rule" } } @@ -2263,19 +2263,19 @@ "value": { "data": [ { - "id": "315862fd-8caa-4772-a20d-4072236d01e7", + "id": "3a5e866c-0a3a-4ca1-a7eb-55aaf2208196", "type": "rule", "attributes": { - "ref_id": "foo_rule_4024ed8f-7923-4912-8ce5-73984d87bc6b", - "title": "Veritatis qui ut velit.", - "rationale": "Quos aut est. Maiores quibusdam eveniet. Ipsam dolore in.", - "description": "Possimus non voluptatem. Vel rerum quo. Voluptates sit similique.", - "severity": "high", - "slug": "foo_rule_4024ed8f-7923-4912-8ce5-73984d87bc6b", + "ref_id": "foo_rule_babd46d5-70eb-4867-ace8-92eaa607dff5", + "title": "Eveniet nihil distinctio velit.", + "rationale": "Consequatur fugiat dolores. Magni itaque temporibus. Nesciunt nemo sint.", + "description": "Tenetur soluta totam. Maxime esse ut. Quo in fuga.", + "severity": "medium", + "slug": "foo_rule_babd46d5-70eb-4867-ace8-92eaa607dff5", "values": [ - "b527d0b1-1ba7-4bfb-98c6-1847e325bcb3", - "8fc3a865-b6d7-449a-99b1-b052ac4c4ac1", - "05fb6858-ca5b-466b-b3ee-52021c2ec78a" + "a77222e3-0564-49ed-9f49-ce3caf767901", + "4cd8fb28-138d-4394-9494-017f940f2c8d", + "75fcd2bf-63d3-4ff7-9571-096544012202" ], "precedence": 1, "remediation_issue_id": null @@ -2283,25 +2283,25 @@ "relationships": { "benchmark": { "data": { - "id": "4749dede-84a4-4aa5-bb63-908bc56a5786", + "id": "01f4e992-2787-4615-b3f3-b7fb9e3d4a02", "type": "benchmark" } }, "profiles": { "data": [ { - "id": "141c4dfd-72e3-4dc8-ad8f-7ef9b46380cb", + "id": "504ed900-375a-42f6-9c8f-3722c74bbdb0", "type": "profile" }, { - "id": "025d4b83-50eb-4068-b900-c6e98b12233d", + "id": "5f3b1c0b-0806-4c0d-81ef-e65adb7af8a4", "type": "profile" } ] }, "rule_identifier": { "data": { - "id": "b133021e-ddf0-482f-98f2-ef7cd6a18733", + "id": "9e5d3f54-2559-4bec-a618-e07b24d2f828", "type": "rule_identifier" } } @@ -2421,19 +2421,19 @@ "Response example": { "value": { "data": { - "id": "800ca1df-090a-4e04-9ca0-9eb269c42cf1", + "id": "81905ac0-6943-414a-a9de-0380004d39d4", "type": "rule", "attributes": { - "ref_id": "foo_rule_13246dbf-40db-4520-bcc9-0f89457b6257", - "title": "Aut quam optio fugiat.", - "rationale": "Nisi et quam. Qui quae illo. Porro est voluptatum.", - "description": "Sequi in nihil. Minus a eligendi. Sit ex hic.", - "severity": "medium", - "slug": "foo_rule_13246dbf-40db-4520-bcc9-0f89457b6257", + "ref_id": "foo_rule_e3a62344-1661-4317-bcae-916fd21593b0", + "title": "Rem molestiae quam ut.", + "rationale": "Dolore quia aut. Occaecati sed quae. Nam sapiente tenetur.", + "description": "Quam qui enim. Minus ea in. Quo ipsum sint.", + "severity": "low", + "slug": "foo_rule_e3a62344-1661-4317-bcae-916fd21593b0", "values": [ - "e108a9cd-9f38-40a3-b090-08ea332f7659", - "4d8671ca-2364-4e82-8d04-5f8634e97247", - "e93fad4a-3617-4051-a794-d54dcfd402d1" + "52f659fc-da05-4762-ba27-08cd7bc2ee8d", + "c4ac9ff6-5cfc-4506-8f12-702fd3db0d21", + "55602f8e-83c7-4128-8f75-e8e6512f5fca" ], "precedence": 1, "remediation_issue_id": null @@ -2441,25 +2441,25 @@ "relationships": { "benchmark": { "data": { - "id": "c6764ac0-669e-4bde-ad5c-0bacbd3320e2", + "id": "10429819-aee9-460c-afcb-4a416384c2fc", "type": "benchmark" } }, "profiles": { "data": [ { - "id": "b640900a-745d-4bca-a17d-1a40e9064492", + "id": "bf65dd59-8707-43bb-93e8-e65253e65421", "type": "profile" }, { - "id": "60e7976c-b5e5-4df2-bf4c-8e61d970f3b6", + "id": "8b998108-685a-4add-8792-c8ddf83009db", "type": "profile" } ] }, "rule_identifier": { "data": { - "id": "ad36b930-a837-4d74-a0ce-48c68454acf5", + "id": "42132d40-d878-43df-b2d6-073bdaa0c6dc", "type": "rule_identifier" } } @@ -3019,146 +3019,6 @@ ] } }, - { - "id": "RHEL-7.9:scap-security-guide-0.1.63-1.el7_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.63-1.el7_9", - "version": "0.1.63", - "os_major_version": "7", - "os_minor_version": "9", - "profiles": [ - "anssi_nt28_enhanced", - "anssi_nt28_high", - "anssi_nt28_intermediary", - "anssi_nt28_minimal", - "C2S", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cjis", - "cui", - "e8", - "hipaa", - "ncp", - "ospp", - "pci-dss_centric", - "pci-dss", - "rhelh-stig", - "rhelh-vpp", - "rht-ccp", - "standard", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-7.9:scap-security-guide-0.1.66-1.el7_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-1.el7_9", - "version": "0.1.66", - "os_major_version": "7", - "os_minor_version": "9", - "profiles": [ - "anssi_nt28_enhanced", - "anssi_nt28_high", - "anssi_nt28_intermediary", - "anssi_nt28_minimal", - "C2S", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cjis", - "cui", - "e8", - "hipaa", - "ncp", - "ospp", - "pci-dss_centric", - "pci-dss", - "rhelh-stig", - "rhelh-vpp", - "rht-ccp", - "standard", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-7.9:scap-security-guide-0.1.69-1.el7_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.69-1.el7_9", - "version": "0.1.69", - "os_major_version": "7", - "os_minor_version": "9", - "profiles": [ - "anssi_nt28_enhanced", - "anssi_nt28_high", - "anssi_nt28_intermediary", - "anssi_nt28_minimal", - "C2S", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cjis", - "cui", - "e8", - "hipaa", - "ncp", - "ospp", - "pci-dss_centric", - "pci-dss", - "rhelh-stig", - "rhelh-vpp", - "rht-ccp", - "standard", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-7.9:scap-security-guide-0.1.72-2.el7_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-2.el7_9", - "version": "0.1.72", - "os_major_version": "7", - "os_minor_version": "9", - "profiles": [ - "anssi_nt28_enhanced", - "anssi_nt28_high", - "anssi_nt28_intermediary", - "anssi_nt28_minimal", - "C2S", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cjis", - "cui", - "e8", - "hipaa", - "ncp", - "ospp", - "pci-dss_centric", - "pci-dss", - "rhelh-stig", - "rhelh-vpp", - "rht-ccp", - "standard", - "stig", - "stig_gui" - ] - } - }, { "id": "RHEL-8.0:scap-security-guide-0.1.42-11.el8", "type": "supported_ssg", @@ -3314,34 +3174,6 @@ ] } }, - { - "id": "RHEL-8.4:scap-security-guide-0.1.66-1.el8_4", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-1.el8_4", - "version": "0.1.66", - "os_major_version": "8", - "os_minor_version": "4", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, { "id": "RHEL-8.5:scap-security-guide-0.1.57-5.el8", "type": "supported_ssg", @@ -3427,343 +3259,7 @@ } }, { - "id": "RHEL-8.6:scap-security-guide-0.1.63-1.el8_6", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.63-1.el8_6", - "version": "0.1.63", - "os_major_version": "8", - "os_minor_version": "6", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.6:scap-security-guide-0.1.66-1.el8_6", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-1.el8_6", - "version": "0.1.66", - "os_major_version": "8", - "os_minor_version": "6", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.6:scap-security-guide-0.1.69-3.el8_6", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.69-3.el8_6", - "version": "0.1.69", - "os_major_version": "8", - "os_minor_version": "6", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.6:scap-security-guide-0.1.72-2.el8_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-2.el8_9", - "version": "0.1.72", - "os_major_version": "8", - "os_minor_version": "6", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.7:scap-security-guide-0.1.63-4.el8", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.63-4.el8", - "version": "0.1.63", - "os_major_version": "8", - "os_minor_version": "7", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.7:scap-security-guide-0.1.66-2.el8_7", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-2.el8_7", - "version": "0.1.66", - "os_major_version": "8", - "os_minor_version": "7", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.8:scap-security-guide-0.1.66-2.el8", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-2.el8", - "version": "0.1.66", - "os_major_version": "8", - "os_minor_version": "8", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.8:scap-security-guide-0.1.69-2.el8_8", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.69-2.el8_8", - "version": "0.1.69", - "os_major_version": "8", - "os_minor_version": "8", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.8:scap-security-guide-0.1.72-2.el8_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-2.el8_9", - "version": "0.1.72", - "os_major_version": "8", - "os_minor_version": "8", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.9:scap-security-guide-0.1.69-2.el8", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.69-2.el8", - "version": "0.1.69", - "os_major_version": "8", - "os_minor_version": "9", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.9:scap-security-guide-0.1.72-2.el8_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-2.el8_9", - "version": "0.1.72", - "os_major_version": "8", - "os_minor_version": "9", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-8.10:scap-security-guide-0.1.72-2.el8_9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-2.el8_9", - "version": "0.1.72", - "os_major_version": "8", - "os_minor_version": "10", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.0:scap-security-guide-0.1.60-6.el9_0", + "id": "RHEL-9.0:scap-security-guide-0.1.60-6.el9_0", "type": "supported_ssg", "attributes": { "package": "scap-security-guide-0.1.60-6.el9_0", @@ -3789,368 +3285,11 @@ "stig_gui" ] } - }, - { - "id": "RHEL-9.0:scap-security-guide-0.1.66-1.el9_0", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-1.el9_0", - "version": "0.1.66", - "os_major_version": "9", - "os_minor_version": "0", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.0:scap-security-guide-0.1.63-2.el9_0", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.63-2.el9_0", - "version": "0.1.63", - "os_major_version": "9", - "os_minor_version": "0", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.0:scap-security-guide-0.1.69-3.el9_3", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.69-3.el9_3", - "version": "0.1.69", - "os_major_version": "9", - "os_minor_version": "0", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "ccn_advanced", - "ccn_basic", - "ccn_intermediate", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.0:scap-security-guide-0.1.72-1.el9_3", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-1.el9_3", - "version": "0.1.72", - "os_major_version": "9", - "os_minor_version": "0", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "ccn_advanced", - "ccn_basic", - "ccn_intermediate", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.1:scap-security-guide-0.1.63-5.el9", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.63-5.el9", - "version": "0.1.63", - "os_major_version": "9", - "os_minor_version": "1", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.1:scap-security-guide-0.1.66-1.el9_1", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-1.el9_1", - "version": "0.1.66", - "os_major_version": "9", - "os_minor_version": "1", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.2:scap-security-guide-0.1.66-1.el9_1", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.66-1.el9_1", - "version": "0.1.66", - "os_major_version": "9", - "os_minor_version": "2", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.2:scap-security-guide-0.1.69-3.el9_3", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.69-3.el9_3", - "version": "0.1.69", - "os_major_version": "9", - "os_minor_version": "2", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "ccn_advanced", - "ccn_basic", - "ccn_intermediate", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.2:scap-security-guide-0.1.72-1.el9_3", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-1.el9_3", - "version": "0.1.72", - "os_major_version": "9", - "os_minor_version": "2", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "ccn_advanced", - "ccn_basic", - "ccn_intermediate", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.3:scap-security-guide-0.1.69-3.el9_3", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.69-3.el9_3", - "version": "0.1.69", - "os_major_version": "9", - "os_minor_version": "3", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "ccn_advanced", - "ccn_basic", - "ccn_intermediate", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.3:scap-security-guide-0.1.72-1.el9_3", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-1.el9_3", - "version": "0.1.72", - "os_major_version": "9", - "os_minor_version": "3", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "ccn_advanced", - "ccn_basic", - "ccn_intermediate", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } - }, - { - "id": "RHEL-9.4:scap-security-guide-0.1.72-1.el9_3", - "type": "supported_ssg", - "attributes": { - "package": "scap-security-guide-0.1.72-1.el9_3", - "version": "0.1.72", - "os_major_version": "9", - "os_minor_version": "4", - "profiles": [ - "anssi_bp28_enhanced", - "anssi_bp28_high", - "anssi_bp28_intermediary", - "anssi_bp28_minimal", - "ccn_advanced", - "ccn_basic", - "ccn_intermediate", - "cis", - "cis_server_l1", - "cis_workstation_l1", - "cis_workstation_l2", - "cui", - "e8", - "hipaa", - "ism_o", - "ospp", - "pci-dss", - "stig", - "stig_gui" - ] - } } ], "meta": { - "total": 58, - "revision": "2024-02-21" + "total": 29, + "revision": "2022-08-18" } }, "summary": "", @@ -4311,26 +3450,26 @@ "value": { "data": [ { - "id": "4ab74870-323e-40ed-8582-95d82c863dc2", + "id": "ef882e78-ee3c-4877-a831-cbcebe60d7f9", "type": "host", "attributes": { - "name": "weimann-mclaughlin.test", + "name": "gibson.example", "os_major_version": 7, "os_minor_version": 9, - "last_scanned": "2024-06-19T14:31:57Z", + "last_scanned": "2024-09-03T07:24:29Z", "groups": [ { - "id": "d662d13d-acae-4b9a-bfde-1d0655fcff73", - "name": "RSS" + "id": "5cdf3863-8316-4d2a-9ff3-a4cc02499583", + "name": "SMS" } ], "rules_passed": 0, "rules_failed": 0, "has_policy": true, - "culled_timestamp": "2034-07-03T14:31:57Z", - "stale_timestamp": "2034-06-19T14:31:57Z", - "stale_warning_timestamp": "2034-06-26T14:31:57Z", - "updated": "2024-06-19T14:31:57Z", + "culled_timestamp": "2034-09-17T07:24:29Z", + "stale_timestamp": "2034-09-03T07:24:29Z", + "stale_warning_timestamp": "2034-09-10T07:24:29Z", + "updated": "2024-09-03T07:24:29Z", "insights_id": "45b7b025-4bf4-48a5-abbd-161c12ece8f4", "compliant": false }, @@ -4338,7 +3477,7 @@ "test_results": { "data": [ { - "id": "bafb2143-e94f-48ce-ae46-88e7a059438e", + "id": "451daca4-8dbc-4561-9ccb-2a6519d6f90a", "type": "test_result" } ] @@ -4346,7 +3485,7 @@ "profiles": { "data": [ { - "id": "fab0bc38-c11d-4401-8064-d40fca2e195b", + "id": "e57ff2c1-9199-4fda-8db5-75389eaf7065", "type": "profile" } ] @@ -4470,26 +3609,26 @@ "Response example": { "value": { "data": { - "id": "bd7b2a70-4a83-406c-9c89-10a9c7a5879b", + "id": "7a08182f-ca9b-4023-9a39-5be1edf004be", "type": "host", "attributes": { - "name": "cummings.example", + "name": "blick.example", "os_major_version": 7, "os_minor_version": 9, - "last_scanned": "2024-06-19T14:31:57Z", + "last_scanned": "2024-09-03T07:24:29Z", "groups": [ { - "id": "e1a152d2-0503-436c-9c4a-59df8ef09ec0", - "name": "IB" + "id": "935b3ec1-e5e1-4d31-9e84-4df9d275690b", + "name": "SCSI" } ], "rules_passed": 0, "rules_failed": 0, "has_policy": true, - "culled_timestamp": "2034-07-03T14:31:57Z", - "stale_timestamp": "2034-06-19T14:31:57Z", - "stale_warning_timestamp": "2034-06-26T14:31:57Z", - "updated": "2024-06-19T14:31:57Z", + "culled_timestamp": "2034-09-17T07:24:29Z", + "stale_timestamp": "2034-09-03T07:24:29Z", + "stale_warning_timestamp": "2034-09-10T07:24:29Z", + "updated": "2024-09-03T07:24:29Z", "insights_id": "45b7b025-4bf4-48a5-abbd-161c12ece8f4", "compliant": false }, @@ -4497,7 +3636,7 @@ "test_results": { "data": [ { - "id": "cf734591-d294-4436-96f6-b888614f359f", + "id": "3c27ee78-3eca-4f96-aa7e-c63b7c608c08", "type": "test_result" } ] @@ -4505,7 +3644,7 @@ "profiles": { "data": [ { - "id": "dd3b3c04-6ffb-492e-8e00-91c08276588b", + "id": "269a6da6-6db2-4229-b8f2-ea2ed59304c2", "type": "profile" } ] @@ -4619,38 +3758,38 @@ "value": { "data": [ { - "id": "b8a4fa23-ad5a-4943-9f22-0ae8b72be9c9", + "id": "8343fca5-8944-409b-9c56-9f258e75396e", "type": "value_definition", "attributes": { - "ref_id": "foo_value_786b4c13-61b4-4b9e-a6f6-909699c3038e", - "title": "Asperiores unde iusto quia.", - "description": "Sed veritatis voluptas. Aut unde commodi. Sint suscipit voluptas.", + "ref_id": "foo_value_dd5108e3-2e11-4eaa-a842-b91b10f12ba2", + "title": "Recusandae et a ratione.", + "description": "Ut ex et. Et ut quibusdam. Ducimus architecto facilis.", "value_type": "boolean", "default_value": "true" }, "relationships": { "benchmark": { "data": { - "id": "afbf52c5-41d1-4850-abb2-59a3a8285541", + "id": "f156854d-b4ab-4c09-9ebe-23e0c1b529ef", "type": "benchmark" } } } }, { - "id": "e723491d-ba36-46cf-a51b-d5bfc9606bdd", + "id": "93027475-7e42-4734-a674-77af96a185e2", "type": "value_definition", "attributes": { - "ref_id": "foo_value_84b87909-753b-42e0-a431-0ff3e1f4150d", - "title": "In ut beatae reprehenderit.", - "description": "Reprehenderit et in. Est eos rem. Consectetur qui id.", + "ref_id": "foo_value_29c75474-846d-4e12-a5b8-fe4ebcbf711c", + "title": "Inventore ullam iusto eius.", + "description": "Ut aspernatur reprehenderit. Reprehenderit dolor sed. Laudantium est rerum.", "value_type": "boolean", "default_value": "true" }, "relationships": { "benchmark": { "data": { - "id": "e6828fad-f338-48e5-921e-bd1d3eca8bab", + "id": "744547c9-3d12-4e4e-a026-f20306a85b66", "type": "benchmark" } } diff --git a/swagger/v2/openapi.json b/swagger/v2/openapi.json index 84fce920a..fe0f6ff89 100644 --- a/swagger/v2/openapi.json +++ b/swagger/v2/openapi.json @@ -104,124 +104,124 @@ "value": { "data": [ { - "id": "042ca408-30c8-4cd9-829e-963b67001bbf", - "title": "Nostrum eaque veniam nemo.", - "description": "Sed sapiente aut. Asperiores dolorum perferendis. Ipsam voluptate pariatur.", + "id": "0167a3be-6336-499b-8f20-303e2e1f59e8", + "title": "Nam voluptatem in consequatur.", + "description": "Dolorem odio eveniet. Dolorum aut dolor. Dolorum aut hic.", "business_objective": null, - "compliance_threshold": 44.0, + "compliance_threshold": 23.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Id recusandae laudantium iste.", - "ref_id": "xccdf_org.ssgproject.content_profile_65aecb62e7f85882fc39b857d584f2ae" + "profile_title": "Officia qui fuga aperiam.", + "ref_id": "xccdf_org.ssgproject.content_profile_abe49c64b511ad1b0508d9cc173828eb" }, { - "id": "11e2de63-6477-4264-aa50-75939d9dee55", - "title": "Error quibusdam earum voluptatem.", - "description": "Quidem autem aut. Sunt error ea. Asperiores perspiciatis aut.", + "id": "06c730c5-afda-48c5-af74-1423e4804410", + "title": "Nobis temporibus ex ipsum.", + "description": "Voluptas in aut. Maxime eos sit. Illum quo id.", "business_objective": null, - "compliance_threshold": 1.0, + "compliance_threshold": 55.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Maxime dolores animi quo.", - "ref_id": "xccdf_org.ssgproject.content_profile_db4790d23c1902dd8dcb66a8e51ad01e" + "profile_title": "Alias est ullam at.", + "ref_id": "xccdf_org.ssgproject.content_profile_e2357a069f010318a6d35b7695eb44cb" }, { - "id": "1f1c37f1-d0e0-4452-8ffe-616ed85fa138", - "title": "Quis dicta voluptas minima.", - "description": "Sed architecto qui. Accusamus corporis alias. Commodi minus eaque.", + "id": "0901f6bc-5d95-44fd-9627-ef42923b1a7a", + "title": "Quo eos consequatur ea.", + "description": "Nesciunt temporibus et. Neque magnam enim. Accusantium aut consequatur.", "business_objective": null, - "compliance_threshold": 19.0, + "compliance_threshold": 9.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Nostrum quia est accusamus.", - "ref_id": "xccdf_org.ssgproject.content_profile_7b4e5c83a3179ea1f2bb0ed22be85deb" + "profile_title": "Occaecati qui molestias quas.", + "ref_id": "xccdf_org.ssgproject.content_profile_6934173b886ad0923bf890eee0d77eae" }, { - "id": "2971edcf-c1c5-43fe-a1fa-a4e92ad1c755", - "title": "Voluptas qui ut dolorum.", - "description": "Vero non consequatur. Nulla sequi aut. Veritatis deleniti atque.", + "id": "0ab20712-a857-449d-be10-fd610c05b0ed", + "title": "Reiciendis non ut non.", + "description": "Eveniet rerum dolorum. Quia nostrum voluptatem. Libero eum labore.", "business_objective": null, - "compliance_threshold": 81.0, + "compliance_threshold": 45.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Odio excepturi autem quaerat.", - "ref_id": "xccdf_org.ssgproject.content_profile_219777ff1f0e71aed4d4ebe8543c1d19" + "profile_title": "Laborum quae molestiae omnis.", + "ref_id": "xccdf_org.ssgproject.content_profile_ee238df3a98ec883ecd47fb7a97df4f2" }, { - "id": "32b2f00d-cc3e-4164-a07a-f99a567d37fe", - "title": "Qui corrupti sint qui.", - "description": "A praesentium eius. Quisquam molestiae et. Perferendis et voluptatem.", + "id": "1bdf6a54-584b-4a78-a2ad-f1b69c79961c", + "title": "Cupiditate corporis dolor odio.", + "description": "Et eius quia. In eum at. Culpa numquam est.", "business_objective": null, - "compliance_threshold": 87.0, + "compliance_threshold": 5.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ab minima quia sed.", - "ref_id": "xccdf_org.ssgproject.content_profile_fffdb6aebbbcd01d2b3e654ce8d346a8" + "profile_title": "Consequatur ad autem sunt.", + "ref_id": "xccdf_org.ssgproject.content_profile_70e2fe2c79a2b0cbe11b943e756a3ccf" }, { - "id": "58cb04ff-85f1-4bb4-85f5-3f929ec02a15", - "title": "Esse omnis ducimus aperiam.", - "description": "Aspernatur quasi porro. Quis deleniti qui. Voluptatem atque eius.", + "id": "22c80289-ad9a-48f3-b356-2cd382c61ce7", + "title": "Minima iusto minus laudantium.", + "description": "Ad fuga qui. Est aut et. Nihil magnam id.", "business_objective": null, - "compliance_threshold": 13.0, + "compliance_threshold": 37.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Distinctio quae repudiandae quis.", - "ref_id": "xccdf_org.ssgproject.content_profile_f06033705d4f6cd4693fcfd1d7864d46" + "profile_title": "Possimus ipsam earum quos.", + "ref_id": "xccdf_org.ssgproject.content_profile_71fab4a08741dcf2ef5e7c14eb5548fe" }, { - "id": "689e719c-553f-44ab-8ba5-08203f52a53e", - "title": "Asperiores cupiditate quia est.", - "description": "Est est veritatis. Voluptas omnis voluptas. Enim voluptatum reiciendis.", + "id": "23e11576-6371-4c05-adf5-f3b6e124bd4c", + "title": "Nihil labore debitis sed.", + "description": "Et eos officiis. Repellendus error ducimus. Ratione recusandae reiciendis.", "business_objective": null, - "compliance_threshold": 70.0, + "compliance_threshold": 79.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Id dolores ratione ab.", - "ref_id": "xccdf_org.ssgproject.content_profile_2cc26a4a3e2d7aded9871a25329dd656" + "profile_title": "Reiciendis libero incidunt minima.", + "ref_id": "xccdf_org.ssgproject.content_profile_b30b488ea0754a6cc6a94caad9e53885" }, { - "id": "69f0fdd8-9058-4cac-8a7d-93238945d72c", - "title": "Commodi dignissimos ut ipsam.", - "description": "Quo aut et. Explicabo quo facere. Unde debitis commodi.", + "id": "264970bc-b05a-4416-80fb-71a6eaefb72a", + "title": "Voluptatibus voluptatem ipsum voluptatem.", + "description": "Dolorem et non. Incidunt sed natus. Eos facilis repellat.", "business_objective": null, - "compliance_threshold": 1.0, + "compliance_threshold": 15.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Corporis iusto at voluptatibus.", - "ref_id": "xccdf_org.ssgproject.content_profile_309beb0dc26e67d6602ece6f7a3912a3" + "profile_title": "Maxime eaque reprehenderit saepe.", + "ref_id": "xccdf_org.ssgproject.content_profile_8d6233c0b9c2dd258977424073d184da" }, { - "id": "6a73ca64-7d3d-4c07-a661-4f125dc2dff1", - "title": "Labore est quam debitis.", - "description": "Itaque rerum provident. Quasi et totam. Sunt magni consequatur.", + "id": "30e14442-5c96-41e1-bd70-c7949860f5ef", + "title": "Dolorum optio tempore cupiditate.", + "description": "Accusantium et et. Id suscipit placeat. Laboriosam magni ut.", "business_objective": null, - "compliance_threshold": 57.0, + "compliance_threshold": 62.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Consequatur ex illum animi.", - "ref_id": "xccdf_org.ssgproject.content_profile_4e3f88eb7abc17faad00a52afa9e5b58" + "profile_title": "Rerum aliquam quis aut.", + "ref_id": "xccdf_org.ssgproject.content_profile_6013b14aa22fcd351c05c718237b7cd2" }, { - "id": "703df12d-6ce1-4a1c-9210-532f7351176c", - "title": "Reiciendis et unde incidunt.", - "description": "Ullam aperiam labore. Quasi cum nihil. Praesentium aut eum.", + "id": "3a8edc63-debe-4779-9fdc-f93cbfd4795b", + "title": "Facere ut voluptatem hic.", + "description": "Inventore voluptate aspernatur. Dignissimos quibusdam numquam. Nobis molestias quia.", "business_objective": null, - "compliance_threshold": 44.0, + "compliance_threshold": 79.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Quaerat sed eos inventore.", - "ref_id": "xccdf_org.ssgproject.content_profile_1e5de7d0a124648786665063c9722ae1" + "profile_title": "Rerum debitis voluptas doloribus.", + "ref_id": "xccdf_org.ssgproject.content_profile_d86457c116eab6077b2f1279323d7cc1" } ], "meta": { @@ -242,124 +242,124 @@ "value": { "data": [ { - "id": "06bb3515-16a6-4976-93b2-65f103bf3c94", - "title": "Molestias odit optio dolorem.", - "description": "Provident repudiandae ratione. Error nihil quas. Perspiciatis vel sit.", + "id": "14f7d164-231d-4495-ba4e-e181675db4f8", + "title": "Laboriosam eveniet dignissimos et.", + "description": "Vel et voluptas. Cum et eos. At autem perspiciatis.", "business_objective": null, - "compliance_threshold": 22.0, + "compliance_threshold": 86.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Magni iure illo aut.", - "ref_id": "xccdf_org.ssgproject.content_profile_91ecabb96244b1da5c5f739dbd550ab5" + "profile_title": "Quia ea placeat repellat.", + "ref_id": "xccdf_org.ssgproject.content_profile_b5ea70eb809bfde8b7d21500ee90f434" }, { - "id": "0fe82def-19f2-4473-aa15-50c6776f96ba", - "title": "Odio mollitia consequatur saepe.", - "description": "Earum aut et. Facilis aut repellat. Numquam est iusto.", + "id": "160f3403-4211-407c-bb26-5b1d90b36c42", + "title": "Cum voluptatem tempore et.", + "description": "Qui aut et. Placeat necessitatibus quia. Amet iste eaque.", "business_objective": null, - "compliance_threshold": 18.0, + "compliance_threshold": 67.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Explicabo ut aut ullam.", - "ref_id": "xccdf_org.ssgproject.content_profile_e33e435601cfe8f0b531621b984debce" + "profile_title": "Hic et sunt illo.", + "ref_id": "xccdf_org.ssgproject.content_profile_48fde9e4c58616d16a3d08a6f35df490" }, { - "id": "116f1b73-4ee5-4368-ac0e-5ea4969af222", - "title": "Quisquam aut facere veniam.", - "description": "Aut molestias dolores. Dolor eum consectetur. Tempore facere debitis.", + "id": "1870bcce-b534-4b2e-9b7e-cdcd01fa4184", + "title": "Est rerum sed at.", + "description": "Fuga occaecati itaque. Magnam voluptatem aut. Impedit enim ducimus.", "business_objective": null, - "compliance_threshold": 1.0, + "compliance_threshold": 34.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ex et veritatis minima.", - "ref_id": "xccdf_org.ssgproject.content_profile_de5b0fe589e2eb898aabdefab36ff14d" + "profile_title": "Nihil quia error et.", + "ref_id": "xccdf_org.ssgproject.content_profile_62bf0ecef39bdd6ce63811a870b4581e" }, { - "id": "1ff35446-dfdd-41c3-84ae-3dc5bdff00e9", - "title": "Enim fugit eius dolores.", - "description": "Sapiente earum eos. Quae eaque cum. Ratione atque nulla.", + "id": "187281c2-bcf0-437c-afa1-52edc58dece4", + "title": "Illum quia soluta beatae.", + "description": "Minima eius earum. Voluptas ipsa id. Ut dolor non.", "business_objective": null, - "compliance_threshold": 32.0, + "compliance_threshold": 43.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Maxime dignissimos est reiciendis.", - "ref_id": "xccdf_org.ssgproject.content_profile_955d26d40a71a318c79fd115e741c1c6" + "profile_title": "Error laborum ipsa est.", + "ref_id": "xccdf_org.ssgproject.content_profile_01a117999583208c994ee2f36b805a4e" }, { - "id": "30d6e32b-1f67-44a6-8a06-fb682083b3c2", - "title": "Ut quo non iure.", - "description": "Eius rerum velit. Et facere qui. Exercitationem qui earum.", + "id": "1b3f474d-19c7-45d9-be34-ee5e7ae9838b", + "title": "Quae deserunt eaque maiores.", + "description": "Ut reiciendis illo. Maiores aspernatur molestiae. Saepe delectus ut.", "business_objective": null, - "compliance_threshold": 24.0, + "compliance_threshold": 18.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Sapiente perferendis odit animi.", - "ref_id": "xccdf_org.ssgproject.content_profile_2a184fec8453aba5cc6f11e47fc10dd7" + "profile_title": "Distinctio aspernatur et laboriosam.", + "ref_id": "xccdf_org.ssgproject.content_profile_d3d27ed177306e3af1fc3d07c39b0214" }, { - "id": "30d85d2e-fe92-4f3b-bb90-2f04c55f6de5", - "title": "Tempore debitis est corporis.", - "description": "Quis voluptas corrupti. Ut molestiae velit. Quos quae culpa.", + "id": "21a14d78-841f-4a75-bd8f-33c460f21e50", + "title": "Voluptate doloremque qui aut.", + "description": "Excepturi sint possimus. Amet voluptatum est. Veniam id voluptates.", "business_objective": null, - "compliance_threshold": 60.0, + "compliance_threshold": 57.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ex iure distinctio ad.", - "ref_id": "xccdf_org.ssgproject.content_profile_ab3b02fc6f2e684ed56807968f147f10" + "profile_title": "Blanditiis quisquam neque repellat.", + "ref_id": "xccdf_org.ssgproject.content_profile_28b7a1a1a23913fc096ee79bfd886132" }, { - "id": "3410423d-bb20-438b-8af1-7f56362e9237", - "title": "Officiis blanditiis doloremque quam.", - "description": "Dolores tenetur omnis. Nihil ipsum atque. Officia molestias voluptatem.", + "id": "22cb79c9-3ca3-44ba-b1ee-0c2674ba3f07", + "title": "Unde expedita quo non.", + "description": "Quidem molestias rerum. Sit voluptas dolores. Rerum soluta voluptas.", "business_objective": null, - "compliance_threshold": 40.0, + "compliance_threshold": 26.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Natus quisquam vel et.", - "ref_id": "xccdf_org.ssgproject.content_profile_c80566dfc5654867bdef2b3e8a588c1b" + "profile_title": "Quas incidunt delectus sunt.", + "ref_id": "xccdf_org.ssgproject.content_profile_e91c5a1cc0d32a1975bf2b051e7b4e00" }, { - "id": "5b3beaaa-271d-4ba8-8c28-d19f2c3ece4b", - "title": "Quae a aut modi.", - "description": "Officiis sint voluptatibus. Quos laboriosam hic. Pariatur dicta velit.", + "id": "24d96431-c5e9-478c-be2b-4f98ec3c4b6a", + "title": "Sit saepe illo soluta.", + "description": "Excepturi cum sunt. Sed magnam dicta. Est aut praesentium.", "business_objective": null, - "compliance_threshold": 54.0, + "compliance_threshold": 48.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "At ut aut et.", - "ref_id": "xccdf_org.ssgproject.content_profile_cae8d2f9201bd76fa4140e12f65c0c93" + "profile_title": "Perferendis et et non.", + "ref_id": "xccdf_org.ssgproject.content_profile_1aeade436a60f6dc79c0d518c9656dac" }, { - "id": "64450a04-2150-467c-b974-22addf6b2acf", - "title": "Iste et pariatur doloribus.", - "description": "Quidem in dignissimos. Officiis ullam eveniet. Ut inventore dignissimos.", + "id": "2b247ed8-4312-4581-b9f7-ab3e71414275", + "title": "Doloremque nisi ex odio.", + "description": "Quia nihil consequatur. Perferendis voluptas occaecati. Numquam maiores saepe.", "business_objective": null, - "compliance_threshold": 28.0, + "compliance_threshold": 40.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Provident accusamus distinctio quo.", - "ref_id": "xccdf_org.ssgproject.content_profile_22c559a9750d71be20f9c8e22153a2c1" + "profile_title": "Dignissimos reiciendis dolor doloribus.", + "ref_id": "xccdf_org.ssgproject.content_profile_2a3b340c0b93a2642ab64247c8d3982d" }, { - "id": "699afb30-b9a9-4903-951d-cb6391e37a81", - "title": "Minima tempore dolorum corrupti.", - "description": "Qui aut ut. Quia autem similique. Deserunt ut aperiam.", + "id": "59fb24d8-8129-4ce5-8e17-fef6808b9c03", + "title": "Illum eos consequatur et.", + "description": "Occaecati enim ut. Vel eius consequatur. Rem numquam soluta.", "business_objective": null, - "compliance_threshold": 80.0, + "compliance_threshold": 86.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptate illo repudiandae vel.", - "ref_id": "xccdf_org.ssgproject.content_profile_b5058088157af94ae5042d536d8555e0" + "profile_title": "Quis a eveniet amet.", + "ref_id": "xccdf_org.ssgproject.content_profile_c2140085525c36129705b67627f07c87" } ], "meta": { @@ -477,7 +477,7 @@ "Response example": { "value": { "data": { - "id": "421159d3-c2c9-4d82-8fa1-fc3a03509901", + "id": "e2941ecc-e32a-4a05-a571-1ce517c3c935", "title": "Foo", "description": "Hello World", "business_objective": "Serious Business Objective", @@ -485,8 +485,8 @@ "total_system_count": null, "type": "policy", "os_major_version": 7, - "profile_title": "Ipsa perferendis libero quia.", - "ref_id": "xccdf_org.ssgproject.content_profile_d1d7183c0fecc2b3dc9df4b76868a2d7" + "profile_title": "Expedita id consequatur corporis.", + "ref_id": "xccdf_org.ssgproject.content_profile_0f757da58f0563c676bd218d1197968e" } }, "summary": "", @@ -556,16 +556,16 @@ "Returns a Policy": { "value": { "data": { - "id": "dbed3ce1-d385-4e91-b57f-30d6aab245c2", - "title": "Et exercitationem animi corporis.", - "description": "Nobis sint molestiae. Ullam ratione id. Aut autem sed.", + "id": "76655a3e-b41d-4bf5-b7d6-ff7b12c356e9", + "title": "Perspiciatis aut corrupti id.", + "description": "Temporibus voluptatem veritatis. Cupiditate consequatur in. Consequatur est temporibus.", "business_objective": null, - "compliance_threshold": 51.0, + "compliance_threshold": 95.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Necessitatibus est molestiae voluptatem.", - "ref_id": "xccdf_org.ssgproject.content_profile_d75d627808c758ce81c23c7e0641ceee" + "profile_title": "Ut et et aut.", + "ref_id": "xccdf_org.ssgproject.content_profile_609184574967c8bfe67258b7bd8e4098" } }, "summary": "", @@ -596,7 +596,7 @@ "Description of an error when requesting a non-existing Policy": { "value": { "errors": [ - "V2::Policy not found with ID 68f6cb1c-196a-4d38-9d22-27bde6ee62d8" + "V2::Policy not found with ID 766cc7c7-d82f-410a-8b1f-be5d30640acb" ] }, "summary": "", @@ -645,16 +645,16 @@ "Returns the updated Policy": { "value": { "data": { - "id": "d6c0a0e7-6b1f-44e7-84e6-d145d672cf4b", - "title": "Odio ab pariatur veniam.", - "description": "Sunt esse doloribus. Et aspernatur enim. Eligendi rerum et.", + "id": "c41f7766-a20e-426f-8494-1a3767740cd6", + "title": "Alias impedit voluptatem molestiae.", + "description": "Aut id ducimus. Facilis qui tempore. Quis omnis libero.", "business_objective": null, "compliance_threshold": 100.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Cumque eligendi ratione velit.", - "ref_id": "xccdf_org.ssgproject.content_profile_fe91f67e6f3d92c295dd543026de87a1" + "profile_title": "Vero excepturi recusandae neque.", + "ref_id": "xccdf_org.ssgproject.content_profile_710bc487ff46171837c5488665378506" } }, "summary": "", @@ -722,16 +722,16 @@ "Deletes a Policy": { "value": { "data": { - "id": "2f4e612e-669d-41ec-ae59-b17a429ba995", - "title": "Cum nihil delectus aliquid.", - "description": "Quo dicta et. Molestiae consequuntur nisi. Sunt expedita non.", + "id": "c30b4b28-f60e-41a8-955b-7599ccdbc66d", + "title": "Asperiores quia repudiandae sunt.", + "description": "Fugiat et numquam. Temporibus cupiditate et. Dolore dolorem error.", "business_objective": null, - "compliance_threshold": 70.0, + "compliance_threshold": 78.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Et nihil eum aut.", - "ref_id": "xccdf_org.ssgproject.content_profile_b82894d2741740d1d77472e33857a062" + "profile_title": "Ipsum nihil sunt autem.", + "ref_id": "xccdf_org.ssgproject.content_profile_322ec3668a7c26bd019fdc662c00de9b" } }, "summary": "", @@ -802,16 +802,10 @@ "items": { "enum": [ "title", - "os_major_version", - "total_system_count", "business_objective", "compliance_threshold", "title:asc", "title:desc", - "os_major_version:asc", - "os_major_version:desc", - "total_system_count:asc", - "total_system_count:desc", "business_objective:asc", "business_objective:desc", "compliance_threshold:asc", @@ -824,7 +818,7 @@ "name": "filter", "in": "query", "required": false, - "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Policies are searchable using attributes `title`, `os_major_version`, and `os_minor_version`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", + "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Policies are searchable using attributes `title` and `os_minor_version`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", "schema": { "type": "string" } @@ -853,124 +847,124 @@ "value": { "data": [ { - "id": "008b4eee-fbab-4091-9809-bc737e7ba24c", - "title": "Asperiores sit veniam facere.", - "description": "Odit sit odio. Consequatur repellendus vero. Inventore eos autem.", + "id": "321623e7-fc49-40c8-8153-4b5e43dc9d5e", + "title": "Ipsa voluptatem voluptas nostrum.", + "description": "Consequatur laboriosam reprehenderit. Velit quaerat et. Et voluptas molestias.", "business_objective": null, - "compliance_threshold": 35.0, + "compliance_threshold": 14.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Et at architecto quod.", - "ref_id": "xccdf_org.ssgproject.content_profile_d3c95c5547731a7714ec0669317fe25c" + "profile_title": "Dolorem qui dignissimos voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_2113bb92f427cbe48a47226b310c3f15" }, { - "id": "02e232ed-336b-4ee9-a5ef-3b2ef683ccf2", - "title": "Sed ut maxime reprehenderit.", - "description": "Molestiae cumque quo. In maxime quaerat. Et iure sapiente.", + "id": "35f958b9-3c52-45b4-927c-9394aa420a04", + "title": "Asperiores non ut dolor.", + "description": "Ea veniam velit. Iure pariatur et. Numquam saepe velit.", "business_objective": null, - "compliance_threshold": 7.0, + "compliance_threshold": 67.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Impedit natus architecto magnam.", - "ref_id": "xccdf_org.ssgproject.content_profile_c980c4ea4985bbb016a7ca175ada6cd4" + "profile_title": "Libero cum repudiandae tenetur.", + "ref_id": "xccdf_org.ssgproject.content_profile_4468c181bd90b6a24015accfdee8ef04" }, { - "id": "2550d3e0-fd23-45a0-9ff7-18f56838b1b6", - "title": "Aut qui omnis quia.", - "description": "Laboriosam facere aut. Est excepturi veniam. Et doloribus porro.", + "id": "46b63be6-ff03-4c65-9cb2-3bde3a2bf3fa", + "title": "Rerum quaerat sint velit.", + "description": "Eveniet autem omnis. Error et sapiente. Nesciunt nisi repellat.", "business_objective": null, - "compliance_threshold": 81.0, + "compliance_threshold": 75.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Eveniet rem aut ex.", - "ref_id": "xccdf_org.ssgproject.content_profile_99f0b0eced4c4ef7a038517523c18e56" + "profile_title": "Tenetur odit similique quia.", + "ref_id": "xccdf_org.ssgproject.content_profile_8bfefefd415e49eb7559b01d55ac6526" }, { - "id": "2c1826f1-bdb7-4fea-a4ab-268752c186aa", - "title": "Dolorum et in molestiae.", - "description": "Voluptas fugiat eaque. Sunt sunt et. Reprehenderit quasi tempore.", + "id": "4cdf76c1-57f8-4c7f-8ebf-e10c238c5b75", + "title": "Libero dolor nostrum nesciunt.", + "description": "Eligendi explicabo quae. Tenetur ipsa veniam. Accusantium qui et.", "business_objective": null, - "compliance_threshold": 32.0, + "compliance_threshold": 26.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Soluta placeat modi ut.", - "ref_id": "xccdf_org.ssgproject.content_profile_3e0dfd744a33b154dad4559969160cb3" + "profile_title": "Labore optio harum consequatur.", + "ref_id": "xccdf_org.ssgproject.content_profile_86bed2ffcb313a51f829a4f0644f3c2f" }, { - "id": "37bf6c32-27db-47c6-bb0d-c4280ed7ce1d", - "title": "Doloribus nobis debitis rerum.", - "description": "Maiores sunt molestiae. Id sint nihil. Quaerat doloremque facilis.", + "id": "5917aa57-5bff-4246-811f-2d4b3392e625", + "title": "Qui optio repellendus et.", + "description": "Ut blanditiis impedit. Laudantium ad a. Voluptatum error recusandae.", "business_objective": null, - "compliance_threshold": 11.0, + "compliance_threshold": 57.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Officiis et rerum in.", - "ref_id": "xccdf_org.ssgproject.content_profile_27dfa84afc96959ef62edb758dc941de" + "profile_title": "Distinctio exercitationem et temporibus.", + "ref_id": "xccdf_org.ssgproject.content_profile_085aa2dc3829049defc988247a43c0c6" }, { - "id": "3a4afa61-fdf8-41bd-9b13-bb5b2e6c2a5a", - "title": "Atque dolor vero quo.", - "description": "Atque odio ipsa. Iure non exercitationem. Dicta tempore assumenda.", + "id": "5a749044-cb06-4842-a2e4-631cd3e0e9be", + "title": "Deserunt quisquam ipsa possimus.", + "description": "Ipsum et cumque. Sit incidunt laboriosam. Alias dignissimos et.", "business_objective": null, - "compliance_threshold": 55.0, + "compliance_threshold": 66.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Magni culpa quia eum.", - "ref_id": "xccdf_org.ssgproject.content_profile_33f125866be213993837420014b732ec" + "profile_title": "Eos voluptas ut voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_91399ab6b6931cd3088dec329b19d75f" }, { - "id": "3d21ba67-2b54-4f4c-91c4-489a26bf2104", - "title": "Et debitis officiis omnis.", - "description": "Cupiditate tenetur voluptatibus. Voluptatem nihil omnis. Rerum dolor saepe.", + "id": "5b939240-8108-4d5b-8889-148453c7d8ad", + "title": "Voluptas et dolorem sed.", + "description": "Provident consequatur eveniet. Magnam qui quas. Voluptatem illum enim.", "business_objective": null, - "compliance_threshold": 53.0, + "compliance_threshold": 58.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Doloribus vero id incidunt.", - "ref_id": "xccdf_org.ssgproject.content_profile_6da081080eea48e75aae0603917754b5" + "profile_title": "Qui officiis ex molestias.", + "ref_id": "xccdf_org.ssgproject.content_profile_82bc82d8a7587489ed8bcedb7cbcc5d0" }, { - "id": "57aa5e19-7d24-4605-a18e-94c9748894e3", - "title": "Quia assumenda quaerat est.", - "description": "Libero iure sint. Et sunt aut. Libero ipsum sed.", + "id": "5f9237aa-1a14-447c-831d-4e0692bca7f7", + "title": "Corporis sed consectetur rerum.", + "description": "Commodi eum facilis. Doloribus harum molestiae. Nemo magni aut.", "business_objective": null, - "compliance_threshold": 69.0, + "compliance_threshold": 28.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptatum dolor eos facere.", - "ref_id": "xccdf_org.ssgproject.content_profile_f1a51128841bad8baa5f24a4a84e8947" + "profile_title": "Quia cumque aut voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_701a2c67c5675a7190fd299022f1daf0" }, { - "id": "5a44af0a-1ae7-42e1-aeb2-c7844e4815c8", - "title": "Sit omnis voluptas iure.", - "description": "Et fuga voluptas. Suscipit et iste. Veritatis qui doloribus.", + "id": "61fa91b2-56b2-471f-ae2a-698f5ad8e8e8", + "title": "Excepturi qui rerum non.", + "description": "A sit porro. Quasi facilis velit. Consequatur animi labore.", "business_objective": null, - "compliance_threshold": 99.0, + "compliance_threshold": 3.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Placeat iste tempore provident.", - "ref_id": "xccdf_org.ssgproject.content_profile_437b6da74c4cdcdbcdd8858dedef32d8" + "profile_title": "Ut sed itaque nulla.", + "ref_id": "xccdf_org.ssgproject.content_profile_d6b80d38d8137259850b4d8a4399a03d" }, { - "id": "5bb6f5c5-4538-4288-af29-1196a699302b", - "title": "Vel aut explicabo suscipit.", - "description": "Repudiandae veritatis sunt. Explicabo itaque repellendus. Rerum commodi nesciunt.", + "id": "6798ba74-7925-410b-aa63-b87cccab7fa0", + "title": "Culpa deserunt omnis error.", + "description": "Sit esse est. Occaecati placeat deserunt. Illo et cum.", "business_objective": null, - "compliance_threshold": 74.0, + "compliance_threshold": 65.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptas adipisci et sit.", - "ref_id": "xccdf_org.ssgproject.content_profile_132cfeaf363ef4b2276836454c02f2eb" + "profile_title": "Hic asperiores aut natus.", + "ref_id": "xccdf_org.ssgproject.content_profile_ea0dd3c358804d4858abcd7cd1f5ebb6" } ], "meta": { @@ -979,9 +973,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/systems/6aac2a66-0444-4ce7-88b5-d80c1a7bde85/policies?limit=10&offset=0", - "last": "/api/compliance/v2/systems/6aac2a66-0444-4ce7-88b5-d80c1a7bde85/policies?limit=10&offset=20", - "next": "/api/compliance/v2/systems/6aac2a66-0444-4ce7-88b5-d80c1a7bde85/policies?limit=10&offset=10" + "first": "/api/compliance/v2/systems/fdce20d8-85ff-4f96-bfe5-49df8e20f294/policies?limit=10&offset=0", + "last": "/api/compliance/v2/systems/fdce20d8-85ff-4f96-bfe5-49df8e20f294/policies?limit=10&offset=20", + "next": "/api/compliance/v2/systems/fdce20d8-85ff-4f96-bfe5-49df8e20f294/policies?limit=10&offset=10" } }, "summary": "", @@ -1099,82 +1093,82 @@ "value": { "data": [ { - "id": "006ed1a8-18cd-4bc0-ac30-35f69febd0cf", - "ref_id": "xccdf_org.ssgproject.content_profile_e586d590ce96337397e5e379074a92a2", - "title": "Et suscipit consequatur dolorem.", - "description": "Sequi blanditiis dolore. Labore sit quod. Delectus perferendis est.", + "id": "042a0f90-0b0f-4b98-b2fe-faad86ccc4a3", + "ref_id": "xccdf_org.ssgproject.content_profile_3c1ba8f327d9c125b00ff18aa5666c32", + "title": "Et provident incidunt voluptates.", + "description": "Cumque ad aut. Nesciunt aliquid non. Sit cupiditate tempora.", "value_overrides": {}, "type": "profile" }, { - "id": "15750c57-d73d-460a-b71d-a9885c0c2277", - "ref_id": "xccdf_org.ssgproject.content_profile_2e8af760f67ce452879d2db799f32782", - "title": "Eius qui sunt aperiam.", - "description": "Tempora aliquam id. Quod facilis saepe. Hic impedit et.", + "id": "0485bbe8-5373-4cd0-afb5-6177a08d0c20", + "ref_id": "xccdf_org.ssgproject.content_profile_d6b6b145b4d8b3abd6a186ab344d8bcb", + "title": "Molestiae et ut eos.", + "description": "Eligendi et quibusdam. Maiores sint repudiandae. Enim magnam occaecati.", "value_overrides": {}, "type": "profile" }, { - "id": "16b5d813-f267-470c-ac91-1dcbb8504fcb", - "ref_id": "xccdf_org.ssgproject.content_profile_b368c12d56b4b3c828296b028f8c606c", - "title": "Hic et consequatur ea.", - "description": "In fuga illo. Ex autem rerum. Voluptatum ratione et.", + "id": "15574a66-5546-4404-ac1e-2ad85e1bb0cb", + "ref_id": "xccdf_org.ssgproject.content_profile_b127e4e32f8aad3e0522e2dd162ada7f", + "title": "Ducimus et numquam pariatur.", + "description": "Ab libero non. Quasi perferendis est. Molestiae ut dolores.", "value_overrides": {}, "type": "profile" }, { - "id": "17215529-9a1c-4847-b68d-02d959b9272f", - "ref_id": "xccdf_org.ssgproject.content_profile_d1280dc49759795750eaaf165c474cbb", - "title": "Saepe qui velit quia.", - "description": "Nihil voluptates magni. Nulla placeat modi. Excepturi dolores tempora.", + "id": "16a829e3-5386-421e-ad12-4f3441483d92", + "ref_id": "xccdf_org.ssgproject.content_profile_e4ff3a28892dbec266c2982617621a43", + "title": "Molestiae vel voluptatem expedita.", + "description": "Molestiae porro id. Voluptatem nam ut. Tempora et earum.", "value_overrides": {}, "type": "profile" }, { - "id": "28e31a29-ab08-40d9-83d8-5237add46654", - "ref_id": "xccdf_org.ssgproject.content_profile_a705de868bf32a38b2420f62dd26b187", - "title": "Ratione atque cumque facilis.", - "description": "Est exercitationem ab. Sit eligendi et. Ut ipsam aut.", + "id": "3135cfaa-a15b-4e88-8427-829ad06f27db", + "ref_id": "xccdf_org.ssgproject.content_profile_0da9187866f98b0e020d170a63b43789", + "title": "Distinctio ut temporibus dolorem.", + "description": "Ipsam consequatur nemo. Est error atque. Labore aliquam eum.", "value_overrides": {}, "type": "profile" }, { - "id": "32d52c72-105d-48db-9ac7-a8e5ec468af8", - "ref_id": "xccdf_org.ssgproject.content_profile_e2548312c2728d39e62097d30196d01f", - "title": "Quia quos tempora deleniti.", - "description": "Laudantium saepe repellat. Voluptatem eum aut. Architecto ea consequatur.", + "id": "3a3dee3f-ce26-4f0f-9d41-ba4c202dcb95", + "ref_id": "xccdf_org.ssgproject.content_profile_fc04907c9a2b4f29a451c03d2c03d033", + "title": "Aliquid reiciendis commodi qui.", + "description": "Dolorum in deleniti. Esse magnam velit. Hic voluptas omnis.", "value_overrides": {}, "type": "profile" }, { - "id": "39fdf257-25d0-41f3-978a-861f3ad387a3", - "ref_id": "xccdf_org.ssgproject.content_profile_823f56dc6349864545a5ca3f6795eebe", - "title": "Magni et illum commodi.", - "description": "Quibusdam corporis consequatur. Perspiciatis impedit animi. Eius cumque modi.", + "id": "462f23d4-2afd-43cc-9c92-8917584814a9", + "ref_id": "xccdf_org.ssgproject.content_profile_57e910521378d8c1e9a669764b0ac318", + "title": "Inventore ipsam sit aut.", + "description": "Dolorem sint molestiae. Laudantium sit distinctio. Nulla temporibus ut.", "value_overrides": {}, "type": "profile" }, { - "id": "3ffcdef3-f95b-4397-85da-5cc873d269f2", - "ref_id": "xccdf_org.ssgproject.content_profile_c5b38cc49c269d3050a7de5089144832", - "title": "Illo sunt rem blanditiis.", - "description": "Corrupti quasi delectus. Cumque dolorem similique. Necessitatibus et sit.", + "id": "50402eb9-1802-4d1a-925b-2990cc7649e3", + "ref_id": "xccdf_org.ssgproject.content_profile_c9e3fa6a10dd52c78d512c28596a4eea", + "title": "Voluptates possimus et sint.", + "description": "Velit veniam et. Sit velit fuga. Fugit quos occaecati.", "value_overrides": {}, "type": "profile" }, { - "id": "645f650e-f237-448e-82dd-0499d749a5be", - "ref_id": "xccdf_org.ssgproject.content_profile_a188f509d78f9d6c274945cebd1e9b2e", - "title": "Est harum officia sequi.", - "description": "Corrupti deleniti cum. Dolor deserunt rem. Sunt sunt animi.", + "id": "52eb178d-7544-4179-aca5-666c56a916c7", + "ref_id": "xccdf_org.ssgproject.content_profile_583e39e07d3420feed1769afc2cea24a", + "title": "Reprehenderit quod quae et.", + "description": "Inventore architecto quaerat. A beatae aut. Eos facere beatae.", "value_overrides": {}, "type": "profile" }, { - "id": "68ccd3e7-085f-49b0-b36a-63f93bc4b719", - "ref_id": "xccdf_org.ssgproject.content_profile_92d12606270b215444990feca597fe24", - "title": "Fuga reiciendis sunt et.", - "description": "Molestias dicta ducimus. Nostrum voluptatibus est. Dicta incidunt sed.", + "id": "612a04ac-0dd3-4673-b927-27e391fc39b7", + "ref_id": "xccdf_org.ssgproject.content_profile_312d79b82fb5905503c6383b7e1dce50", + "title": "Sapiente et aut libero.", + "description": "Rem repellendus quae. Vitae commodi beatae. Quibusdam facilis aut.", "value_overrides": {}, "type": "profile" } @@ -1185,9 +1179,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/b3457473-89e4-4a25-bed4-b59078892e09/profiles?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/b3457473-89e4-4a25-bed4-b59078892e09/profiles?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/b3457473-89e4-4a25-bed4-b59078892e09/profiles?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/04643573-cfab-4e43-b40c-3e9408ed8b51/profiles?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/04643573-cfab-4e43-b40c-3e9408ed8b51/profiles?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/04643573-cfab-4e43-b40c-3e9408ed8b51/profiles?limit=10&offset=10" } }, "summary": "", @@ -1197,82 +1191,82 @@ "value": { "data": [ { - "id": "b6425865-eee9-45be-8e55-1f6128a1d789", - "ref_id": "xccdf_org.ssgproject.content_profile_63d27bffaeb92f5b2fb4b041693aed9b", - "title": "Ad consequuntur accusantium tempora.", - "description": "Nesciunt aut quae. Debitis maxime alias. Molestias ab est.", + "id": "dd8480be-8c97-4af4-a20d-e93531d41aa3", + "ref_id": "xccdf_org.ssgproject.content_profile_2b2812309cda7e5c6b51fa85bdcaa259", + "title": "A ea nesciunt non.", + "description": "Excepturi eius et. Accusamus cum sed. Ut fugiat earum.", "value_overrides": {}, "type": "profile" }, { - "id": "10ef1d4b-7ea2-4bf3-9511-6d471fee9f34", - "ref_id": "xccdf_org.ssgproject.content_profile_e88447e75542eed536207c477a3fcc5a", - "title": "Aperiam itaque atque velit.", - "description": "Velit omnis voluptatibus. Repudiandae reiciendis soluta. Repellat laboriosam ratione.", + "id": "2dc2449a-3c75-4a44-a8c0-4ef9d04912ec", + "ref_id": "xccdf_org.ssgproject.content_profile_8956f957fc797f94d9f97c79e858e2f2", + "title": "Adipisci dolores quos repudiandae.", + "description": "Ex quibusdam iure. Enim in qui. Minima consequatur voluptatem.", "value_overrides": {}, "type": "profile" }, { - "id": "9f4e4901-66e2-4a73-b8f4-af04977f098d", - "ref_id": "xccdf_org.ssgproject.content_profile_b8d1c8f8940cf72097183bb64a3e22ab", - "title": "Architecto ipsum voluptatum voluptates.", - "description": "Iusto voluptatem quidem. Neque molestiae dolor. Et quod magnam.", + "id": "68a4d762-f6e2-46e9-936d-1224d70a097e", + "ref_id": "xccdf_org.ssgproject.content_profile_ba3e77c8ecb0f5236f3b78791944cf79", + "title": "Autem accusantium est eum.", + "description": "Alias ipsam ea. Quaerat et omnis. Autem delectus iusto.", "value_overrides": {}, "type": "profile" }, { - "id": "6c911fb1-a477-4a76-b296-ef33335201f3", - "ref_id": "xccdf_org.ssgproject.content_profile_469ef26b59823a274dd10802594e277e", - "title": "Commodi ut est voluptas.", - "description": "Ut saepe est. Aspernatur inventore et. Corrupti voluptatem quam.", + "id": "756baaba-fad1-47c3-bf4c-0b91c78da4d6", + "ref_id": "xccdf_org.ssgproject.content_profile_49b88b6ebd74395c754732ff34b4eeff", + "title": "Consequatur quae est cupiditate.", + "description": "Magni expedita quibusdam. Eos eaque commodi. Dolorem tempora voluptatum.", "value_overrides": {}, "type": "profile" }, { - "id": "6638c2c0-f195-4bf0-922d-3e946d9fb5b7", - "ref_id": "xccdf_org.ssgproject.content_profile_5cb990cf4c1ffeb2eaaa87ddfde9e23c", - "title": "Consequatur ullam odio expedita.", - "description": "Quibusdam et ut. Aliquid sed tempore. Quis quisquam voluptas.", + "id": "a9aa4ca2-d986-46cd-b167-d9d4310badd5", + "ref_id": "xccdf_org.ssgproject.content_profile_34e84efb8e4bb90a269d0e8b20d1d118", + "title": "Debitis laboriosam esse illo.", + "description": "Qui et labore. Ex error voluptas. Id fugiat veniam.", "value_overrides": {}, "type": "profile" }, { - "id": "720f0524-5187-4607-bb6a-034aa324b7d6", - "ref_id": "xccdf_org.ssgproject.content_profile_84e64e37080400e6e5186f24e3a6dbcb", - "title": "Cum consequatur odio laborum.", - "description": "Aliquid praesentium culpa. Deleniti quasi aspernatur. Voluptas dolores natus.", + "id": "e617633b-64ca-4d07-ad51-04a0d18d6195", + "ref_id": "xccdf_org.ssgproject.content_profile_8a68af8f598b079a81c84bca4ad3474f", + "title": "Distinctio libero aut aut.", + "description": "Sed deleniti accusamus. Atque nam aut. Adipisci fugiat et.", "value_overrides": {}, "type": "profile" }, { - "id": "bc6f058e-228a-4b82-93e9-878be1ebe0d7", - "ref_id": "xccdf_org.ssgproject.content_profile_347ba22094f45286ee373e73bd28a8d8", - "title": "Dolores voluptates ipsum nemo.", - "description": "Quas aut voluptas. Et cupiditate dolor. Accusamus laborum minus.", + "id": "c98198ce-9937-4e7b-ad03-4b45a2478d5c", + "ref_id": "xccdf_org.ssgproject.content_profile_164382b5f47d28ffaeed64d260120ff8", + "title": "Est est iste dolorem.", + "description": "Itaque quae necessitatibus. Ullam ut soluta. Adipisci corrupti sit.", "value_overrides": {}, "type": "profile" }, { - "id": "3c01abc2-cdd0-430e-848b-28ef71e09c29", - "ref_id": "xccdf_org.ssgproject.content_profile_c5db11c511df079439af69b26a8fd919", - "title": "Eaque porro rerum explicabo.", - "description": "Assumenda dicta dolore. Eius id voluptas. Dolor sit voluptates.", + "id": "4d754364-9bba-4454-83f8-f59f5ceec9f4", + "ref_id": "xccdf_org.ssgproject.content_profile_7c348174dfaa875ebd5a97b596fbbb98", + "title": "Eum et ut eaque.", + "description": "Ducimus consequatur consectetur. Similique repellendus fuga. Ut doloribus officia.", "value_overrides": {}, "type": "profile" }, { - "id": "e3ed4f18-6cdc-4f70-8cb7-6953477e9086", - "ref_id": "xccdf_org.ssgproject.content_profile_83c73b5cd045b5bb187ecad92a515df1", - "title": "Enim accusantium quia accusamus.", - "description": "Officia debitis consequuntur. Qui nihil sunt. Expedita ut pariatur.", + "id": "83b6b8cf-2046-492f-990a-bd4fc1d7a2f2", + "ref_id": "xccdf_org.ssgproject.content_profile_c2ffe7d1ac75c78f98f57f91971fbf1b", + "title": "Illo aut perferendis expedita.", + "description": "Id sit facilis. Nihil tempora quia. Autem quam velit.", "value_overrides": {}, "type": "profile" }, { - "id": "edc085aa-50ff-4279-a173-c30ae0ace88c", - "ref_id": "xccdf_org.ssgproject.content_profile_5a77c77d40b90c42660d5ee17116b76f", - "title": "Laborum neque excepturi non.", - "description": "Maiores consectetur quae. Quae aperiam quod. Non mollitia molestiae.", + "id": "a2986cc0-d0ff-48b3-883e-4f9321bbee80", + "ref_id": "xccdf_org.ssgproject.content_profile_8c94fc266542bc51354432230c09a384", + "title": "Incidunt deleniti facilis fuga.", + "description": "Consequatur deleniti beatae. Qui dolor enim. Voluptatibus enim facere.", "value_overrides": {}, "type": "profile" } @@ -1284,35 +1278,35 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/ca7cf5c6-3ccc-4717-96a7-b22b63cfb993/profiles?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/ca7cf5c6-3ccc-4717-96a7-b22b63cfb993/profiles?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/ca7cf5c6-3ccc-4717-96a7-b22b63cfb993/profiles?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/7d948b0f-e2d2-4675-b37b-99e284103247/profiles?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/7d948b0f-e2d2-4675-b37b-99e284103247/profiles?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/7d948b0f-e2d2-4675-b37b-99e284103247/profiles?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Profiles filtered by '(title=Aliquid ad eaque deserunt.)'": { + "List of Profiles filtered by '(title=Ab et sunt aliquam.)'": { "value": { "data": [ { - "id": "07eb6148-ff30-4a2a-b5df-dd1900612442", - "ref_id": "xccdf_org.ssgproject.content_profile_4ac509936f12880e38bc00ae1f1fdac6", - "title": "Aliquid ad eaque deserunt.", - "description": "Debitis dolores omnis. Fugiat ea rem. Nihil quis nobis.", + "id": "10992378-42d2-42c9-9b3d-c0f4520ec31d", + "ref_id": "xccdf_org.ssgproject.content_profile_57abf4efdbf3f1eda3e4ac1a5dc752ee", + "title": "Ab et sunt aliquam.", + "description": "Laborum harum aut. Ducimus ut sapiente. Sit veritatis aperiam.", "value_overrides": {}, "type": "profile" } ], "meta": { "total": 1, - "filter": "(title=\"Aliquid ad eaque deserunt.\")", + "filter": "(title=\"Ab et sunt aliquam.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/2df5ea7d-1b36-4ccd-b225-ae4065fb705e/profiles?filter=%28title%3D%22Aliquid+ad+eaque+deserunt.%22%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/2df5ea7d-1b36-4ccd-b225-ae4065fb705e/profiles?filter=%28title%3D%22Aliquid+ad+eaque+deserunt.%22%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/7a4d807e-4e6f-4e2c-b9a9-fd34610c8ec4/profiles?filter=%28title%3D%22Ab+et+sunt+aliquam.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/7a4d807e-4e6f-4e2c-b9a9-fd34610c8ec4/profiles?filter=%28title%3D%22Ab+et+sunt+aliquam.%22%29&limit=10&offset=0" } }, "summary": "", @@ -1420,10 +1414,10 @@ "Returns a Profile": { "value": { "data": { - "id": "01106b3e-b8ea-407b-9c32-ad78812e4e80", - "ref_id": "xccdf_org.ssgproject.content_profile_a622e5a6f8c12a0fc71c373c6430b253", - "title": "Quidem reiciendis impedit et.", - "description": "Voluptas pariatur laboriosam. Illo quasi non. Et et ea.", + "id": "7702c9ac-6581-43eb-bead-a4e6da921f40", + "ref_id": "xccdf_org.ssgproject.content_profile_26e7ab21ebeeeb5783eece15433fd55c", + "title": "Totam exercitationem quia harum.", + "description": "Et aliquid sit. Enim labore ut. Aut impedit autem.", "value_overrides": {}, "type": "profile" } @@ -1456,7 +1450,7 @@ "Description of an error when requesting a non-existing Profile": { "value": { "errors": [ - "V2::Profile not found with ID 1caa1c65-5def-4631-b943-d627b05a5886" + "V2::Profile not found with ID 65dec61c-e3bc-4290-a4cf-e2333162fa69" ] }, "summary": "", @@ -1560,15 +1554,15 @@ "value": { "data": [ { - "id": "1009dac8-0abb-4818-baaa-bba07f8f2eeb", - "title": "Voluptatum reprehenderit sapiente rem.", - "description": "Ea reiciendis neque. Voluptatem ut ut. Perspiciatis inventore incidunt.", - "business_objective": "bus", + "id": "2e1375d3-8f21-40f5-9470-6f3f1bf82ddf", + "title": "Ut rerum quo officia.", + "description": "Aut esse ut. Consequatur et quasi. Ut ratione id.", + "business_objective": "card", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Officiis doloremque repellendus soluta.", - "ref_id": "xccdf_org.ssgproject.content_profile_619c86c8df41376dcfecb73b19c117ca", + "profile_title": "Ex aut iure tempora.", + "ref_id": "xccdf_org.ssgproject.content_profile_810aab6e34d4540c5e88081644438289", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1577,15 +1571,15 @@ "reported_system_count": 4 }, { - "id": "2c09b1a8-5008-4f83-9a4f-1c34a89d6177", - "title": "Sit cupiditate ea facere.", - "description": "Amet est et. Velit nihil commodi. Quae alias qui.", - "business_objective": "circuit", + "id": "3cfdfe1a-b641-48bf-b3d5-6f35250353b9", + "title": "Temporibus alias voluptas sit.", + "description": "Tenetur aut vero. Labore et deleniti. Quod ut doloremque.", + "business_objective": "monitor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Aut ipsam inventore laboriosam.", - "ref_id": "xccdf_org.ssgproject.content_profile_a8c2e1b6cd89ef6ce45b5f387401d7f4", + "profile_title": "Voluptas cum veritatis rerum.", + "ref_id": "xccdf_org.ssgproject.content_profile_87a095bb2cc07e1a89e37184539a9723", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1594,15 +1588,15 @@ "reported_system_count": 4 }, { - "id": "8b9affdd-0a11-47ca-8293-e80f77b080b4", - "title": "In dolorum eos sit.", - "description": "Inventore sunt iure. Quia sint corporis. Mollitia aut enim.", - "business_objective": "capacitor", + "id": "8816bb50-68ea-46ba-9d22-77f9d58d1f83", + "title": "Culpa minima porro voluptatem.", + "description": "Voluptatem in ipsam. Rerum quo enim. Perspiciatis provident neque.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Ea perferendis provident eaque.", - "ref_id": "xccdf_org.ssgproject.content_profile_387adfdb37bb6e216f69c01b3ecfe7d8", + "profile_title": "Similique molestiae dolores minus.", + "ref_id": "xccdf_org.ssgproject.content_profile_879c144d1a7391b8d441fb2e5e13ff04", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1611,15 +1605,15 @@ "reported_system_count": 4 }, { - "id": "a110898b-f70d-48e1-8dbb-4fcae44bade6", - "title": "Corrupti laudantium rerum minima.", - "description": "Perspiciatis explicabo quia. Sed et libero. Voluptatem voluptatibus harum.", + "id": "d9fb645a-890e-4a2c-b6c2-c6d839ce3207", + "title": "Ad qui quo facilis.", + "description": "Ad facilis et. Nemo doloremque ut. Dolore mollitia quo.", "business_objective": "circuit", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Occaecati fuga rerum corporis.", - "ref_id": "xccdf_org.ssgproject.content_profile_8a8adb913b3dfe6c3233413f75987bfe", + "profile_title": "Dicta dolor sunt ducimus.", + "ref_id": "xccdf_org.ssgproject.content_profile_da128535203e4599bc3b45e685035545", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1628,15 +1622,15 @@ "reported_system_count": 4 }, { - "id": "ee524e03-f34a-4fc9-9532-c656f8b117cb", - "title": "Quia nulla quia commodi.", - "description": "Dolor deserunt voluptates. Possimus deleniti nihil. Eum eveniet qui.", - "business_objective": "pixel", + "id": "ee26a58c-31de-48cc-996d-6a73558716c9", + "title": "Explicabo aut debitis eum.", + "description": "Ullam dolore ex. Voluptatem qui id. Nulla id corrupti.", + "business_objective": "bus", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Dolores hic ipsa vel.", - "ref_id": "xccdf_org.ssgproject.content_profile_98baae4d752c932988a24921756781e3", + "profile_title": "Accusantium eos ullam voluptas.", + "ref_id": "xccdf_org.ssgproject.content_profile_9cad2d57253bd6599146ddf29bd61422", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1662,15 +1656,15 @@ "value": { "data": [ { - "id": "05f6bdb2-c877-472c-b16e-3c1686bb3f81", - "title": "Expedita dolor qui rerum.", - "description": "Earum et omnis. Vel ullam numquam. Sed voluptatum qui.", - "business_objective": "matrix", + "id": "2e171263-d02a-4e7a-9562-f9734f5bdf92", + "title": "At accusamus ratione voluptas.", + "description": "Ut totam officia. Et quia eum. Neque dolore ipsa.", + "business_objective": "circuit", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Exercitationem in voluptatem porro.", - "ref_id": "xccdf_org.ssgproject.content_profile_d4cc109a5a5ae6f6686ce2fadcc90341", + "profile_title": "Magni voluptatem quibusdam consectetur.", + "ref_id": "xccdf_org.ssgproject.content_profile_f1ba73d6a1f2b89629375d8cf7d96cd6", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1679,15 +1673,15 @@ "reported_system_count": 4 }, { - "id": "475c2573-ce4c-4a2f-ac68-f19ab42d36da", - "title": "Perspiciatis veniam consequuntur architecto.", - "description": "Sed harum fugiat. Architecto qui tempore. Consequatur iusto non.", - "business_objective": "sensor", + "id": "5e78abd2-26fa-4dde-8076-0d58193a9835", + "title": "Soluta sed pariatur id.", + "description": "Reprehenderit nisi hic. Laudantium laboriosam quo. Rerum ullam veritatis.", + "business_objective": "panel", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Adipisci delectus sit soluta.", - "ref_id": "xccdf_org.ssgproject.content_profile_c5333a113ee2abf2ad74863875b5acf2", + "profile_title": "In perferendis nobis laudantium.", + "ref_id": "xccdf_org.ssgproject.content_profile_939d234d9319b919ff62bc6d692dd3b8", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1696,15 +1690,15 @@ "reported_system_count": 4 }, { - "id": "48d0219a-02a9-4d2c-bd98-cc9b34401960", - "title": "Ut ipsam voluptatibus occaecati.", - "description": "Debitis perferendis et. Ut deserunt assumenda. Dolorem molestiae sint.", - "business_objective": "bandwidth", + "id": "5ed43795-6e6a-4cad-90af-011a67e17174", + "title": "Illo quo aliquid ut.", + "description": "Ut qui aspernatur. Vel harum soluta. Porro consequatur error.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Voluptatem necessitatibus praesentium suscipit.", - "ref_id": "xccdf_org.ssgproject.content_profile_5563c7373d3c44677352d8d78a5a93a7", + "profile_title": "Rerum autem esse et.", + "ref_id": "xccdf_org.ssgproject.content_profile_cee7ce6dc2e608c8db0358ad13ad9716", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1713,15 +1707,15 @@ "reported_system_count": 4 }, { - "id": "ccfe499b-339c-47a0-86ce-c2693fe66df4", - "title": "Ratione est quia provident.", - "description": "Et voluptas occaecati. Et laborum voluptatem. At sed saepe.", - "business_objective": "monitor", + "id": "dce073f8-0298-473a-835e-d0c7fe1b848c", + "title": "Aut autem saepe aut.", + "description": "Deleniti vel dolore. Eos quas eaque. Vel dolor veritatis.", + "business_objective": "firewall", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Rerum reprehenderit totam officia.", - "ref_id": "xccdf_org.ssgproject.content_profile_287da91db0cf33575306fde1dc671b68", + "profile_title": "Voluptas nulla perspiciatis mollitia.", + "ref_id": "xccdf_org.ssgproject.content_profile_7ccbc1b5ccb307a5e27f509d9f921624", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1730,15 +1724,15 @@ "reported_system_count": 4 }, { - "id": "e42a2645-bf15-4c9e-829c-a2f467b83c74", - "title": "Voluptas laboriosam sequi magni.", - "description": "Ipsa est expedita. Autem maxime fugit. Itaque quia quia.", - "business_objective": "array", + "id": "dd805bf7-6c75-4386-a262-b7b55e18f9d1", + "title": "Molestiae autem exercitationem id.", + "description": "Iusto et molestiae. Necessitatibus dolorem impedit. Dolor optio quos.", + "business_objective": "alarm", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Doloremque qui itaque fugiat.", - "ref_id": "xccdf_org.ssgproject.content_profile_bac046f9c93cc98ac91f2592c410bf81", + "profile_title": "Ad expedita hic earum.", + "ref_id": "xccdf_org.ssgproject.content_profile_d1d6ac7e24cfc03826ba2f76c7edbebf", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1906,15 +1900,15 @@ "Returns a Report": { "value": { "data": { - "id": "edd6ab34-f199-45d7-9755-e4fec1a33a7a", - "title": "Veniam ipsa voluptate et.", - "description": "Dolores commodi molestiae. Dolorem aliquam voluptatibus. Quam adipisci pariatur.", - "business_objective": "interface", + "id": "8860006c-4c6d-42ce-90d2-803bdd7a8b7a", + "title": "Voluptas nemo placeat odio.", + "description": "Est quia accusantium. Libero quo illum. Quos quia aut.", + "business_objective": "array", "compliance_threshold": 90.0, "type": "report", "os_major_version": 9, - "profile_title": "A nostrum nihil voluptas.", - "ref_id": "xccdf_org.ssgproject.content_profile_894aa414dcddbfaaae5d0e69cc9947b0", + "profile_title": "Labore fugiat sit earum.", + "ref_id": "xccdf_org.ssgproject.content_profile_234cdfd06741b99ea77d7d640c988e4d", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -1951,7 +1945,7 @@ "Description of an error when requesting a non-existing Report": { "value": { "errors": [ - "V2::Report not found with ID c6aad529-6b93-468f-8067-2da0f370d304" + "V2::Report not found with ID b6cb1523-7df5-44e0-8a7a-e4317b257bf0" ] }, "summary": "", @@ -2000,15 +1994,15 @@ "Deletes Report's test results": { "value": { "data": { - "id": "b9589ea6-05ad-4935-93f5-39c833a333e8", - "title": "Odit ullam pariatur perferendis.", - "description": "Quasi dolores iure. Facere fuga et. Reprehenderit reiciendis nisi.", - "business_objective": "monitor", + "id": "267094ad-2a2f-4598-a8f6-5d6f2ee888f6", + "title": "Laborum suscipit quibusdam dolorem.", + "description": "In occaecati fugit. Ut laboriosam accusantium. Accusamus a omnis.", + "business_objective": "matrix", "compliance_threshold": 90.0, "type": "report", "os_major_version": 9, - "profile_title": "Commodi magni nisi voluptate.", - "ref_id": "xccdf_org.ssgproject.content_profile_622a961e8115d17f4484ee03aa2aca67", + "profile_title": "Est qui voluptatem asperiores.", + "ref_id": "xccdf_org.ssgproject.content_profile_7a9e137dd2eaf9ad8863ff17632b77df", "all_systems_exposed": true, "percent_compliant": 25, "assigned_system_count": 4, @@ -2092,7 +2086,7 @@ "Description of an error when requesting a non-existing Report": { "value": { "errors": [ - "V2::Report not found with ID a05dd2ff-6284-4de1-8f06-e5f116666eff" + "V2::Report not found with ID 0697a00f-76e7-4483-b84c-770bbc1cc1de" ] }, "summary": "", @@ -2153,14 +2147,11 @@ "items": { "enum": [ "title", - "os_major_version", "business_objective", "compliance_threshold", "percent_compliant", "title:asc", "title:desc", - "os_major_version:asc", - "os_major_version:desc", "business_objective:asc", "business_objective:desc", "compliance_threshold:asc", @@ -2175,7 +2166,7 @@ "name": "filter", "in": "query", "required": false, - "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Reports are searchable using attributes `title`, `os_major_version`, and `with_reported_systems`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", + "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Reports are searchable using attributes `title`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", "schema": { "type": "string" } @@ -2204,15 +2195,15 @@ "value": { "data": [ { - "id": "00124a3c-a0a8-420c-8bf4-cec881dd88aa", - "title": "Et sed voluptate hic.", - "description": "Sit aut quasi. Consectetur et qui. Est voluptate et.", + "id": "1e8d475d-382d-48ea-b33b-d6374a24dd8f", + "title": "Velit veritatis et rem.", + "description": "Ea molestiae consequuntur. Odit iure non. Nihil sit maiores.", "business_objective": "sensor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Dolorum magnam repudiandae odit.", - "ref_id": "xccdf_org.ssgproject.content_profile_30c46b86b378eb65ad26e858c12adb2d", + "profile_title": "Fugit recusandae eos tempora.", + "ref_id": "xccdf_org.ssgproject.content_profile_7439a96a8527e1259166c0e8ab2432a0", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2220,15 +2211,15 @@ "reported_system_count": 0 }, { - "id": "1b2bea47-3aba-4495-b406-406037035ca5", - "title": "Vel quis ut et.", - "description": "Est perferendis recusandae. Quia sed est. Quidem aperiam non.", - "business_objective": "circuit", + "id": "48320319-60e6-451c-a72f-d5638abda786", + "title": "Illo omnis explicabo veritatis.", + "description": "Ratione nihil ipsa. Qui soluta perspiciatis. Et sit quo.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Doloremque iure vel provident.", - "ref_id": "xccdf_org.ssgproject.content_profile_1c33277d87b8d7411c4f3ec3414b7326", + "profile_title": "Voluptatum deleniti possimus aliquid.", + "ref_id": "xccdf_org.ssgproject.content_profile_1fdbdc59ecbcb6a74cf00493dc563f6d", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2236,15 +2227,15 @@ "reported_system_count": 0 }, { - "id": "2fa36965-2370-4807-a587-6c514c57d821", - "title": "Ut voluptates totam sit.", - "description": "Perspiciatis minima aut. Similique omnis quo. Consectetur consequuntur sunt.", - "business_objective": "matrix", + "id": "4b1fa07e-aad2-4da6-b08b-de1ffa315158", + "title": "Asperiores est quo in.", + "description": "Velit voluptatem odio. Debitis laboriosam cum. Aut molestiae hic.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Voluptatem et nesciunt qui.", - "ref_id": "xccdf_org.ssgproject.content_profile_6c53283aa6ce89ec200cd0a454b55e45", + "profile_title": "Fugit quis et nobis.", + "ref_id": "xccdf_org.ssgproject.content_profile_83dfb32f2f8293f71561b88efbc3e495", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2252,15 +2243,15 @@ "reported_system_count": 0 }, { - "id": "79b894ff-5dfd-45cb-bf2a-b4c04ef2f48b", - "title": "Molestiae dolorum culpa facere.", - "description": "Aut ea labore. Laudantium labore qui. Veritatis eius qui.", - "business_objective": "card", + "id": "acaefde6-43e8-4334-b855-d496d146a1c0", + "title": "Blanditiis delectus sit qui.", + "description": "Quasi qui ut. Beatae qui fugiat. Tenetur vel iusto.", + "business_objective": "sensor", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Quo fugiat dolore provident.", - "ref_id": "xccdf_org.ssgproject.content_profile_151fd9a22adeb06392116e6fe5300d1c", + "profile_title": "Quo enim repudiandae voluptas.", + "ref_id": "xccdf_org.ssgproject.content_profile_a8e12da730a3535c3ec29c77307b9de9", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2268,15 +2259,15 @@ "reported_system_count": 0 }, { - "id": "b3dbe314-b772-4324-b172-ca77c181db6e", - "title": "A autem accusantium qui.", - "description": "Est qui natus. Vel quae error. Dolores quia molestiae.", - "business_objective": "firewall", + "id": "ec699ae9-afc5-48bd-b43d-305003c26ce9", + "title": "Eum eos mollitia qui.", + "description": "Harum voluptates assumenda. Sint eum tenetur. Praesentium quis necessitatibus.", + "business_objective": "matrix", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Facilis dolorem ut esse.", - "ref_id": "xccdf_org.ssgproject.content_profile_9b2698171694eaff9dfa6c3860a644ad", + "profile_title": "Voluptas enim perspiciatis veritatis.", + "ref_id": "xccdf_org.ssgproject.content_profile_6d8b3fd2c5f311317e28a2eb998ae3ec", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2290,8 +2281,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/systems/f477c873-e7d5-4ad2-91df-2250d895deda/reports?limit=10&offset=0", - "last": "/api/compliance/v2/systems/f477c873-e7d5-4ad2-91df-2250d895deda/reports?limit=10&offset=0" + "first": "/api/compliance/v2/systems/a08abe5a-9cd3-4358-936d-5c82385469d9/reports?limit=10&offset=0", + "last": "/api/compliance/v2/systems/a08abe5a-9cd3-4358-936d-5c82385469d9/reports?limit=10&offset=0" } }, "summary": "", @@ -2301,15 +2292,15 @@ "value": { "data": [ { - "id": "520bd658-e77f-4f8f-9a4d-becfd27e21b4", - "title": "Cum et quo a.", - "description": "Error qui doloribus. Fugit delectus nesciunt. Velit id error.", - "business_objective": "protocol", + "id": "086e2a92-1a35-4007-b382-1b576a34ec1b", + "title": "Et quaerat quia omnis.", + "description": "Est officiis labore. Culpa explicabo recusandae. Possimus saepe adipisci.", + "business_objective": "system", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Eaque non ut ut.", - "ref_id": "xccdf_org.ssgproject.content_profile_1894b2d88357ff609870864c7941cf23", + "profile_title": "Delectus perspiciatis et laudantium.", + "ref_id": "xccdf_org.ssgproject.content_profile_6a7c08451b93f7eaf87c06ffa5f1ee03", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2317,15 +2308,15 @@ "reported_system_count": 0 }, { - "id": "7bf4230b-bb4d-49ec-b74e-103ba874731d", - "title": "Dignissimos sit et vel.", - "description": "Ut alias natus. Qui quos autem. Repudiandae autem ipsam.", - "business_objective": "system", + "id": "c5cbdbfc-3f41-41d9-879e-db505db3609d", + "title": "Modi qui quia aut.", + "description": "Laborum ipsa libero. Non sint officiis. Et reprehenderit tempore.", + "business_objective": "circuit", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Eius voluptates debitis dicta.", - "ref_id": "xccdf_org.ssgproject.content_profile_2c55c791dd84368e84e7c43179aaed79", + "profile_title": "Laborum et nesciunt qui.", + "ref_id": "xccdf_org.ssgproject.content_profile_643d91af954e5d4fde6fd83c75c6ed8d", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2333,15 +2324,15 @@ "reported_system_count": 0 }, { - "id": "ae2e620c-5e8a-4590-8667-961f6b7e3b5e", - "title": "Minus rerum culpa est.", - "description": "Quas praesentium sit. Atque in ab. Magni fugiat adipisci.", - "business_objective": "bandwidth", + "id": "39fae803-0555-4393-a645-47178f1daaac", + "title": "Quia porro ut quisquam.", + "description": "Ea modi autem. Error unde culpa. Ut et cumque.", + "business_objective": "transmitter", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Repudiandae non voluptatem est.", - "ref_id": "xccdf_org.ssgproject.content_profile_4d86c2e70c76f1a49ce619c59bf04a99", + "profile_title": "Id corrupti dignissimos est.", + "ref_id": "xccdf_org.ssgproject.content_profile_962a856c73113f0ef4ea7e725e3a40e1", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2349,15 +2340,15 @@ "reported_system_count": 0 }, { - "id": "049cc4ae-905b-4c43-b72a-527040797572", - "title": "Natus laborum non voluptatem.", - "description": "Nihil rerum enim. Facilis quos est. Eligendi ut nostrum.", - "business_objective": "firewall", + "id": "b8521d7b-6c4d-470c-934c-1125b119627f", + "title": "Suscipit nihil pariatur non.", + "description": "Facilis porro sed. Consequatur magnam et. Amet quasi perspiciatis.", + "business_objective": "array", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "A recusandae laboriosam omnis.", - "ref_id": "xccdf_org.ssgproject.content_profile_c1bf333fb0986334b585bb6e93053973", + "profile_title": "Modi eum dolorem placeat.", + "ref_id": "xccdf_org.ssgproject.content_profile_7752a8af1ab3f179d51fab854cb39aad", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2365,15 +2356,15 @@ "reported_system_count": 0 }, { - "id": "2a0ae012-44cc-45ed-9d0d-144323bf4fee", - "title": "Repudiandae odit error distinctio.", - "description": "Impedit quos ut. Distinctio enim qui. Tenetur ipsa facere.", - "business_objective": "interface", + "id": "10f624be-109d-459d-8e23-fe3e0640e006", + "title": "Voluptatem ut voluptas commodi.", + "description": "Nemo cupiditate et. Qui odio alias. Quae quam in.", + "business_objective": "protocol", "compliance_threshold": 90.0, "type": "report", "os_major_version": 8, - "profile_title": "Accusamus tempora quidem aperiam.", - "ref_id": "xccdf_org.ssgproject.content_profile_f85d15170915a535881cf52284e39801", + "profile_title": "Aut incidunt sequi exercitationem.", + "ref_id": "xccdf_org.ssgproject.content_profile_7800c178d47b9dfd968062065b9f98d4", "all_systems_exposed": false, "percent_compliant": 0, "compliant_system_count": 0, @@ -2388,8 +2379,8 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/systems/d07b5775-5c44-4175-9529-49d2cab40af6/reports?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/systems/d07b5775-5c44-4175-9529-49d2cab40af6/reports?limit=10&offset=0&sort_by=title" + "first": "/api/compliance/v2/systems/a9994523-0dbd-4eb2-8950-c249c9a42df1/reports?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/systems/a9994523-0dbd-4eb2-8950-c249c9a42df1/reports?limit=10&offset=0&sort_by=title" } }, "summary": "", @@ -2537,92 +2528,92 @@ "value": { "data": [ { - "id": "07f04577-160b-42f3-a365-4d278a3645dc", - "ref_id": "xccdf_org.ssgproject.content_rule_group_1e836b3fff4e33369d2ba85b38e7784a", - "title": "Quia nihil enim ea.", - "rationale": "Est velit dolorem. Accusantium et omnis. Ea nihil sapiente.", - "description": "Aliquam nihil explicabo. Perferendis in ut. Eos possimus rerum.", + "id": "08af38c6-fe10-4842-8f17-61cb3e6771c8", + "ref_id": "xccdf_org.ssgproject.content_rule_group_97d27b4a76fa6f91550e7740cd1508ab", + "title": "Cumque similique qui nam.", + "rationale": "Eveniet assumenda est. Incidunt iste similique. Autem sit molestiae.", + "description": "Laboriosam qui veniam. Quas dolores dolorum. Facere dignissimos id.", "precedence": null, "type": "rule_group" }, { - "id": "0ba9335e-61a7-4064-9454-d08f15073c97", - "ref_id": "xccdf_org.ssgproject.content_rule_group_269570920393df5bb13ee07a69e64037", - "title": "Quibusdam sed eos illum.", - "rationale": "Enim nostrum beatae. Recusandae ipsum delectus. Enim et natus.", - "description": "Rerum sit deserunt. Et sapiente omnis. Quae molestiae ab.", + "id": "1938f6a2-96d7-42bf-8007-7d949082e328", + "ref_id": "xccdf_org.ssgproject.content_rule_group_127f650d549e7763919838702a368498", + "title": "Optio aperiam esse quis.", + "rationale": "Ullam ut omnis. Voluptatem incidunt distinctio. Provident accusantium necessitatibus.", + "description": "Fugiat nihil laudantium. Ducimus blanditiis sit. In rem recusandae.", "precedence": null, "type": "rule_group" }, { - "id": "11c27f3f-c322-4a21-a61d-b1f9068bd477", - "ref_id": "xccdf_org.ssgproject.content_rule_group_ebf04a3b29a4dff783db09766ba3078a", - "title": "Sed occaecati doloribus beatae.", - "rationale": "Corporis cum in. Quas qui totam. Aut consectetur facilis.", - "description": "Odio quo accusamus. Quo rem laboriosam. Error aut quibusdam.", + "id": "1de5f5e2-5a1b-438d-b557-e58ec483c979", + "ref_id": "xccdf_org.ssgproject.content_rule_group_7d6285bccfbe40692bc9b11ad75604e0", + "title": "Laudantium nisi mollitia est.", + "rationale": "Rerum earum id. Magnam tenetur esse. Excepturi id voluptatem.", + "description": "Enim laborum rem. Sequi autem distinctio. Repudiandae praesentium delectus.", "precedence": null, "type": "rule_group" }, { - "id": "1297151b-b153-402e-945b-4801b1f17778", - "ref_id": "xccdf_org.ssgproject.content_rule_group_d2c56aaacb4690c9fc9344cd335baa67", - "title": "Cumque voluptates ut quis.", - "rationale": "Et ut ut. Occaecati ea nostrum. Laboriosam quae numquam.", - "description": "Laudantium rem molestiae. Voluptate saepe expedita. Nobis doloremque eligendi.", + "id": "26e15aae-2100-483d-929d-76d0b3d4222b", + "ref_id": "xccdf_org.ssgproject.content_rule_group_039fdd0105d22a66a135a8a3fe734f48", + "title": "Voluptatibus voluptas atque qui.", + "rationale": "Illo vel perspiciatis. Sequi et sit. Non voluptas iure.", + "description": "Nesciunt temporibus vitae. Sit natus assumenda. Qui est aspernatur.", "precedence": null, "type": "rule_group" }, { - "id": "19820aaa-530b-4b4d-b416-82ab487287db", - "ref_id": "xccdf_org.ssgproject.content_rule_group_7030cfbb1684fec579732c019967b17a", - "title": "Dolorum cupiditate ad aut.", - "rationale": "Et porro possimus. Quia natus vel. Sint id occaecati.", - "description": "Temporibus placeat dolore. Sit voluptatem nihil. Illo cum corporis.", + "id": "2d3caa4a-a237-490d-9a35-2f4ba89a28f4", + "ref_id": "xccdf_org.ssgproject.content_rule_group_5ebda62406afc0185c68b3351df0acb6", + "title": "Officiis voluptas vel autem.", + "rationale": "Voluptatem nisi velit. Aut asperiores recusandae. Debitis aperiam sint.", + "description": "Non voluptatem vel. Voluptatem deleniti aut. Porro illum officiis.", "precedence": null, "type": "rule_group" }, { - "id": "19b7e4ba-9c7a-4d58-a4f7-4ad448154a10", - "ref_id": "xccdf_org.ssgproject.content_rule_group_c0bdfefcf9f5ddb86c88f0d83a3272ef", - "title": "Illum alias tenetur culpa.", - "rationale": "Ducimus quis ipsum. Reiciendis ducimus corrupti. Alias deserunt eum.", - "description": "Deleniti vel quasi. Sunt quo voluptates. Culpa sunt eos.", + "id": "2e097e0f-457d-4827-a87b-ea66a12aa1eb", + "ref_id": "xccdf_org.ssgproject.content_rule_group_1cacf68e4db7e96f475f5901457cef48", + "title": "Voluptatibus ea assumenda nam.", + "rationale": "Ut temporibus est. Cum qui error. Sint suscipit rerum.", + "description": "Alias sit labore. Vero qui ipsa. Quia inventore veniam.", "precedence": null, "type": "rule_group" }, { - "id": "1e7a4582-af67-4d28-ae49-2adbe5efb620", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e99fd54be9efb85f1f7ad06c020707ef", - "title": "Eaque consequatur reiciendis sed.", - "rationale": "Similique sunt blanditiis. Nihil tenetur culpa. In cumque eos.", - "description": "Quaerat mollitia hic. Blanditiis itaque omnis. Dicta reiciendis est.", + "id": "333140fd-473b-45dc-addb-a733df5f3473", + "ref_id": "xccdf_org.ssgproject.content_rule_group_76697be6b731bc6e22caeb50bc030356", + "title": "Repudiandae aspernatur totam et.", + "rationale": "Voluptatem eum nihil. Voluptas vel dolorem. Pariatur ea quasi.", + "description": "Repellendus dolor maiores. Blanditiis dolor quis. Fugiat autem iste.", "precedence": null, "type": "rule_group" }, { - "id": "1f4319a0-6c0d-4105-bf8e-5f17995c8351", - "ref_id": "xccdf_org.ssgproject.content_rule_group_3139b571862817a539bcdbcef670b803", - "title": "Quia nisi at ut.", - "rationale": "Itaque qui recusandae. Est non totam. Nihil quas molestiae.", - "description": "Qui quia ut. Perferendis commodi velit. Nihil est assumenda.", + "id": "3a8b2abe-480d-4043-bd61-c94877ca3b4b", + "ref_id": "xccdf_org.ssgproject.content_rule_group_2c97198e14d4200db8050515c340e8dd", + "title": "Tempora omnis cumque recusandae.", + "rationale": "Velit distinctio nostrum. In nulla inventore. Et error quidem.", + "description": "Mollitia velit sed. Possimus illo error. Quidem veritatis fuga.", "precedence": null, "type": "rule_group" }, { - "id": "20080667-8f6b-4765-a4cd-cad96d89f6fc", - "ref_id": "xccdf_org.ssgproject.content_rule_group_3919791eed265f78707c79595d55031b", - "title": "Veniam omnis ipsa est.", - "rationale": "Totam ad et. Sequi dolor quasi. Commodi architecto et.", - "description": "Corrupti ut reiciendis. Atque est eveniet. A sed velit.", + "id": "4f24ad07-3066-43ff-be49-ea54936c750f", + "ref_id": "xccdf_org.ssgproject.content_rule_group_fe01565d3986e96aaed4872bd7ecd088", + "title": "Quo ut ea ullam.", + "rationale": "Voluptatem consequatur id. Rerum omnis rem. Placeat quis assumenda.", + "description": "Qui similique in. Fuga sed consequatur. Neque eaque nostrum.", "precedence": null, "type": "rule_group" }, { - "id": "5a302a84-c0ad-4d38-ba49-886b30a18fbe", - "ref_id": "xccdf_org.ssgproject.content_rule_group_dc439d6583c5c4b0af6f0c7cf65f6cdb", - "title": "Nostrum est aliquam ipsum.", - "rationale": "Quo nihil nihil. Corporis voluptatem ut. Et odit amet.", - "description": "Mollitia incidunt at. Labore esse praesentium. Facilis nulla id.", + "id": "5a092151-5d0e-425d-8f34-2a397b95ac12", + "ref_id": "xccdf_org.ssgproject.content_rule_group_d5fca622cbb273254eb3cf16081ec76c", + "title": "Reprehenderit rerum autem doloremque.", + "rationale": "Ut suscipit soluta. Numquam et quia. Officiis odio debitis.", + "description": "Fugiat numquam inventore. Aliquid hic repudiandae. Eum sunt maxime.", "precedence": null, "type": "rule_group" } @@ -2633,9 +2624,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/59475531-85ae-4a9c-a7e2-f4253787964a/rule_groups?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/59475531-85ae-4a9c-a7e2-f4253787964a/rule_groups?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/59475531-85ae-4a9c-a7e2-f4253787964a/rule_groups?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/80a102a1-5a4a-4e82-897c-19d1336914d9/rule_groups?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/80a102a1-5a4a-4e82-897c-19d1336914d9/rule_groups?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/80a102a1-5a4a-4e82-897c-19d1336914d9/rule_groups?limit=10&offset=10" } }, "summary": "", @@ -2645,92 +2636,92 @@ "value": { "data": [ { - "id": "133c8c7b-cc4e-4e36-bcac-61a5402c9a41", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e1067bf2841e29d7d1ad0c26e1263901", - "title": "Rerum asperiores qui ut.", - "rationale": "Excepturi reprehenderit occaecati. Ut magni dolor. Qui animi omnis.", - "description": "Quo et quibusdam. Ut et sint. Quis magni et.", + "id": "0627281a-13af-4799-910b-3f5073dd40d0", + "ref_id": "xccdf_org.ssgproject.content_rule_group_8fc1c1dd5d13530b3834485a0228ff86", + "title": "Id asperiores et et.", + "rationale": "Consectetur inventore explicabo. Ullam sed quas. Cumque in et.", + "description": "Numquam nostrum voluptates. Qui reprehenderit eum. Quos atque enim.", "precedence": null, "type": "rule_group" }, { - "id": "1f257a8b-6cb2-4a4a-b69c-dc510432375b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_cddfc13ef1dffe3e1a87bffe8a19b486", - "title": "Vel incidunt aut eum.", - "rationale": "Deleniti et dolorem. Architecto rerum magni. Soluta sed nihil.", - "description": "Molestias aspernatur voluptatem. Repudiandae et eos. Non voluptatem autem.", + "id": "069cef09-9b73-41bf-8fc9-15c63064e20d", + "ref_id": "xccdf_org.ssgproject.content_rule_group_44d3152e29bdb3fbb49fbfeaac4a5e5c", + "title": "Sit eum ab et.", + "rationale": "Vero ab ut. Omnis beatae repellat. Iusto rerum corrupti.", + "description": "Est voluptatem unde. Quis a quo. Neque repellat possimus.", "precedence": null, "type": "rule_group" }, { - "id": "21c30249-2868-4bc5-9fb7-09031b48b3ab", - "ref_id": "xccdf_org.ssgproject.content_rule_group_d6198212552663ebb2b6a44ea7fcdcfe", - "title": "Dolorem explicabo non minus.", - "rationale": "Porro quidem et. Ea aut voluptatem. Deleniti exercitationem repudiandae.", - "description": "Autem sapiente illum. Sit tenetur qui. Porro asperiores id.", + "id": "0cbceea2-6ae1-49f9-8f50-85fdc615c700", + "ref_id": "xccdf_org.ssgproject.content_rule_group_8bafe0b9939f164d7dd9c5a8ad66b026", + "title": "Ut impedit libero ut.", + "rationale": "Et ut consequatur. Saepe vel cupiditate. Incidunt et fugit.", + "description": "Quidem nam aut. Atque voluptatum dolore. Sint eligendi animi.", "precedence": null, "type": "rule_group" }, { - "id": "46a89023-d559-434c-b0c9-481fea1950d1", - "ref_id": "xccdf_org.ssgproject.content_rule_group_c552a0d4588002e0ecc12d8417a28db2", - "title": "Qui repudiandae dolores voluptas.", - "rationale": "Dolorum facilis et. Consequatur animi sapiente. Necessitatibus ad quibusdam.", - "description": "Minima at dolorum. Qui quaerat et. Voluptatem similique nam.", + "id": "188c7d37-521a-4170-86f5-5c2cf67df1d8", + "ref_id": "xccdf_org.ssgproject.content_rule_group_2bd598d1383fc4c3eaece53c6a920ca1", + "title": "Nam ex rem amet.", + "rationale": "In natus sunt. Velit qui ut. Earum ea commodi.", + "description": "Voluptatem reprehenderit voluptas. Explicabo ut dicta. Blanditiis excepturi ea.", "precedence": null, "type": "rule_group" }, { - "id": "55fcb00e-f9d7-48a8-a3c9-4b9f75e75fbe", - "ref_id": "xccdf_org.ssgproject.content_rule_group_7d5e76f0a5a7f209f6e4be3d864cd310", - "title": "Illum eum architecto et.", - "rationale": "Sint iste rerum. Sint iste voluptatem. Et molestias et.", - "description": "Vel libero ipsam. Similique aliquid recusandae. Qui doloribus labore.", + "id": "2423a24e-eeb8-440c-a714-c4734729e27a", + "ref_id": "xccdf_org.ssgproject.content_rule_group_78bba6b65e382dc842b518303f41712f", + "title": "Dolorem aut sunt ducimus.", + "rationale": "Dicta ut reprehenderit. Aperiam atque ut. Rerum repellat architecto.", + "description": "Qui voluptatem consequatur. Et tenetur ut. Optio quidem reiciendis.", "precedence": null, "type": "rule_group" }, { - "id": "674dd04b-ab0b-413a-a700-08949110da08", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e4932c6da11b61a86d34b3078bc317f7", - "title": "Impedit natus nihil repellat.", - "rationale": "Rerum corporis necessitatibus. Et alias fugiat. Consectetur temporibus ipsam.", - "description": "Aut ipsum culpa. Quam qui non. Aut in magnam.", + "id": "45a9fabf-ad6f-4b1b-900a-97dc9f0a8909", + "ref_id": "xccdf_org.ssgproject.content_rule_group_8cf94397f4af88b8a3f138d86b4a27de", + "title": "Voluptatibus delectus fugiat aliquam.", + "rationale": "Veniam voluptatem aut. Illum ullam numquam. Qui odit ex.", + "description": "A odit omnis. Et explicabo rerum. Exercitationem commodi nemo.", "precedence": null, "type": "rule_group" }, { - "id": "6f9db316-42cc-4372-ad44-a6a4babd6649", - "ref_id": "xccdf_org.ssgproject.content_rule_group_41a3c7e74674f5308a649ca002a21c4c", - "title": "Ad libero et iure.", - "rationale": "Quisquam dolores recusandae. Soluta labore hic. Laudantium officia totam.", - "description": "Architecto et est. Sed error optio. Quaerat exercitationem minima.", + "id": "47c71bc1-bd2f-4c43-aaf0-177b3e7b91fa", + "ref_id": "xccdf_org.ssgproject.content_rule_group_ae0cfbf9d3a9466081128177d0e0368e", + "title": "Sed magnam explicabo perspiciatis.", + "rationale": "Suscipit quasi perspiciatis. Aperiam tempore eveniet. Expedita quia nihil.", + "description": "Consequuntur perferendis itaque. Velit ea dolore. Labore aliquam non.", "precedence": null, "type": "rule_group" }, { - "id": "8b5a32a4-569e-4319-a531-b65e9db66013", - "ref_id": "xccdf_org.ssgproject.content_rule_group_079f99ae2841818830b42f1f2ead94e3", - "title": "Et occaecati facilis eum.", - "rationale": "Enim labore est. Enim minima laborum. Animi dolor eligendi.", - "description": "Officiis officia aut. Hic alias nam. In cumque voluptatibus.", + "id": "49fa597a-6fba-480e-b84a-7ac3267a9b55", + "ref_id": "xccdf_org.ssgproject.content_rule_group_cefc1ebcc3eb63300dd9e4af95d7230e", + "title": "Sequi neque deserunt quo.", + "rationale": "Veritatis sit ullam. Ipsa vel fuga. In unde dolores.", + "description": "Quod voluptas quam. Aperiam nihil et. Consequatur dolore similique.", "precedence": null, "type": "rule_group" }, { - "id": "8dc71596-92ba-4739-adce-21cb75e6cd5b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e1831c5bd849eaca535df9ff5bf98884", - "title": "Esse nisi numquam iusto.", - "rationale": "Corrupti consectetur nemo. Et voluptatum autem. Qui rerum officia.", - "description": "Eos optio excepturi. Praesentium iure omnis. Aut voluptatum tempora.", + "id": "4a560cbc-6b78-4721-874b-564761236058", + "ref_id": "xccdf_org.ssgproject.content_rule_group_99e4e7cd160f574df91fb98aa37990ce", + "title": "Itaque aut ut qui.", + "rationale": "Tenetur saepe nihil. Consequatur incidunt et. Quod rerum consequatur.", + "description": "Impedit sunt sint. Magnam optio vero. Ut dolor aut.", "precedence": null, "type": "rule_group" }, { - "id": "91e3b555-b445-425e-9ff7-52fa969afd2f", - "ref_id": "xccdf_org.ssgproject.content_rule_group_8b646752f3ba5ebc0082f25d0cf14f5a", - "title": "Aliquam consectetur quia corporis.", - "rationale": "Rerum expedita necessitatibus. Ipsa fuga at. Harum rem voluptate.", - "description": "In maxime itaque. Ut qui libero. Nihil et eaque.", + "id": "6905a822-00ea-4d50-bdff-7c06fb6a0cd5", + "ref_id": "xccdf_org.ssgproject.content_rule_group_9444bc60740a3617099c8822cc49ef74", + "title": "Inventore perferendis dolorem ut.", + "rationale": "Est alias corrupti. Omnis praesentium quas. Vel consequatur voluptatum.", + "description": "Et est voluptas. Similique veritatis corrupti. Id rem earum.", "precedence": null, "type": "rule_group" } @@ -2742,9 +2733,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/0f4b9095-906d-4e3b-80b8-24f7cb979b16/rule_groups?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/0f4b9095-906d-4e3b-80b8-24f7cb979b16/rule_groups?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/0f4b9095-906d-4e3b-80b8-24f7cb979b16/rule_groups?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/4b1a5ee7-d111-4ecf-8895-d936803d41a5/rule_groups?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/4b1a5ee7-d111-4ecf-8895-d936803d41a5/rule_groups?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/4b1a5ee7-d111-4ecf-8895-d936803d41a5/rule_groups?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -2851,11 +2842,11 @@ "Returns a Rule Group": { "value": { "data": { - "id": "bff54ebc-ec46-455b-bcdb-fb6d844ace1b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_8ecc739f94225d0f1d292d9aa792d6d9", - "title": "Aliquam ab facere corrupti.", - "rationale": "Minima quod dolore. Optio ut sunt. Et tempora occaecati.", - "description": "Quisquam sed consequatur. Cum consequuntur architecto. Esse eum corporis.", + "id": "ee39f56b-b178-491b-a48f-9f7f5e89e483", + "ref_id": "xccdf_org.ssgproject.content_rule_group_29475e768527922bcad2494656a4e8b3", + "title": "Et nostrum ducimus qui.", + "rationale": "Dignissimos placeat impedit. Voluptatem quis eum. Totam non sit.", + "description": "Ab minima laboriosam. Et laboriosam quia. Laudantium dolorum nulla.", "precedence": null, "type": "rule_group" } @@ -2888,7 +2879,7 @@ "Description of an error when requesting a non-existing Rule Group": { "value": { "errors": [ - "V2::RuleGroup not found with ID 0375b8c0-5730-4997-a9bc-f11a2aee816a" + "V2::RuleGroup not found with ID 83d07eb9-1f4c-4be0-b1b7-2919bb20c0b2" ] }, "summary": "", @@ -3013,8 +3004,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/770c832a-2b20-4f95-b9d4-dac895aa86e6/test_results/d34bab5b-3b7c-44cb-962b-1d62783a143a/rule_results?limit=10&offset=0", - "last": "/api/compliance/v2/reports/770c832a-2b20-4f95-b9d4-dac895aa86e6/test_results/d34bab5b-3b7c-44cb-962b-1d62783a143a/rule_results?limit=10&offset=0" + "first": "/api/compliance/v2/reports/601fe5aa-80fd-47a5-952d-f605bfbf51e9/test_results/ff31ec32-bdba-4e33-a894-cdd0320eb141/rule_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/601fe5aa-80fd-47a5-952d-f605bfbf51e9/test_results/ff31ec32-bdba-4e33-a894-cdd0320eb141/rule_results?limit=10&offset=0" } }, "summary": "", @@ -3030,8 +3021,8 @@ "sort_by": "result" }, "links": { - "first": "/api/compliance/v2/reports/a8644e3f-f443-4daa-82d4-63351604e4ea/test_results/8881501d-e70c-4974-b6f4-d10de6a3bd68/rule_results?limit=10&offset=0&sort_by=result", - "last": "/api/compliance/v2/reports/a8644e3f-f443-4daa-82d4-63351604e4ea/test_results/8881501d-e70c-4974-b6f4-d10de6a3bd68/rule_results?limit=10&offset=0&sort_by=result" + "first": "/api/compliance/v2/reports/d74c4288-30b9-4830-9172-7a0aed548daa/test_results/df2dbb30-9c27-4f8f-b2c3-5c8b52c6f23b/rule_results?limit=10&offset=0&sort_by=result", + "last": "/api/compliance/v2/reports/d74c4288-30b9-4830-9172-7a0aed548daa/test_results/df2dbb30-9c27-4f8f-b2c3-5c8b52c6f23b/rule_results?limit=10&offset=0&sort_by=result" } }, "summary": "", @@ -3047,8 +3038,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/66998eff-3ba8-44f5-8fae-76ac1c4f8ba2/test_results/d6e7cc9d-0022-4bc8-ac03-f3900aa5c7f4/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/66998eff-3ba8-44f5-8fae-76ac1c4f8ba2/test_results/d6e7cc9d-0022-4bc8-ac03-f3900aa5c7f4/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0" + "first": "/api/compliance/v2/reports/2f7451c8-d04c-4b78-a124-1543dca5d450/test_results/5e093efa-8a37-408e-a888-f014fe669f95/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/2f7451c8-d04c-4b78-a124-1543dca5d450/test_results/5e093efa-8a37-408e-a888-f014fe669f95/rule_results?filter=%28title%3Dfoo%29&limit=10&offset=0" } }, "summary": "", @@ -3205,37 +3196,37 @@ "value": { "data": [ { - "id": "001d533c-f529-40d2-a344-ee10fbd5b4a4", - "ref_id": "xccdf_org.ssgproject.content_rule_afff30e0c2029b4d419f1d6a26ce0c21", - "title": "Aspernatur praesentium quisquam excepturi.", - "rationale": "Provident voluptatum magni. Dolores enim vel. Esse numquam voluptatum.", - "description": "Ipsum dignissimos aspernatur. Est aut reprehenderit. Est quod illo.", - "severity": "medium", - "precedence": 5077, + "id": "02a589e9-eaf3-4199-8533-4b9eb389cbf0", + "ref_id": "xccdf_org.ssgproject.content_rule_63e64c565ee59cbb61ab1378ec7c82a3", + "title": "Deserunt quisquam dolorem omnis.", + "rationale": "Necessitatibus voluptatum fugit. Quia et repudiandae. Fugiat occaecati optio.", + "description": "Non eligendi ea. Harum quis dolorem. Maiores sunt est.", + "severity": "high", + "precedence": 8349, "identifier": { - "href": "http://bosco.example/denisse.will", - "label": "Cottar" + "href": "http://collins.example/carmen", + "label": "Ciryatur" }, "references": [ { - "href": "http://rau-mosciski.example/fredricka.haley", - "label": "Zimrahin" + "href": "http://langosh.example/dominique_erdman", + "label": "Bregil" }, { - "href": "http://hegmann.example/jocelyn", - "label": "Radagast" + "href": "http://dickens.test/tangela_labadie", + "label": "Gamling" }, { - "href": "http://strosin.test/david", - "label": "Malvegil" + "href": "http://flatley.example/regine", + "label": "Nolondil" }, { - "href": "http://grimes.example/betty", - "label": "Folca" + "href": "http://hoeger.example/lolita_abbott", + "label": "Porto Baggins" }, { - "href": "http://halvorson.example/barton", - "label": "Uffo Boffin" + "href": "http://emard.example/jae.brekke", + "label": "Aghan" } ], "value_checks": null, @@ -3243,37 +3234,37 @@ "type": "rule" }, { - "id": "0545b9cb-f064-43e4-a3a9-86059e37ecdf", - "ref_id": "xccdf_org.ssgproject.content_rule_515404a3b5b60b259b92e86863624434", - "title": "Modi aspernatur exercitationem excepturi.", - "rationale": "Voluptatem et impedit. Natus nihil minima. Perspiciatis distinctio rerum.", - "description": "Natus sint reiciendis. Inventore deserunt animi. Ipsa rerum praesentium.", - "severity": "low", - "precedence": 2760, + "id": "122ff196-b92b-4cfe-918a-9f13ade417a9", + "ref_id": "xccdf_org.ssgproject.content_rule_83cd80274b81ded2516d93fceea9b287", + "title": "Optio illo mollitia dignissimos.", + "rationale": "Molestiae mollitia vitae. Illo voluptatem aut. Sit pariatur aliquam.", + "description": "Maxime eligendi sunt. Fugit nihil quisquam. Ab facere accusamus.", + "severity": "medium", + "precedence": 9209, "identifier": { - "href": "http://price.test/jacques_klocko", - "label": "Elemmírë" + "href": "http://hilll.test/adelina", + "label": "Beleth" }, "references": [ { - "href": "http://oconner-fahey.test/shala", - "label": "Goldberry" + "href": "http://gislason-medhurst.test/maggie_monahan", + "label": "Elemmakil" }, { - "href": "http://paucek.example/eunice", - "label": "Hildifons Took" + "href": "http://olson-rippin.test/jina", + "label": "Arthad" }, { - "href": "http://mcclure.test/jarod_goldner", - "label": "Ingwë" + "href": "http://schimmel.test/leonel_huels", + "label": "Léod" }, { - "href": "http://tromp-wiza.example/classie", - "label": "Vardamir" + "href": "http://harris-rau.example/adrian_hettinger", + "label": "Tar-Anárion" }, { - "href": "http://kilback-bashirian.example/ileana", - "label": "Hilda Bracegirdle" + "href": "http://balistreri-friesen.test/delora", + "label": "Dáin Ironfoot" } ], "value_checks": null, @@ -3281,37 +3272,37 @@ "type": "rule" }, { - "id": "19b66f24-2f96-4490-b560-ddb1c851512f", - "ref_id": "xccdf_org.ssgproject.content_rule_196c7c801a61972c2983cfe93affff44", - "title": "Aut et dolorem eum.", - "rationale": "Adipisci nihil voluptatem. Commodi deserunt voluptas. Doloremque vel iusto.", - "description": "Eum blanditiis quos. Ea qui ad. Non magnam doloremque.", - "severity": "medium", - "precedence": 3216, + "id": "1b93428b-ede5-46e6-bcad-6477c7fad38f", + "ref_id": "xccdf_org.ssgproject.content_rule_33f75a70d57591a3b72f3b7dd1580edf", + "title": "Ut repellendus et laudantium.", + "rationale": "Nihil vero odit. Perferendis aliquam et. Aliquid iusto sint.", + "description": "Explicabo vel aut. Mollitia ut deleniti. Architecto illo distinctio.", + "severity": "high", + "precedence": 3720, "identifier": { - "href": "http://cartwright.test/tatiana_krajcik", - "label": "Beleg" + "href": "http://lebsack.test/terra.gleason", + "label": "Gorhendad Oldbuck" }, "references": [ { - "href": "http://kozey.example/delmy", - "label": "Eldalótë" + "href": "http://steuber.example/jorge_bradtke", + "label": "Maglor" }, { - "href": "http://abshire.test/clarence_koss", - "label": "Nob" + "href": "http://borer.test/julius_fadel", + "label": "Gorbadoc Brandybuck" }, { - "href": "http://botsford.example/alfredo", - "label": "Iago Grubb" + "href": "http://hoeger.test/zack", + "label": "Golasgil" }, { - "href": "http://keebler-ziemann.test/joseph", - "label": "Diamond of Long Cleeve" + "href": "http://bernhard.example/joe.koss", + "label": "Arminas" }, { - "href": "http://champlin.example/drucilla", - "label": "Halfast Gamgee" + "href": "http://oconnell-stracke.example/giuseppe_huels", + "label": "Pervinca Took" } ], "value_checks": null, @@ -3319,37 +3310,37 @@ "type": "rule" }, { - "id": "20675bc1-a985-46e4-90eb-89d81ffd579f", - "ref_id": "xccdf_org.ssgproject.content_rule_8e13debcd69a38aa9f0943548af997d0", - "title": "Sint maiores nobis necessitatibus.", - "rationale": "Soluta repudiandae quia. Hic earum saepe. Illo architecto et.", - "description": "Rerum numquam quam. Sint qui quaerat. Iure voluptatem magni.", + "id": "2572d4c2-bc22-4b6f-952a-a31cbef312b2", + "ref_id": "xccdf_org.ssgproject.content_rule_d93b6881fde2b02e60bb67d06cc56673", + "title": "Unde occaecati aliquam asperiores.", + "rationale": "Dignissimos voluptatem est. Sequi dolorum blanditiis. Est nesciunt nam.", + "description": "Deleniti ex rerum. Error est perspiciatis. At repudiandae est.", "severity": "low", - "precedence": 4901, + "precedence": 9524, "identifier": { - "href": "http://beer.test/alex.ryan", - "label": "Draugluin" + "href": "http://powlowski.example/mechelle_funk", + "label": "Borlas" }, "references": [ { - "href": "http://willms-purdy.test/gregory_welch", - "label": "Manthor" + "href": "http://wilkinson.example/toney", + "label": "Belen" }, { - "href": "http://bernhard-ortiz.test/clemente", - "label": "Ferdinand Took" + "href": "http://farrell.example/ira", + "label": "Elboron" }, { - "href": "http://lakin.test/irene_olson", - "label": "Bandobras Took" + "href": "http://prohaska.example/elizabet", + "label": "Denethor" }, { - "href": "http://kuhlman.example/geraldo", - "label": "Ingwë" + "href": "http://wilderman.example/lowell", + "label": "Bodo Proudfoot" }, { - "href": "http://wuckert.test/mendy.donnelly", - "label": "Írildë" + "href": "http://schumm.test/lilly.schowalter", + "label": "Ori" } ], "value_checks": null, @@ -3357,37 +3348,37 @@ "type": "rule" }, { - "id": "232dc5ba-8819-4007-a67c-935c71dd3977", - "ref_id": "xccdf_org.ssgproject.content_rule_85054be6aedd5347fc415ae2969584b4", - "title": "Illo voluptatem est quam.", - "rationale": "Asperiores aliquam quo. Odio nostrum praesentium. Dolor odio aliquid.", - "description": "Quo velit officiis. Sit hic et. Asperiores sapiente ut.", - "severity": "medium", - "precedence": 9991, + "id": "2622ad08-5c9d-4e2f-9a1f-bc6a57906a30", + "ref_id": "xccdf_org.ssgproject.content_rule_3b53fd0ee270e81f2bff40cab5feea47", + "title": "Commodi rerum enim sed.", + "rationale": "Ullam nobis expedita. Et repellendus quas. Ipsam quisquam reiciendis.", + "description": "Minus iste voluptas. Aut eum officiis. Eveniet velit laboriosam.", + "severity": "high", + "precedence": 2083, "identifier": { - "href": "http://marvin-moen.test/shanel_feil", - "label": "Amarië" + "href": "http://sporer-bogan.example/hanna", + "label": "Guthláf" }, "references": [ { - "href": "http://kub.test/jackson", - "label": "Elenwë" + "href": "http://brown.example/dwain", + "label": "Ivy Goodenough" }, { - "href": "http://bernier-west.example/vincenzo_breitenberg", - "label": "Mosco Burrows" + "href": "http://littel.example/elbert.reynolds", + "label": "Finrod" }, { - "href": "http://lynch.example/derek", - "label": "Herubrand" + "href": "http://hoppe-yost.test/emanuel", + "label": "Asgon" }, { - "href": "http://hoppe.example/jc.jenkins", - "label": "Bifur" + "href": "http://collins-windler.example/marvis", + "label": "Erestor" }, { - "href": "http://williamson.test/brett", - "label": "Helm" + "href": "http://erdman.test/helaine_steuber", + "label": "Calimmacil" } ], "value_checks": null, @@ -3395,37 +3386,37 @@ "type": "rule" }, { - "id": "29751926-ab65-43b5-94f6-0a48b5e267a6", - "ref_id": "xccdf_org.ssgproject.content_rule_8f177657a1e96516ea78ac1b105a5fb3", - "title": "Ut autem quis aliquid.", - "rationale": "Cupiditate ut eius. Et accusamus voluptatem. Voluptatem ut quos.", - "description": "Aut qui voluptas. Quasi a repellat. Illum ullam officia.", + "id": "2678e9b0-228d-4f44-9e8a-e1a0d34de677", + "ref_id": "xccdf_org.ssgproject.content_rule_2b1ceb8bc816a23a975f193fbad62081", + "title": "Molestiae consequuntur perferendis vel.", + "rationale": "Neque molestias dicta. Earum vel amet. Aliquam molestiae optio.", + "description": "Quasi dignissimos in. Dolor sequi tempora. Laudantium sint non.", "severity": "low", - "precedence": 1466, + "precedence": 7155, "identifier": { - "href": "http://kirlin-stanton.example/robert.wiegand", - "label": "Nori" + "href": "http://herzog-greenfelder.example/vance_haag", + "label": "Hunleth" }, "references": [ { - "href": "http://kiehn-erdman.test/fletcher_beatty", - "label": "Araphant" + "href": "http://ratke.test/demetrius_sanford", + "label": "Rowan" }, { - "href": "http://sawayn.test/lyndon", - "label": "Witch-king" + "href": "http://purdy.example/shantell_medhurst", + "label": "Dairuin" }, { - "href": "http://lehner.test/deon_huel", - "label": "Merry Gardner" + "href": "http://mayert.example/mohamed.glover", + "label": "Amarië" }, { - "href": "http://oconner.example/hiram.collins", - "label": "Bifur" + "href": "http://christiansen-bosco.example/louella", + "label": "Finduilas" }, { - "href": "http://douglas-rohan.test/virgina.christiansen", - "label": "Arminas" + "href": "http://lesch.test/cole_bode", + "label": "Daisy Gardner" } ], "value_checks": null, @@ -3433,37 +3424,37 @@ "type": "rule" }, { - "id": "50a022f2-4e12-45b9-9e32-4f50c48fa366", - "ref_id": "xccdf_org.ssgproject.content_rule_6bdff856e0b0c82de24c47d845e09c32", - "title": "Id quidem voluptate aut.", - "rationale": "Eos alias nihil. A nihil quia. Amet omnis est.", - "description": "Qui est natus. Ullam non doloribus. Sint dicta facilis.", + "id": "278e6143-a0e8-4f88-9597-e49f3f2f8618", + "ref_id": "xccdf_org.ssgproject.content_rule_51eb1eca09d653d53c54a19fabdf8293", + "title": "Dignissimos sunt facere dolores.", + "rationale": "Distinctio incidunt ex. Sapiente delectus expedita. Vel et rem.", + "description": "Illo unde quam. Ad sapiente nostrum. Voluptate exercitationem ut.", "severity": "medium", - "precedence": 5390, + "precedence": 6315, "identifier": { - "href": "http://white.test/alex_waelchi", - "label": "Aglahad" + "href": "http://rogahn.test/damian_oconnell", + "label": "Frodo Baggins" }, "references": [ { - "href": "http://dietrich-gislason.example/eugene.jaskolski", - "label": "Hending" + "href": "http://stiedemann-schoen.example/kim", + "label": "Forhend" }, { - "href": "http://ohara.example/belen_ward", - "label": "Ungoliant" + "href": "http://kris-parisian.example/hunter", + "label": "Malvegil" }, { - "href": "http://block-abernathy.example/jolanda.kertzmann", - "label": "Pengolodh" + "href": "http://stiedemann.example/sandy", + "label": "Iminyë" }, { - "href": "http://sauer-jacobi.example/horace_ledner", - "label": "Targon" + "href": "http://dach.test/augustine.anderson", + "label": "Bifur" }, { - "href": "http://littel-walker.test/doug", - "label": "Rufus Burrows" + "href": "http://koepp.example/margorie_mclaughlin", + "label": "Freca" } ], "value_checks": null, @@ -3471,37 +3462,37 @@ "type": "rule" }, { - "id": "54399fb7-7e2a-4f9f-93fd-e36d3dade9e6", - "ref_id": "xccdf_org.ssgproject.content_rule_41952ee10a4b6bab61a8dfe04dbaca07", - "title": "Quia possimus et eos.", - "rationale": "Facilis ad delectus. Labore quae sed. Consequatur adipisci magni.", - "description": "Maiores sit corrupti. Dolore voluptatem minus. Consequuntur deleniti eligendi.", - "severity": "low", - "precedence": 8955, + "id": "28f00a38-4e01-49ef-b1e2-5611b8f5c88d", + "ref_id": "xccdf_org.ssgproject.content_rule_3c5b9e634d0d764682bc45610c69dd48", + "title": "Voluptas cumque voluptas voluptatem.", + "rationale": "Impedit amet sint. Et mollitia culpa. Ut inventore quod.", + "description": "Dolor autem ipsum. Eum tenetur voluptatem. Voluptatem sit aut.", + "severity": "medium", + "precedence": 8445, "identifier": { - "href": "http://schuppe.example/stefan", - "label": "Donnamira Took" + "href": "http://bernier-macgyver.test/luigi", + "label": "Aredhel" }, "references": [ { - "href": "http://gerlach.example/kirby.schulist", - "label": "Salvia Brandybuck" + "href": "http://anderson.test/mathew.vandervort", + "label": "Halmir" }, { - "href": "http://wehner.example/beverly", - "label": "Borthand" + "href": "http://marvin.example/jannette_bashirian", + "label": "Belladonna Took" }, { - "href": "http://schultz.test/carli_turner", - "label": "Halfred of Overhill" + "href": "http://johnston.example/casandra.thiel", + "label": "Leaflock" }, { - "href": "http://towne.example/joan", - "label": "Annael" + "href": "http://dach.test/courtney.bechtelar", + "label": "Gimli" }, { - "href": "http://rodriguez-swaniawski.example/roderick", - "label": "Haldad" + "href": "http://balistreri-tillman.example/amee_hilpert", + "label": "Herion" } ], "value_checks": null, @@ -3509,37 +3500,37 @@ "type": "rule" }, { - "id": "686c7e24-2778-4929-98e4-2a02672852ba", - "ref_id": "xccdf_org.ssgproject.content_rule_ed09cdba79821f88232d0cc70e21fb14", - "title": "Delectus alias dolorem consequatur.", - "rationale": "Nihil asperiores voluptates. Qui quidem est. Voluptatem laborum sed.", - "description": "Quod sit voluptas. Molestiae doloribus nesciunt. Exercitationem nobis illum.", - "severity": "high", - "precedence": 9444, + "id": "2adc1751-71d3-4d7a-83d9-97f7c5a843bf", + "ref_id": "xccdf_org.ssgproject.content_rule_791b3bb90b28f395f557a817d9da1f0b", + "title": "Quia repudiandae doloremque est.", + "rationale": "Est laboriosam porro. Provident similique repudiandae. Placeat laudantium voluptatum.", + "description": "Commodi hic deserunt. Dolor magni expedita. Hic fugiat quo.", + "severity": "low", + "precedence": 5244, "identifier": { - "href": "http://wisoky-reilly.test/matt", - "label": "Marmadoc Brandybuck" + "href": "http://champlin-emard.test/royal_hintz", + "label": "Ibun" }, "references": [ { - "href": "http://flatley.example/lyndon_koelpin", - "label": "Gruffo Boffin" + "href": "http://beatty.example/emelina", + "label": "Belegorn" }, { - "href": "http://gutkowski-parisian.test/clarita", - "label": "Gálmód" + "href": "http://haley.example/kenyetta.hand", + "label": "Finwë" }, { - "href": "http://mohr.example/fransisca.ernser", - "label": "Lily Baggins" + "href": "http://farrell-schimmel.example/sandy", + "label": "Marhwini" }, { - "href": "http://wolf.test/daria", - "label": "Finwë" + "href": "http://will-hoppe.test/maya.green", + "label": "Nimloth of Doriath" }, { - "href": "http://towne.test/james.parisian", - "label": "Marhwini" + "href": "http://pollich.example/jewell_hartmann", + "label": "Leaflock" } ], "value_checks": null, @@ -3547,37 +3538,37 @@ "type": "rule" }, { - "id": "717bdd05-f6f7-48ae-acb0-ac20c0fcb2ba", - "ref_id": "xccdf_org.ssgproject.content_rule_7b247f4107e75cb92950db84a72646bf", - "title": "Cumque numquam vel fugiat.", - "rationale": "Aliquid porro doloribus. Sed nemo qui. Ea quas est.", - "description": "Sed assumenda tenetur. Hic explicabo incidunt. Consequatur ab eaque.", - "severity": "low", - "precedence": 8960, + "id": "3fad0ad1-896e-40b6-93d8-0b6f30244520", + "ref_id": "xccdf_org.ssgproject.content_rule_71ef5fa6e7c0b2ae81dffb03ec2287dd", + "title": "Quae id quia nemo.", + "rationale": "Sed corrupti sequi. Consequatur delectus mollitia. Eveniet quo nulla.", + "description": "Ad sit quaerat. Rerum dolores ipsa. Est animi earum.", + "severity": "medium", + "precedence": 9436, "identifier": { - "href": "http://spencer.example/kennith", - "label": "Estella Bolger" + "href": "http://bins.test/audrey", + "label": "Morwë" }, "references": [ { - "href": "http://price.example/dustin", - "label": "Argonui" + "href": "http://mayer.example/jerry_thiel", + "label": "Legolas" }, { - "href": "http://kozey-muller.test/dong_stehr", - "label": "Hugo Bracegirdle" + "href": "http://aufderhar.example/dante", + "label": "Guilin" }, { - "href": "http://cartwright.test/arnold.mills", - "label": "Harding" + "href": "http://mante-hammes.test/cameron_herman", + "label": "Quennar" }, { - "href": "http://shanahan-friesen.example/brittaney", - "label": "Ingold" + "href": "http://boehm-bruen.example/michal", + "label": "Dírhael" }, { - "href": "http://langworth.test/rachelle", - "label": "Girion" + "href": "http://lowe-herman.test/santo", + "label": "Ciryandil" } ], "value_checks": null, @@ -3591,9 +3582,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/625634ec-69e8-4f50-9f90-b7af3caa1300/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/625634ec-69e8-4f50-9f90-b7af3caa1300/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/625634ec-69e8-4f50-9f90-b7af3caa1300/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/55739df8-d2bd-49e4-ace4-dc2f8f38e9fd/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/55739df8-d2bd-49e4-ace4-dc2f8f38e9fd/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/55739df8-d2bd-49e4-ace4-dc2f8f38e9fd/rules?limit=10&offset=10" } }, "summary": "", @@ -3603,37 +3594,37 @@ "value": { "data": [ { - "id": "16ab6417-d539-43d4-bdef-474f95b2ff35", - "ref_id": "xccdf_org.ssgproject.content_rule_0aaa56c7b0a530cdbfad959a4ccaf20e", - "title": "Quos corrupti rerum quis.", - "rationale": "Placeat dolorem et. Blanditiis nihil asperiores. Rerum voluptate inventore.", - "description": "Asperiores quos dolorem. Enim tenetur quos. Fugiat praesentium qui.", - "severity": "low", - "precedence": 238, + "id": "b131563e-3f54-4460-9163-0e8ef7b22161", + "ref_id": "xccdf_org.ssgproject.content_rule_f2d5083fbb5cd4e569e1e41ed9d499a2", + "title": "Quidem nemo quos sint.", + "rationale": "Quia aspernatur pariatur. Rerum architecto quibusdam. Dolorum fugiat reiciendis.", + "description": "Excepturi culpa est. Et tempore cum. Laudantium repellat consectetur.", + "severity": "high", + "precedence": 595, "identifier": { - "href": "http://bergnaum-haag.test/otto", - "label": "Arveleg" + "href": "http://cartwright.example/arnoldo", + "label": "Caliondo" }, "references": [ { - "href": "http://paucek-schneider.test/josh_schultz", - "label": "Peregrin Took" + "href": "http://botsford-veum.test/charlene", + "label": "Bain" }, { - "href": "http://jakubowski-prohaska.test/claude.douglas", - "label": "Mîm" + "href": "http://stracke.example/mervin", + "label": "Odo Proudfoot" }, { - "href": "http://rodriguez.example/larita", - "label": "Shelob" + "href": "http://schowalter-rogahn.example/mariel_block", + "label": "Bombur" }, { - "href": "http://pouros.test/lillie", - "label": "Tar-Amandil" + "href": "http://huel-schmidt.example/denis", + "label": "Diamond of Long Cleeve" }, { - "href": "http://hoppe.test/tisa.fadel", - "label": "Tar-Ardamin" + "href": "http://breitenberg.example/jennefer.hettinger", + "label": "Porto Baggins" } ], "value_checks": null, @@ -3641,37 +3632,37 @@ "type": "rule" }, { - "id": "e23bf103-90ae-4a6f-b0c2-17bf8499d357", - "ref_id": "xccdf_org.ssgproject.content_rule_4c016b9f4a2a69668aef92c895bf49f1", - "title": "Dolorem earum eius iure.", - "rationale": "Tenetur rem non. Distinctio qui qui. Tempora modi consequatur.", - "description": "Impedit architecto unde. Officia sed sint. Sed quos maxime.", - "severity": "high", - "precedence": 711, + "id": "be67f65b-1e64-4124-9ef9-1f5bb4b9e305", + "ref_id": "xccdf_org.ssgproject.content_rule_85b8169f33696d99d831171fd6e8c57b", + "title": "Ut illum sint et.", + "rationale": "Repellat sunt quod. Aut tenetur numquam. Officia quia et.", + "description": "Corrupti aut praesentium. Non aliquam libero. Animi dolorum eos.", + "severity": "low", + "precedence": 781, "identifier": { - "href": "http://little.example/bette", - "label": "Amethyst Hornblower" + "href": "http://towne.test/emerson", + "label": "Lindissë" }, "references": [ { - "href": "http://lindgren.test/yasmin.strosin", - "label": "Narmacil" + "href": "http://rohan.example/kendall", + "label": "Faramir Took" }, { - "href": "http://koch-roob.example/hank.sauer", - "label": "Minto Burrows" + "href": "http://osinski.example/kristle_williamson", + "label": "Eldarion" }, { - "href": "http://davis.test/malik", - "label": "Írimon" + "href": "http://damore.example/benito.stoltenberg", + "label": "Mosco Burrows" }, { - "href": "http://howe.test/patrica_harvey", - "label": "Mungo Baggins" + "href": "http://okon.example/sommer", + "label": "Angbor" }, { - "href": "http://schneider-harber.test/sharan", - "label": "Atanalcar" + "href": "http://adams-runte.test/jonell.schiller", + "label": "Arachon" } ], "value_checks": null, @@ -3679,37 +3670,37 @@ "type": "rule" }, { - "id": "74528847-6c7c-4afb-bfff-292ae8771812", - "ref_id": "xccdf_org.ssgproject.content_rule_f6f2f9ca3deb79a56556f8b02a9b273b", - "title": "Dolor voluptatem enim earum.", - "rationale": "Exercitationem dolor est. Similique voluptatem deleniti. Quo molestiae facere.", - "description": "Nisi eos et. Illo hic eos. Veniam sunt adipisci.", - "severity": "low", - "precedence": 920, + "id": "bc5f4809-2114-4406-8412-a57490cd5528", + "ref_id": "xccdf_org.ssgproject.content_rule_44cab6351ae51adeee00e99ffcbcdb31", + "title": "Rerum ipsa autem illo.", + "rationale": "Temporibus ducimus fugiat. Eum ut et. Iure molestiae nesciunt.", + "description": "Et iure illo. Deserunt est nihil. Atque repellendus dolorem.", + "severity": "medium", + "precedence": 1219, "identifier": { - "href": "http://harvey.example/colton", - "label": "Glóredhel" + "href": "http://ritchie.example/carl", + "label": "Primula Brandybuck" }, "references": [ { - "href": "http://hickle-erdman.test/damon", - "label": "Gilbarad" + "href": "http://anderson-hyatt.example/shemika", + "label": "Hirluin" }, { - "href": "http://streich-crona.test/darryl", - "label": "Nolondil" + "href": "http://terry-auer.test/kamala_kshlerin", + "label": "Folco Boffin" }, { - "href": "http://bruen.example/tammi", - "label": "Gorgol" + "href": "http://ebert.test/echo", + "label": "Arantar" }, { - "href": "http://lehner.test/shelton", - "label": "Finbor" + "href": "http://hamill.example/tequila.hand", + "label": "Lofar" }, { - "href": "http://rowe.test/harley", - "label": "Urthel" + "href": "http://braun.test/hortencia", + "label": "Jessamine Boffin" } ], "value_checks": null, @@ -3717,37 +3708,37 @@ "type": "rule" }, { - "id": "518c328f-1768-49fb-9cd9-fc0d18a347b8", - "ref_id": "xccdf_org.ssgproject.content_rule_1fa551caf4b89bdfc78b1f253ae4c1bc", - "title": "Consequuntur minima quas dolorem.", - "rationale": "Et sapiente officiis. Eos itaque adipisci. Molestiae quos nostrum.", - "description": "Nihil similique necessitatibus. Quis ex voluptatibus. Voluptas velit nihil.", - "severity": "low", - "precedence": 1288, + "id": "5f6b18f8-cd12-470d-b29e-8f3b62a9455e", + "ref_id": "xccdf_org.ssgproject.content_rule_61292a691dceaffd32f0d8f310adfa13", + "title": "Aut aliquid molestiae eligendi.", + "rationale": "Dolorem suscipit animi. Tempore porro sequi. Dolor vero sed.", + "description": "Nesciunt magnam vel. Aliquid voluptas consequatur. Aliquam minus quis.", + "severity": "medium", + "precedence": 1267, "identifier": { - "href": "http://kemmer.example/sanjuanita", - "label": "Flói" + "href": "http://hilll.test/jeri", + "label": "Henderch" }, "references": [ { - "href": "http://conn.example/vito", - "label": "Gilly Brownlock" + "href": "http://grant-bosco.test/nathan.runte", + "label": "Nimrodel" }, { - "href": "http://fahey-jacobson.example/carl_pfeffer", - "label": "Farmer Cotton" + "href": "http://hodkiewicz-kiehn.example/frederick", + "label": "Bandobras Took" }, { - "href": "http://bayer-will.example/isabelle", - "label": "Artamir" + "href": "http://halvorson.test/chas", + "label": "Buldar" }, { - "href": "http://kling-osinski.example/jerald", - "label": "Herubrand" + "href": "http://towne-batz.test/manuel", + "label": "Tar-Ancalimë" }, { - "href": "http://haag.test/teodora", - "label": "Aerin" + "href": "http://gerlach.test/emery", + "label": "Lalaith" } ], "value_checks": null, @@ -3755,37 +3746,37 @@ "type": "rule" }, { - "id": "d7940712-714f-4ab3-8511-c116eb6cb725", - "ref_id": "xccdf_org.ssgproject.content_rule_27bb8f8578f61b965b79a4d7b293a8e2", - "title": "Voluptas qui officia id.", - "rationale": "Quia eligendi asperiores. Iste ut ullam. Porro qui rerum.", - "description": "Et suscipit est. Quia nemo ea. Quis laboriosam ducimus.", - "severity": "low", - "precedence": 1591, + "id": "e66d0616-5303-487f-975f-5f6304c16518", + "ref_id": "xccdf_org.ssgproject.content_rule_ce54f65519a9b0a0a0f15058696017c6", + "title": "Quam reprehenderit distinctio non.", + "rationale": "Eum eveniet veritatis. Quo cum corrupti. Ea excepturi eius.", + "description": "Est alias modi. Vel inventore molestiae. Quae sequi dolores.", + "severity": "medium", + "precedence": 1684, "identifier": { - "href": "http://hegmann.example/madalyn_kilback", - "label": "Wilcome" + "href": "http://dicki-stanton.example/shayne.okon", + "label": "Fundin" }, "references": [ { - "href": "http://gutkowski.example/xavier", - "label": "Primula Brandybuck" + "href": "http://stamm.example/fleta.carroll", + "label": "Arahad" }, { - "href": "http://abbott.example/refugio.braun", - "label": "Voronwë" + "href": "http://hahn.test/tamekia", + "label": "Anardil" }, { - "href": "http://kling-feeney.test/carmelia", - "label": "Griffo Boffin" + "href": "http://hintz-lakin.example/eugenio.lindgren", + "label": "Maglor" }, { - "href": "http://gutmann-sipes.test/marketta_marquardt", - "label": "Adalgar Bolger" + "href": "http://anderson.test/terrell", + "label": "Ungoliant" }, { - "href": "http://fisher.example/lewis", - "label": "Adanel" + "href": "http://rau.test/lennie", + "label": "Elemmakil" } ], "value_checks": null, @@ -3793,37 +3784,37 @@ "type": "rule" }, { - "id": "64ecaa60-b6f7-4597-a51b-1942c28ca993", - "ref_id": "xccdf_org.ssgproject.content_rule_acea88fa7215ad1ca19d0428a4e7956a", - "title": "Vero est quae magnam.", - "rationale": "Non quas ipsum. Ratione cupiditate aliquam. Aut est eligendi.", - "description": "Eius quam sit. Quia possimus tempora. Ad fugiat maxime.", + "id": "e2c2424c-bf32-421f-bc92-7ebf83941684", + "ref_id": "xccdf_org.ssgproject.content_rule_431a56ad34335e2c1b36e0b6ef934f6c", + "title": "Assumenda occaecati non magni.", + "rationale": "Assumenda praesentium consequatur. Repellendus quasi laboriosam. Deleniti aut dolor.", + "description": "Labore cupiditate reiciendis. Omnis explicabo voluptatibus. Dolore illum soluta.", "severity": "high", - "precedence": 2378, + "precedence": 2131, "identifier": { - "href": "http://heller.example/porfirio.medhurst", - "label": "Lalaith" + "href": "http://klocko-hoeger.test/kacy", + "label": "Poldor" }, "references": [ { - "href": "http://nolan-torp.example/larae_mcdermott", - "label": "Hugo Bracegirdle" + "href": "http://russel-ondricka.test/catheryn", + "label": "Buffo Boffin" }, { - "href": "http://nolan.test/naomi_bergstrom", - "label": "Gorgol" + "href": "http://dibbert.example/ahmed.harber", + "label": "Theobald Bolger" }, { - "href": "http://collier.test/elliott", - "label": "Nolondil" + "href": "http://huel.example/fidel.rempel", + "label": "Araphant" }, { - "href": "http://parker.example/chassidy", - "label": "Elentir" + "href": "http://lebsack.example/danial_howe", + "label": "Lavender Grubb" }, { - "href": "http://funk-lockman.example/von", - "label": "Ivriniel" + "href": "http://brakus.test/andre", + "label": "Brodda" } ], "value_checks": null, @@ -3831,37 +3822,37 @@ "type": "rule" }, { - "id": "646e2b70-2693-4241-9196-4653af6079e5", - "ref_id": "xccdf_org.ssgproject.content_rule_e7be556d9153fe99c0af09a68fb1d4ac", - "title": "Et a minus nostrum.", - "rationale": "Odio in qui. Architecto vero dolores. Quidem non ut.", - "description": "Aut consequatur facere. Magnam aut velit. Magnam aut cum.", - "severity": "low", - "precedence": 2553, + "id": "3c3985da-4585-40bb-abad-2631d10d5606", + "ref_id": "xccdf_org.ssgproject.content_rule_29b5dee7727b3d1ba227ca3711a23ec3", + "title": "Ut quo ut sunt.", + "rationale": "Libero aut illo. Neque ut sit. Tempore quis soluta.", + "description": "Quo ut quia. Minus unde perferendis. Rerum cum sit.", + "severity": "high", + "precedence": 2205, "identifier": { - "href": "http://considine-murazik.example/merrill.welch", - "label": "Gorgol" + "href": "http://hoeger-koss.example/mai_schaden", + "label": "Hending" }, "references": [ { - "href": "http://swaniawski.test/carter", - "label": "Tar-Minastir" + "href": "http://langosh-okon.test/karri.keeling", + "label": "Will Whitfoot" }, { - "href": "http://krajcik-mcclure.test/apryl.nienow", - "label": "Hirgon" + "href": "http://wisozk.example/mickey", + "label": "Adalgar Bolger" }, { - "href": "http://adams-konopelski.test/richie_williamson", - "label": "Rowlie Appledore" + "href": "http://smith.example/deedra", + "label": "Minto Burrows" }, { - "href": "http://adams-swift.test/jude.ankunding", - "label": "Angbor" + "href": "http://will.example/lucille", + "label": "Arassuil" }, { - "href": "http://friesen.test/cher_nolan", - "label": "Ted Sandyman" + "href": "http://ferry.test/charlena_shields", + "label": "Argeleb" } ], "value_checks": null, @@ -3869,37 +3860,37 @@ "type": "rule" }, { - "id": "32b89b90-5ed1-4f48-a3c0-4474c9ae4ace", - "ref_id": "xccdf_org.ssgproject.content_rule_9df18b46c455382e31206325a520a8e4", - "title": "Cumque deleniti vel saepe.", - "rationale": "Esse repellendus et. Ut repellat non. Qui nihil magni.", - "description": "Repellat eveniet iure. Autem rerum temporibus. Dicta at nihil.", - "severity": "low", - "precedence": 2912, + "id": "a1f68b5c-346c-4e55-a358-a70757191766", + "ref_id": "xccdf_org.ssgproject.content_rule_536cb7effc7d5e8a333562cdedf06498", + "title": "Perspiciatis aliquid in assumenda.", + "rationale": "Hic id consequatur. Porro et iste. Neque natus aperiam.", + "description": "Sint ipsa ea. Nisi voluptatibus ea. Magni quis cum.", + "severity": "high", + "precedence": 2291, "identifier": { - "href": "http://bergstrom.example/thurman", - "label": "Algund" + "href": "http://bailey-predovic.test/eldon", + "label": "Willie Banks" }, "references": [ { - "href": "http://beatty.example/kendrick", - "label": "Elboron" + "href": "http://hoeger-legros.test/maxwell_nader", + "label": "Bergil" }, { - "href": "http://gleichner.example/eldridge", - "label": "Ilberic Brandybuck" + "href": "http://waters.example/stanley_schinner", + "label": "Pelendur" }, { - "href": "http://breitenberg-rempel.example/judson", - "label": "Lalaith" + "href": "http://blick.test/mathilda.becker", + "label": "Scatha" }, { - "href": "http://bahringer.example/glenn", - "label": "Thorondor" + "href": "http://jaskolski.test/mathilda.ritchie", + "label": "Eorl" }, { - "href": "http://stoltenberg.example/harry_collier", - "label": "Olwë" + "href": "http://reinger-crooks.example/emilie_oconner", + "label": "Saradoc Brandybuck" } ], "value_checks": null, @@ -3907,37 +3898,37 @@ "type": "rule" }, { - "id": "35393f60-0d40-4932-8995-03129ffe0401", - "ref_id": "xccdf_org.ssgproject.content_rule_365394fa89c198771dbcd123fd342153", - "title": "Nulla ipsam odit dolorum.", - "rationale": "Est non ut. Non sint qui. Ratione mollitia est.", - "description": "Rem repellat commodi. Molestias rerum quos. Repellat laborum quos.", - "severity": "medium", - "precedence": 3003, + "id": "3e917c72-02c2-407a-a368-a8b2b78dc4d7", + "ref_id": "xccdf_org.ssgproject.content_rule_360a3a95aac8ef1efa6a7bfe2e3f3a97", + "title": "Sunt doloribus est sed.", + "rationale": "Quia in voluptas. Quisquam dolorum voluptatibus. Non distinctio laboriosam.", + "description": "Sequi excepturi non. Quia laborum consequatur. Sed autem et.", + "severity": "low", + "precedence": 3044, "identifier": { - "href": "http://halvorson.example/melinda.muller", - "label": "Voronwë" + "href": "http://cruickshank.example/jaimee_jenkins", + "label": "Rúmil" }, "references": [ { - "href": "http://corkery.example/alex", - "label": "Morwen Steelsheen" + "href": "http://pfannerstill.example/deneen", + "label": "Olwë" }, { - "href": "http://mante-legros.example/ken_torphy", - "label": "Bruno Bracegirdle" + "href": "http://dietrich.example/brett", + "label": "Aredhel" }, { - "href": "http://huels-jacobson.example/chandra", - "label": "Anborn" + "href": "http://considine.example/kisha", + "label": "Dinodas Brandybuck" }, { - "href": "http://harvey-schultz.test/dominique_kihn", - "label": "Vidumavi" + "href": "http://cassin.test/ali", + "label": "Estella Bolger" }, { - "href": "http://schinner.example/nancy_rogahn", - "label": "Merimac Brandybuck" + "href": "http://cole.example/paul_ledner", + "label": "Marhwini" } ], "value_checks": null, @@ -3945,37 +3936,37 @@ "type": "rule" }, { - "id": "bbe07c30-9612-4ca0-926f-0b84c6d9f9c8", - "ref_id": "xccdf_org.ssgproject.content_rule_a30e8026e9192be121af7424306737c4", - "title": "Dolorem quia illo sed.", - "rationale": "Animi illum laborum. Aut similique ab. Impedit adipisci perspiciatis.", - "description": "Sapiente dignissimos veniam. Ducimus et odio. Quia sit dolores.", - "severity": "medium", - "precedence": 3467, + "id": "ae54ecb8-5e86-472a-af8b-ff218913fd60", + "ref_id": "xccdf_org.ssgproject.content_rule_4b55efede622691dda5692914a104905", + "title": "Ipsam amet et libero.", + "rationale": "Repellendus esse omnis. Repellendus eveniet impedit. Qui sed omnis.", + "description": "Qui vitae voluptas. Aut neque ipsam. Porro ratione corporis.", + "severity": "high", + "precedence": 4647, "identifier": { - "href": "http://pagac.test/danille", - "label": "Bandobras Took" + "href": "http://dare-cummings.example/laurene_fadel", + "label": "Gróin" }, "references": [ { - "href": "http://barrows-considine.test/jordon.mueller", - "label": "Rowan" + "href": "http://sawayn.test/yi", + "label": "Arminas" }, { - "href": "http://botsford.example/dudley", - "label": "Sapphira Brockhouse" + "href": "http://dickens-tromp.test/lura_durgan", + "label": "Enthor" }, { - "href": "http://batz.example/cherrie", - "label": "Sapphira Brockhouse" + "href": "http://harvey.test/ethan_kemmer", + "label": "Herendil" }, { - "href": "http://bayer-willms.example/onie", - "label": "Dírhaval" + "href": "http://brakus-emmerich.test/octavio", + "label": "Brodda" }, { - "href": "http://metz.test/kelli", - "label": "Adalgar Bolger" + "href": "http://von-mertz.test/seymour_zulauf", + "label": "Pengolodh" } ], "value_checks": null, @@ -3990,9 +3981,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/2b4c750a-6162-4c75-a8d0-132e6cd17e37/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/2b4c750a-6162-4c75-a8d0-132e6cd17e37/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/2b4c750a-6162-4c75-a8d0-132e6cd17e37/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/0b033c90-1512-4c2f-b2ef-6f0641335a2b/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/0b033c90-1512-4c2f-b2ef-6f0641335a2b/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/0b033c90-1512-4c2f-b2ef-6f0641335a2b/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -4100,37 +4091,37 @@ "Returns a Rule": { "value": { "data": { - "id": "cdcca43f-dfce-4cf8-a286-a1a219b79e01", - "ref_id": "xccdf_org.ssgproject.content_rule_d984343cd8f940f938a567801256dacf", - "title": "Rem quia et aut.", - "rationale": "Sed sed illo. Ut hic velit. Consequatur dignissimos voluptatem.", - "description": "Nihil voluptatem quaerat. Sequi sit enim. Voluptas asperiores libero.", - "severity": "high", - "precedence": 4672, + "id": "106450bd-6d54-4811-bc37-62aa4bc87f6a", + "ref_id": "xccdf_org.ssgproject.content_rule_73017c5c4b299d9dae2c8b44813901c2", + "title": "Beatae numquam maxime delectus.", + "rationale": "Praesentium magni rerum. Quia omnis et. Pariatur itaque minus.", + "description": "Velit natus vel. Aut dolorem nostrum. Ipsam dolorem suscipit.", + "severity": "medium", + "precedence": 552, "identifier": { - "href": "http://abshire.test/refugio.rowe", - "label": "Finbor" + "href": "http://nolan-walter.test/lera", + "label": "Berylla Boffin" }, "references": [ { - "href": "http://douglas.example/wallace_stoltenberg", - "label": "Brandir" + "href": "http://little-nitzsche.test/loyd_mueller", + "label": "Orontor" }, { - "href": "http://hahn.example/darleen", - "label": "Bifur" + "href": "http://ryan.example/geraldo", + "label": "Mat Heathertoes" }, { - "href": "http://deckow-parker.test/karl", - "label": "Ithilbor" + "href": "http://bins-jacobs.example/boris", + "label": "Esmeralda Took" }, { - "href": "http://fadel-olson.test/sammie.harris", - "label": "Amrod" + "href": "http://emmerich.example/amber.rolfson", + "label": "Grór" }, { - "href": "http://legros.test/frances", - "label": "Hatholdir" + "href": "http://kshlerin.example/leonida.lowe", + "label": "Bowman Cotton" } ], "value_checks": null, @@ -4166,7 +4157,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 708798db-9fc9-4edf-8681-d20da0f2625f" + "V2::Rule not found with ID d5b51871-c3fa-49b9-9c4e-3399a13e2346" ] }, "summary": "", @@ -4283,37 +4274,37 @@ "value": { "data": [ { - "id": "05a05a55-b281-4ca6-b492-616addfb1eaa", - "ref_id": "xccdf_org.ssgproject.content_rule_d5d39b2b40b50524ce33470ac0a3288b", - "title": "Dolorem ullam soluta distinctio.", - "rationale": "Maxime impedit dolores. Est officia quis. Fuga asperiores assumenda.", - "description": "Molestiae sint ab. Consequatur sint corrupti. In qui enim.", - "severity": "high", - "precedence": 3015, + "id": "032c4147-a27a-41f6-8fc3-cae01b9b6044", + "ref_id": "xccdf_org.ssgproject.content_rule_50b7c88ba52692ec504c322a6f81a26a", + "title": "Quisquam occaecati sed velit.", + "rationale": "Nihil esse rerum. Accusamus dicta sunt. Expedita eius natus.", + "description": "Accusantium ipsum qui. Rerum sed vitae. Recusandae suscipit expedita.", + "severity": "low", + "precedence": 2819, "identifier": { - "href": "http://miller.test/philip_dickinson", - "label": "Will Whitfoot" + "href": "http://fahey.example/wilbert.rempel", + "label": "Lalaith" }, "references": [ { - "href": "http://blick.test/liberty", - "label": "Galadhon" + "href": "http://ritchie.example/eli", + "label": "Arminas" }, { - "href": "http://frami.example/moses.dicki", - "label": "Estella Bolger" + "href": "http://medhurst-tromp.test/jule", + "label": "Amarië" }, { - "href": "http://pfannerstill.test/xavier_jacobs", - "label": "Galador" + "href": "http://haag-ryan.test/tami_ankunding", + "label": "Hob Gammidge" }, { - "href": "http://champlin.test/dannielle", - "label": "Lobelia Sackville-Baggins" + "href": "http://schroeder.test/sophia", + "label": "Minastan" }, { - "href": "http://bradtke.test/shelton", - "label": "Quickbeam" + "href": "http://hauck.test/eusebio_miller", + "label": "Brytta" } ], "value_checks": null, @@ -4322,37 +4313,37 @@ "remediation_issue_id": null }, { - "id": "28b05f2f-50ac-4920-b83d-19ffa568a7a6", - "ref_id": "xccdf_org.ssgproject.content_rule_f5387324993ac8761759a9950cae3abf", - "title": "Aut ad dolores corporis.", - "rationale": "Numquam laudantium rerum. Laboriosam aspernatur ea. Autem veniam laudantium.", - "description": "Nisi et magnam. Officiis veniam inventore. Quia ea nihil.", - "severity": "low", - "precedence": 7130, + "id": "12125a3f-4fb3-479a-b20c-4fac7f54cc76", + "ref_id": "xccdf_org.ssgproject.content_rule_8f0c4ab59ce4b4d34065deedadc8ff9e", + "title": "Id aut quia odio.", + "rationale": "Consequatur fugiat provident. Exercitationem ea nam. Sint est laudantium.", + "description": "Corrupti asperiores quasi. Id ut aut. Voluptatibus possimus est.", + "severity": "high", + "precedence": 7983, "identifier": { - "href": "http://ryan.example/russell.dubuque", - "label": "Posco Baggins" + "href": "http://mohr-tillman.test/sherita", + "label": "Herefara" }, "references": [ { - "href": "http://parisian.example/marylee.mante", - "label": "Hildifons Took" + "href": "http://ernser.example/wilbert_koepp", + "label": "Longo Baggins" }, { - "href": "http://parisian.test/brock", - "label": "Odo Proudfoot" + "href": "http://ruecker.test/leilani", + "label": "Voronwë" }, { - "href": "http://zemlak.example/ruthanne.berge", - "label": "Torhir Ifant" + "href": "http://schmitt.example/noah.satterfield", + "label": "Rían" }, { - "href": "http://dubuque.test/boyce", - "label": "Morwen Steelsheen" + "href": "http://ziemann-beier.test/colton", + "label": "Eorl" }, { - "href": "http://heidenreich.example/sierra_bayer", - "label": "Orodreth" + "href": "http://ritchie-kilback.test/francoise", + "label": "Argon" } ], "value_checks": null, @@ -4361,37 +4352,37 @@ "remediation_issue_id": null }, { - "id": "2c585c1d-69af-4e7a-b447-6613aba1f567", - "ref_id": "xccdf_org.ssgproject.content_rule_1832236aa426241d72b447367ed9cec1", - "title": "Vel sequi iure rerum.", - "rationale": "Impedit tenetur soluta. Quo voluptatem omnis. Voluptatum dignissimos inventore.", - "description": "Ipsam doloremque minima. Sed soluta est. Et dolores rerum.", - "severity": "medium", - "precedence": 1144, + "id": "1c50ec1f-c3d4-4058-b8ee-2618b687139b", + "ref_id": "xccdf_org.ssgproject.content_rule_41ae86f6cc961593030800d5ceb7218a", + "title": "Aspernatur amet quos sapiente.", + "rationale": "Voluptas maiores quia. Aliquam cumque accusantium. Eveniet perferendis debitis.", + "description": "Quia ex doloremque. Alias in et. Sit cumque dolor.", + "severity": "low", + "precedence": 2011, "identifier": { - "href": "http://jenkins.example/raymundo_schmidt", - "label": "Nar" + "href": "http://champlin.test/pandora.herzog", + "label": "Celegorm" }, "references": [ { - "href": "http://haley-shanahan.example/daniella_weber", - "label": "Fëanor" + "href": "http://kuhn-ferry.test/quincy", + "label": "Lothíriel" }, { - "href": "http://wiza.example/donnell_parker", - "label": "Aegnor" + "href": "http://wisoky.test/laticia.little", + "label": "William" }, { - "href": "http://dietrich.example/anya.dicki", - "label": "Radbug" + "href": "http://kutch.test/gerry.oreilly", + "label": "Holfast Gardner" }, { - "href": "http://harber.example/jeramy_friesen", - "label": "Amaranth Brandybuck" + "href": "http://hagenes.test/maurice", + "label": "Húrin" }, { - "href": "http://fadel-kunde.example/krysten_zemlak", - "label": "Freca" + "href": "http://sauer.test/mitsue_baumbach", + "label": "Arwen" } ], "value_checks": null, @@ -4400,37 +4391,37 @@ "remediation_issue_id": null }, { - "id": "541831fb-8ab3-447c-9822-e315ad0882b3", - "ref_id": "xccdf_org.ssgproject.content_rule_db83910fdace28b57f69028f65e8c096", - "title": "Voluptatum illum consequuntur eum.", - "rationale": "Sequi expedita et. Rerum dolorem odio. Sunt ducimus aut.", - "description": "Facere dolores quam. Aut pariatur omnis. Quia quas dicta.", - "severity": "high", - "precedence": 548, + "id": "21b333f0-f6f1-4028-92fc-6ab3155a06fa", + "ref_id": "xccdf_org.ssgproject.content_rule_cecbaf01eea44d20d99ab986e0bb9edf", + "title": "Odio facere qui ut.", + "rationale": "Iusto vero nemo. Aut corporis dolores. Possimus sunt quas.", + "description": "Omnis tempora qui. Pariatur et voluptatem. Provident et natus.", + "severity": "medium", + "precedence": 2170, "identifier": { - "href": "http://kuhn.test/johnathon.ebert", - "label": "Aghan" + "href": "http://mckenzie.test/scot", + "label": "Thranduil" }, "references": [ { - "href": "http://nienow.example/loreta", - "label": "Flambard Took" + "href": "http://cremin.test/darron", + "label": "Idis" }, { - "href": "http://corwin.example/moon_bahringer", - "label": "Eradan" + "href": "http://gutmann-wolff.test/chang", + "label": "Tar-Ancalimë" }, { - "href": "http://olson-krajcik.example/maddie", - "label": "Fingon" + "href": "http://cassin-weimann.example/demetria.johnston", + "label": "Zimrahin" }, { - "href": "http://smitham.test/lavada_hessel", - "label": "Aldamir" + "href": "http://murray-schmitt.test/sun_wiegand", + "label": "Mithrellas" }, { - "href": "http://douglas-bogisich.test/shay", - "label": "Angelimir" + "href": "http://larson.test/cayla.hegmann", + "label": "Marroc Brandybuck" } ], "value_checks": null, @@ -4439,37 +4430,37 @@ "remediation_issue_id": null }, { - "id": "5439a2db-b8ed-4a8b-ae35-a13c60c9a0e9", - "ref_id": "xccdf_org.ssgproject.content_rule_5ae133d36c450a8120ed0432757827a9", - "title": "Labore dolor tempora voluptas.", - "rationale": "Suscipit nobis aliquid. Accusamus quia error. Repellendus voluptatum enim.", - "description": "Officia qui optio. Quod et iure. Libero ut aut.", + "id": "25d4ecd9-72f0-4d05-bae3-3e79513c4697", + "ref_id": "xccdf_org.ssgproject.content_rule_0aedecd7878de28407d450a34be9eeba", + "title": "Ut aut laborum corrupti.", + "rationale": "Molestias aut distinctio. Ex atque veniam. Quia veritatis consectetur.", + "description": "Explicabo qui repellendus. Natus facilis velit. Nesciunt modi rem.", "severity": "low", - "precedence": 5623, + "precedence": 6455, "identifier": { - "href": "http://greenfelder-fahey.test/caterina_damore", - "label": "Elros" + "href": "http://raynor.example/elwood", + "label": "Gwaihir" }, "references": [ { - "href": "http://turcotte.test/mai.hilpert", - "label": "Belemir" + "href": "http://carter.test/voncile", + "label": "Manwendil" }, { - "href": "http://brown.test/harriett_bartell", - "label": "Mithrellas" + "href": "http://moen.example/gavin", + "label": "Old Noakes" }, { - "href": "http://kiehn.test/felix", - "label": "Bofur" + "href": "http://rau.test/tyree_quigley", + "label": "Tarciryan" }, { - "href": "http://wehner.example/ardell", - "label": "Eöl" + "href": "http://runolfsdottir-kub.test/alonzo", + "label": "Emeldir" }, { - "href": "http://reichert-marks.test/shemika_keebler", - "label": "Marroc Brandybuck" + "href": "http://wiza.test/reynalda", + "label": "Aldor" } ], "value_checks": null, @@ -4478,37 +4469,37 @@ "remediation_issue_id": null }, { - "id": "5fd3eb76-22ee-4a62-a767-31aec40faf13", - "ref_id": "xccdf_org.ssgproject.content_rule_345994e27a4b9a511f5360ba44609cb8", - "title": "Eos officia ipsam soluta.", - "rationale": "Dolorem rerum aut. Amet consectetur voluptatibus. Facilis et dolor.", - "description": "Temporibus et molestiae. Mollitia quo aut. Est commodi atque.", - "severity": "medium", - "precedence": 2238, + "id": "31b6581a-dd3e-471c-9f3a-559973658d46", + "ref_id": "xccdf_org.ssgproject.content_rule_c9a9af9ccd0b472a6ec5eb4a1f82e1de", + "title": "Accusamus quas est earum.", + "rationale": "Velit doloremque dolore. Ex non nesciunt. Fugit qui ut.", + "description": "Rerum aspernatur et. Voluptatum est consequatur. Odit rerum laudantium.", + "severity": "high", + "precedence": 93, "identifier": { - "href": "http://feil.example/ehtel.upton", - "label": "Holfast Gardner" + "href": "http://wehner.example/marcelina", + "label": "Aranarth" }, "references": [ { - "href": "http://tremblay.test/bridget_hamill", - "label": "Adalbert Bolger" + "href": "http://beer.example/ezekiel_wiegand", + "label": "Targon" }, { - "href": "http://pollich.test/gustavo.rutherford", - "label": "Guilin" + "href": "http://blanda.example/zandra.kutch", + "label": "Caliondo" }, { - "href": "http://bins.test/morgan", - "label": "Maglor" + "href": "http://torp-hickle.example/sydney_fay", + "label": "Fréaláf" }, { - "href": "http://kunze.test/shera_heathcote", - "label": "Drogo Baggins" + "href": "http://boyer-johnson.test/freida", + "label": "Huor" }, { - "href": "http://bergstrom.example/elayne", - "label": "Marhwini" + "href": "http://funk.test/riva", + "label": "Eärendur" } ], "value_checks": null, @@ -4517,37 +4508,37 @@ "remediation_issue_id": null }, { - "id": "654a6dc2-5cde-47f9-bf21-144474a6f0a2", - "ref_id": "xccdf_org.ssgproject.content_rule_2639e946a860a2b04657138a93386f45", - "title": "Velit ex vel dolor.", - "rationale": "Et ad velit. Non inventore distinctio. Ipsa quod nulla.", - "description": "Laborum veniam architecto. Voluptatem voluptatem voluptatem. Est voluptatibus quis.", + "id": "47f604ad-25ce-4170-bc3b-e3ef1203265b", + "ref_id": "xccdf_org.ssgproject.content_rule_93f2c6f57cad3f2980195f2bee8d7d5d", + "title": "Atque impedit magnam itaque.", + "rationale": "Iste dolorum quo. Ut quidem maiores. Et nihil voluptate.", + "description": "In aut iste. Inventore ut tempore. Quo aut magni.", "severity": "medium", - "precedence": 1707, + "precedence": 1959, "identifier": { - "href": "http://altenwerth.example/lewis.mills", - "label": "Artamir" + "href": "http://lakin-bernhard.test/chiquita", + "label": "Nina Lightfoot" }, "references": [ { - "href": "http://lueilwitz.example/eddy", - "label": "Fréa" + "href": "http://mckenzie.test/sarita_mayert", + "label": "Nessanië" }, { - "href": "http://sawayn.example/teresa.goodwin", - "label": "Gundahar Bolger" + "href": "http://weimann.test/marine_cronin", + "label": "Amandil" }, { - "href": "http://oconner-dooley.test/raphael", - "label": "Robin Gardner" + "href": "http://hessel-feil.test/joline.pollich", + "label": "Leaflock" }, { - "href": "http://senger.test/lorenza", - "label": "Tarcil" + "href": "http://lemke.test/cristobal_langworth", + "label": "Dora Baggins" }, { - "href": "http://schaefer.example/britni.hahn", - "label": "Tuor" + "href": "http://stark-heller.example/olevia", + "label": "Rosamunda Took" } ], "value_checks": null, @@ -4556,37 +4547,37 @@ "remediation_issue_id": null }, { - "id": "6ac9ae62-ccd6-4a0d-8884-9f8fc236c7c4", - "ref_id": "xccdf_org.ssgproject.content_rule_b9b5819598035268d266842cb0d5319f", - "title": "Atque sit cum laboriosam.", - "rationale": "Voluptatum sit mollitia. Quasi et laudantium. Quidem laborum assumenda.", - "description": "Ut officia fuga. Nobis amet est. Minus fuga eum.", + "id": "53cc194d-a200-4943-a75b-c1d6c69d203c", + "ref_id": "xccdf_org.ssgproject.content_rule_bee6f6828b79314b0fe4c4507be10c6b", + "title": "Sed ex dicta quia.", + "rationale": "Facilis impedit molestiae. Qui sit ea. Perferendis rerum in.", + "description": "Cumque ut qui. Pariatur occaecati eligendi. Quia odit velit.", "severity": "high", - "precedence": 3397, + "precedence": 8624, "identifier": { - "href": "http://jacobi.test/darlena_koepp", - "label": "Mallor" + "href": "http://hickle-langworth.example/claudine", + "label": "Rúmil" }, "references": [ { - "href": "http://veum-gleichner.example/ina.gusikowski", - "label": "Marmadas Brandybuck" + "href": "http://wehner.example/blaine_paucek", + "label": "Lindir" }, { - "href": "http://lakin.test/adrien", - "label": "Ivy Goodenough" + "href": "http://nikolaus.test/cecil", + "label": "Gorlim" }, { - "href": "http://goyette.example/nicholle", - "label": "Wilcome" + "href": "http://cruickshank.example/donnell.shanahan", + "label": "Bandobras Took" }, { - "href": "http://ullrich-kuvalis.test/randolph.morissette", - "label": "Fréaláf" + "href": "http://hane.example/dexter", + "label": "Glóin" }, { - "href": "http://damore.test/giovanni", - "label": "Belegor" + "href": "http://bechtelar-crona.example/antone.schuppe", + "label": "Ornil" } ], "value_checks": null, @@ -4595,37 +4586,37 @@ "remediation_issue_id": null }, { - "id": "6bfbfb5b-fba1-49af-8cf5-49a51bc5a8e6", - "ref_id": "xccdf_org.ssgproject.content_rule_22d08d7a2873eca99a4a3ee8f5628050", - "title": "Qui soluta laborum excepturi.", - "rationale": "Sit in qui. Dolorem eum sit. Voluptatem saepe qui.", - "description": "Ea et vel. Iusto ipsum cupiditate. Occaecati voluptas ut.", + "id": "5969bf37-3cc6-43db-a79e-89f052bf3cd2", + "ref_id": "xccdf_org.ssgproject.content_rule_c014bc3cd1c84535a5013218eb49049f", + "title": "Aut ut hic vero.", + "rationale": "Ut perspiciatis suscipit. Adipisci distinctio est. Eius autem sunt.", + "description": "Dolor voluptatum perferendis. Sit perferendis nulla. Consequatur temporibus repudiandae.", "severity": "low", - "precedence": 9043, + "precedence": 4564, "identifier": { - "href": "http://gutmann.test/loralee", - "label": "Baranor" + "href": "http://dicki.example/sonny.bernhard", + "label": "Valacar" }, "references": [ { - "href": "http://parisian.example/erna", - "label": "Mablung" + "href": "http://jerde.example/cathryn.collins", + "label": "Faramir Took" }, { - "href": "http://koelpin.example/rupert", - "label": "Druda Burrows" + "href": "http://bins-mills.example/laila", + "label": "Doderic Brandybuck" }, { - "href": "http://mcdermott.test/kathlyn", - "label": "Fredegar Bolger" + "href": "http://pfeffer-cole.test/heidy", + "label": "Adam Hornblower" }, { - "href": "http://mertz-cremin.test/debrah.schuppe", - "label": "Elanor Gardner" + "href": "http://towne.example/taylor", + "label": "Tata" }, { - "href": "http://baumbach.test/justine", - "label": "Beren" + "href": "http://lakin.example/jan", + "label": "Hareth" } ], "value_checks": null, @@ -4634,37 +4625,37 @@ "remediation_issue_id": null }, { - "id": "6d07cd23-96f3-4659-a80e-0ab3d2b58fe0", - "ref_id": "xccdf_org.ssgproject.content_rule_33079307d3c95819128b39f1fd8b34ca", - "title": "Quia qui dolor enim.", - "rationale": "Ad enim laudantium. Magnam voluptas maiores. Ut et aut.", - "description": "Corporis perferendis itaque. Commodi velit dignissimos. Necessitatibus eveniet sed.", - "severity": "medium", - "precedence": 7783, + "id": "6659d598-856c-49c9-b128-df8046922ea4", + "ref_id": "xccdf_org.ssgproject.content_rule_e20093fb1f7e19ffa98d546cb4a7b14c", + "title": "Blanditiis ipsam rerum quia.", + "rationale": "Qui placeat expedita. Illum a omnis. Accusamus aut iusto.", + "description": "Quis perferendis dolor. Deleniti delectus et. Nesciunt suscipit ut.", + "severity": "high", + "precedence": 5209, "identifier": { - "href": "http://oconner-schuppe.test/zackary.corwin", - "label": "Gollum" + "href": "http://senger-wisozk.test/mayra", + "label": "Ornendil" }, "references": [ { - "href": "http://gutkowski.test/lawerence", - "label": "Herumor" + "href": "http://turner.test/callie.greenfelder", + "label": "Galathil" }, { - "href": "http://barrows.test/kenny", - "label": "Fram" + "href": "http://jones.test/cassidy_okon", + "label": "Aragorn" }, { - "href": "http://carter.example/alec_murazik", - "label": "Mîm" + "href": "http://reichel-hand.test/lilly.crona", + "label": "Ostoher" }, { - "href": "http://hoeger.test/larraine", - "label": "Fortinbras Took" + "href": "http://wisozk.test/lee", + "label": "Mouth of Sauron" }, { - "href": "http://boyle-schowalter.test/hillary.kub", - "label": "Folco Burrowes" + "href": "http://oconner.test/antonina", + "label": "Farmer Cotton" } ], "value_checks": null, @@ -4679,9 +4670,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/d98117ee-00b9-4441-943e-5b961b2f336a/profiles/021b2f74-0dac-489f-8beb-977dab3f14d2/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/d98117ee-00b9-4441-943e-5b961b2f336a/profiles/021b2f74-0dac-489f-8beb-977dab3f14d2/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/d98117ee-00b9-4441-943e-5b961b2f336a/profiles/021b2f74-0dac-489f-8beb-977dab3f14d2/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/de348e1f-c64a-4dcc-8df2-6cb8af6564ef/profiles/daebf4ed-d416-4aac-98bb-63737efe3800/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/de348e1f-c64a-4dcc-8df2-6cb8af6564ef/profiles/daebf4ed-d416-4aac-98bb-63737efe3800/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/de348e1f-c64a-4dcc-8df2-6cb8af6564ef/profiles/daebf4ed-d416-4aac-98bb-63737efe3800/rules?limit=10&offset=10" } }, "summary": "", @@ -4691,37 +4682,37 @@ "value": { "data": [ { - "id": "45d54818-31f3-4015-be75-e1f238aab3e1", - "ref_id": "xccdf_org.ssgproject.content_rule_ee2d830417e6c81eb06d555603165f49", - "title": "Magnam consequatur rerum maiores.", - "rationale": "Et itaque deserunt. Eos error perspiciatis. Saepe non et.", - "description": "Suscipit cum corporis. Maiores maxime consequatur. Eaque aliquam et.", - "severity": "high", - "precedence": 543, + "id": "fa5970e7-6983-42d1-ba3e-d03f6f5b00be", + "ref_id": "xccdf_org.ssgproject.content_rule_7766f840a355f18447562e4996cd2ade", + "title": "Harum qui explicabo tenetur.", + "rationale": "Nostrum fugit aliquam. Similique qui illo. Fuga molestiae dicta.", + "description": "Eos ipsa ea. Commodi quos repudiandae. Cupiditate recusandae velit.", + "severity": "medium", + "precedence": 158, "identifier": { - "href": "http://zulauf-graham.test/ettie.tillman", - "label": "Marroc Brandybuck" + "href": "http://kuhic.example/tiny_von", + "label": "Fingolfin" }, "references": [ { - "href": "http://kemmer.example/luciano.koss", - "label": "Baranor" + "href": "http://boyer.test/bernardina", + "label": "Galadriel" }, { - "href": "http://hackett.example/hugh_abernathy", - "label": "Posco Baggins" + "href": "http://lehner.example/hoyt", + "label": "Imlach" }, { - "href": "http://gusikowski.example/kelli.sporer", - "label": "Cirion" + "href": "http://jacobs.example/molly", + "label": "Minardil" }, { - "href": "http://crona-denesik.example/tim", - "label": "Zamîn" + "href": "http://baumbach.test/derek", + "label": "Almiel" }, { - "href": "http://senger-hodkiewicz.test/julian", - "label": "Lalaith" + "href": "http://pouros.example/mandi", + "label": "Guthláf" } ], "value_checks": null, @@ -4730,37 +4721,37 @@ "remediation_issue_id": null }, { - "id": "12644c75-dc32-464a-aea6-6aecb2212721", - "ref_id": "xccdf_org.ssgproject.content_rule_f2f438a8aeee7388ff4730729570761c", - "title": "Dolor quidem libero optio.", - "rationale": "Omnis ut recusandae. Vitae consequatur qui. Excepturi tempore cum.", - "description": "Quas assumenda dignissimos. Nemo nostrum repellat. Doloremque ullam corrupti.", - "severity": "high", - "precedence": 1078, + "id": "bf3f9b0d-cb62-4ff6-b03a-52ca1b757dc9", + "ref_id": "xccdf_org.ssgproject.content_rule_f40201db9f5617eebdb251872d6c77a7", + "title": "Et enim voluptas et.", + "rationale": "Atque dolorem quas. Numquam hic magni. Sed delectus nam.", + "description": "Aut beatae deserunt. Non earum facere. Numquam enim repudiandae.", + "severity": "medium", + "precedence": 557, "identifier": { - "href": "http://feeney.example/jacqui", - "label": "Bill Butcher" + "href": "http://bayer.test/olen_mccullough", + "label": "Ruby Gardner" }, "references": [ { - "href": "http://wintheiser-dare.example/linwood", - "label": "Muzgash" + "href": "http://hartmann-carter.test/weston_jaskolski", + "label": "Orchaldor" }, { - "href": "http://prosacco.example/louie", - "label": "Griffo Boffin" + "href": "http://brakus.test/micheal.robel", + "label": "Théodwyn" }, { - "href": "http://muller-hand.test/cecil", - "label": "Borin" + "href": "http://kulas-hickle.test/jacquie", + "label": "Saruman" }, { - "href": "http://marquardt.example/helaine.willms", - "label": "Aranwë" + "href": "http://fahey-gerlach.example/edith.treutel", + "label": "Madoc Brandybuck" }, { - "href": "http://hoeger-greenholt.example/mabelle", - "label": "Isumbras" + "href": "http://koss.test/porsche.greenholt", + "label": "Ithilbor" } ], "value_checks": null, @@ -4769,37 +4760,37 @@ "remediation_issue_id": null }, { - "id": "a3a5802f-4a54-4a8a-8069-94d6c33ef907", - "ref_id": "xccdf_org.ssgproject.content_rule_c8e74217a5e5ca4576d6cbdab0982ed8", - "title": "Eveniet non et laboriosam.", - "rationale": "Neque pariatur soluta. Veritatis rerum sed. Voluptatibus in dolor.", - "description": "Autem assumenda suscipit. Aut ratione architecto. Inventore commodi illo.", - "severity": "high", - "precedence": 1768, + "id": "76a53263-7c53-40ae-b52a-a93dd02fda21", + "ref_id": "xccdf_org.ssgproject.content_rule_3aedf26c266922b3a2b5870172312a50", + "title": "Dolorem iusto voluptates consequatur.", + "rationale": "Est voluptas inventore. Officia quasi facere. Ipsa blanditiis culpa.", + "description": "Aperiam et placeat. Eum soluta provident. Placeat velit ab.", + "severity": "low", + "precedence": 564, "identifier": { - "href": "http://schultz.test/barrett_gerlach", - "label": "Amlaith" + "href": "http://reinger.example/lisette_gislason", + "label": "Éothain" }, "references": [ { - "href": "http://adams-morar.test/richie_mcdermott", - "label": "Hobson" + "href": "http://bednar.example/luetta", + "label": "Adalbert Bolger" }, { - "href": "http://mcclure-jacobs.example/dale", - "label": "Indis" + "href": "http://lemke.test/earlean.torp", + "label": "Scatha" }, { - "href": "http://buckridge.example/jonah", - "label": "Asphodel Brandybuck" + "href": "http://howe.example/rayford", + "label": "Wilimar Bolger" }, { - "href": "http://purdy-maggio.test/karlyn_larkin", - "label": "Fëanor" + "href": "http://purdy-nader.test/mercy", + "label": "Gimilzagar" }, { - "href": "http://oconnell.example/logan_cummings", - "label": "Handir" + "href": "http://wyman.test/elana", + "label": "Hardang" } ], "value_checks": null, @@ -4808,37 +4799,37 @@ "remediation_issue_id": null }, { - "id": "4646c314-5038-43d8-94d6-0cf436c00758", - "ref_id": "xccdf_org.ssgproject.content_rule_4cde74f29749b4f96c23fc5ae27da9e4", - "title": "Cumque debitis eum eveniet.", - "rationale": "Enim mollitia ducimus. Ut dicta dolor. Et itaque explicabo.", - "description": "In exercitationem quod. Aliquam sed laboriosam. Nobis quo qui.", - "severity": "low", - "precedence": 2284, + "id": "aaa02a10-008c-42d4-9137-a52be4798219", + "ref_id": "xccdf_org.ssgproject.content_rule_901248f9867892327a69c7e53024d095", + "title": "Rerum iste commodi deleniti.", + "rationale": "Tenetur dolorem velit. Expedita autem molestiae. Iusto magni modi.", + "description": "Dolores veniam autem. Inventore ex voluptate. Voluptatem in modi.", + "severity": "high", + "precedence": 792, "identifier": { - "href": "http://jacobs.example/virgil.nikolaus", - "label": "Sagroth" + "href": "http://sawayn.test/marcellus.watsica", + "label": "Elboron" }, "references": [ { - "href": "http://heaney.example/daine.watsica", - "label": "Ivy Goodenough" + "href": "http://kohler.example/nguyet.kilback", + "label": "Marach" }, { - "href": "http://feeney-little.example/hortense.jenkins", - "label": "Pengolodh" + "href": "http://davis-raynor.test/sidney", + "label": "Elfhelm" }, { - "href": "http://konopelski.test/katelynn", - "label": "Maedhros" + "href": "http://cassin-prosacco.example/rich", + "label": "Tar-Ciryatan" }, { - "href": "http://kihn.test/demarcus_spencer", - "label": "Dáin Ironfoot" + "href": "http://bartell.example/carlos", + "label": "Halfred Greenhand" }, { - "href": "http://gulgowski.test/herb.predovic", - "label": "Tar-Ancalimë" + "href": "http://dubuque-walker.example/levi.bayer", + "label": "Tar-Meneldur" } ], "value_checks": null, @@ -4847,37 +4838,37 @@ "remediation_issue_id": null }, { - "id": "e5a87301-b5ff-4ba8-89b3-d603058a22b0", - "ref_id": "xccdf_org.ssgproject.content_rule_92c244ad869f01abc1dc7c4372768fce", - "title": "Qui dolorum sapiente sequi.", - "rationale": "Exercitationem ullam incidunt. Consectetur eos consequuntur. Aliquid eos modi.", - "description": "Quisquam nulla sit. Aut sit dolores. Et sit cum.", - "severity": "high", - "precedence": 2878, + "id": "e040268a-7a8a-4f18-95ec-28306d637d73", + "ref_id": "xccdf_org.ssgproject.content_rule_1c592293c343819d17451425cef5756a", + "title": "Perferendis in ut est.", + "rationale": "Vero neque et. Ut doloribus iusto. Sint quo perferendis.", + "description": "Provident qui amet. Quod et ipsum. Necessitatibus nihil laboriosam.", + "severity": "medium", + "precedence": 992, "identifier": { - "href": "http://bogan.test/julienne.ruecker", - "label": "Fengel" + "href": "http://becker.example/armando.mclaughlin", + "label": "Aranarth" }, "references": [ { - "href": "http://heaney-tremblay.test/dwight", - "label": "Hending" + "href": "http://champlin-emmerich.test/kiesha", + "label": "Curufin" }, { - "href": "http://shanahan.test/lewis.macejkovic", - "label": "Írimon" + "href": "http://veum-nienow.test/jose.funk", + "label": "Gimilkhâd" }, { - "href": "http://botsford.test/ramiro.oconnell", - "label": "Avranc" + "href": "http://roob-swaniawski.test/osvaldo_oreilly", + "label": "Imrazôr" }, { - "href": "http://kirlin-ferry.example/chrystal", - "label": "Seredic Brandybuck" + "href": "http://lubowitz-schaden.example/ramiro.rolfson", + "label": "Gandalf" }, { - "href": "http://cummings-mclaughlin.example/nilsa_koelpin", - "label": "Dori" + "href": "http://tromp-nolan.test/erin_raynor", + "label": "Huor" } ], "value_checks": null, @@ -4886,37 +4877,37 @@ "remediation_issue_id": null }, { - "id": "4d3ae715-bae6-4a33-9ba4-efd554f10fb8", - "ref_id": "xccdf_org.ssgproject.content_rule_c855d31959b72435385cbeabfb0e43ed", - "title": "Doloremque autem fugit temporibus.", - "rationale": "Iure recusandae ut. Quo accusantium sit. Laboriosam quod ut.", - "description": "Voluptatibus ut fugit. Facilis quis cumque. Dolor culpa praesentium.", - "severity": "medium", - "precedence": 3052, + "id": "61624744-677b-4d0d-afe4-933fbaacff06", + "ref_id": "xccdf_org.ssgproject.content_rule_1448ce03ad1861a4c29c8cd731a13c64", + "title": "Eligendi quos aperiam quaerat.", + "rationale": "Et labore voluptates. Vel aut inventore. Ut est vitae.", + "description": "Esse et quia. Vitae est necessitatibus. Quia est dolor.", + "severity": "high", + "precedence": 2235, "identifier": { - "href": "http://hyatt.test/margit", - "label": "Ferumbras Took" + "href": "http://welch.test/ralph_halvorson", + "label": "Halmir" }, "references": [ { - "href": "http://friesen.test/rosie", - "label": "Ragnor" + "href": "http://haley-strosin.example/quinton", + "label": "Huan" }, { - "href": "http://bednar.test/alda", - "label": "Faramir Took" + "href": "http://casper-rutherford.example/penny", + "label": "Walda" }, { - "href": "http://keebler.example/ezequiel", - "label": "Adrahil" + "href": "http://boyle-cartwright.test/jamie.schmitt", + "label": "Gothmog" }, { - "href": "http://collins-runolfsdottir.test/chung", - "label": "Lenwë" + "href": "http://schoen.test/bert", + "label": "Nar" }, { - "href": "http://bergstrom.test/nathaniel.shanahan", - "label": "Ungoliant" + "href": "http://prosacco-schmidt.test/jerome", + "label": "Anairë" } ], "value_checks": null, @@ -4925,37 +4916,37 @@ "remediation_issue_id": null }, { - "id": "4a0507fb-577e-4704-be40-5bee9c5e82bc", - "ref_id": "xccdf_org.ssgproject.content_rule_6f29cf0ff2b33d34d840573c5886f26f", - "title": "Nesciunt exercitationem quisquam vero.", - "rationale": "Et repellat praesentium. Explicabo quasi expedita. Minima ipsa architecto.", - "description": "Architecto accusamus magnam. Nam aspernatur sunt. Eius quasi eaque.", - "severity": "high", - "precedence": 3430, + "id": "e825d67e-1b03-40fb-9554-d867b7b64a0d", + "ref_id": "xccdf_org.ssgproject.content_rule_775f9abd3bd6310c703512c57f8b1e25", + "title": "Omnis sit et voluptas.", + "rationale": "Iure eum amet. Est quisquam nulla. Eos nam in.", + "description": "Et eius at. Eum labore consectetur. Nulla voluptates itaque.", + "severity": "low", + "precedence": 2320, "identifier": { - "href": "http://conroy.test/tamie.wunsch", - "label": "Déorwine" + "href": "http://leffler.test/ernie_terry", + "label": "Fingon" }, "references": [ { - "href": "http://orn.test/gaston", - "label": "Haleth" + "href": "http://tillman-gottlieb.example/jeanetta.torphy", + "label": "Gerontius Took" }, { - "href": "http://davis.example/chrissy.volkman", - "label": "Rorimac Brandybuck" + "href": "http://parker-kovacek.test/gary", + "label": "Grór" }, { - "href": "http://homenick-hirthe.test/miki", - "label": "Tindómiel" + "href": "http://casper.test/tamala", + "label": "Arminas" }, { - "href": "http://fahey.test/saul", - "label": "Bilbo Baggins" + "href": "http://mann-schumm.test/hosea", + "label": "Arassuil" }, { - "href": "http://kutch.example/shanell", - "label": "Daisy Gardner" + "href": "http://herman-koch.test/carrol.sporer", + "label": "Ungoliant" } ], "value_checks": null, @@ -4964,37 +4955,37 @@ "remediation_issue_id": null }, { - "id": "9cea9bf1-800f-485d-9107-84ef61862a72", - "ref_id": "xccdf_org.ssgproject.content_rule_2b7a5d9b9c4cdd95fb8d09f17ea2e9ba", - "title": "Et quibusdam ducimus odit.", - "rationale": "Nemo ipsum porro. Nihil ut commodi. Rerum ex nesciunt.", - "description": "Eum at quis. Et aut dignissimos. Rerum corrupti sit.", + "id": "9986ae2c-1398-49c4-86e2-ac121bbfe55e", + "ref_id": "xccdf_org.ssgproject.content_rule_5b1d53e432cf62cab859fc2767b59dee", + "title": "Ea rerum dolores a.", + "rationale": "In animi voluptatem. Voluptatibus quo voluptatum. Libero tenetur qui.", + "description": "Suscipit esse est. Iste dolore dolores. Laudantium beatae omnis.", "severity": "medium", - "precedence": 3717, + "precedence": 2401, "identifier": { - "href": "http://jakubowski.example/lili.mueller", - "label": "Nazgûl" + "href": "http://anderson.test/annita", + "label": "Peregrin Took" }, "references": [ { - "href": "http://kshlerin.test/geralyn", - "label": "Malach" + "href": "http://gutkowski.example/margrett_beier", + "label": "Erien" }, { - "href": "http://goyette-pfeffer.test/millie.cormier", - "label": "Treebeard" + "href": "http://lowe.example/bryant", + "label": "Isilmë" }, { - "href": "http://herman.example/shandra_dicki", - "label": "Amandil" + "href": "http://smitham.example/reinaldo", + "label": "Meriadoc Brandybuck" }, { - "href": "http://hintz.example/derick", - "label": "Vardilmë" + "href": "http://weber.example/jalisa_murphy", + "label": "Otho Sackville-Baggins" }, { - "href": "http://powlowski.example/lane", - "label": "Aragost" + "href": "http://nienow.test/lyndon", + "label": "Borlach" } ], "value_checks": null, @@ -5003,37 +4994,37 @@ "remediation_issue_id": null }, { - "id": "e0abeb10-4e33-47c8-b725-ba5c809124b2", - "ref_id": "xccdf_org.ssgproject.content_rule_1edd6546a13b658ef6ede12110553df9", - "title": "Quis aut repellendus aut.", - "rationale": "Eos qui corporis. Et qui magnam. Sapiente vel molestiae.", - "description": "Eveniet quia et. Repellendus at repellat. Omnis ea dolorem.", - "severity": "high", - "precedence": 3997, + "id": "b45ba698-c623-45ed-8398-12cb5b276511", + "ref_id": "xccdf_org.ssgproject.content_rule_5504f3c8a38f9a63d2a6d9377897672d", + "title": "Et incidunt consequatur quibusdam.", + "rationale": "Eius impedit et. Dolores necessitatibus aut. Dolorem sed est.", + "description": "Natus amet et. Fuga placeat nostrum. Laborum aspernatur cum.", + "severity": "medium", + "precedence": 2466, "identifier": { - "href": "http://wilkinson.example/galen", - "label": "Bucca of the Marish" + "href": "http://lehner-grimes.test/tegan_leannon", + "label": "Meneldor" }, "references": [ { - "href": "http://langworth.example/dawn", - "label": "Wiseman Gamwich" + "href": "http://abbott.test/delmer", + "label": "Vëantur" }, { - "href": "http://pollich.test/jaime.sipes", - "label": "Gorbulas Brandybuck" + "href": "http://baumbach-larson.test/weldon.gleason", + "label": "Dairuin" }, { - "href": "http://mckenzie.example/clay_jakubowski", - "label": "Dernhelm" + "href": "http://oreilly.test/candace", + "label": "Emeldir" }, { - "href": "http://rippin.test/ernie", - "label": "Aredhel" + "href": "http://strosin-champlin.example/willow.bechtelar", + "label": "Ferumbras Took" }, { - "href": "http://hilll.example/lucille_carter", - "label": "Hamfast Gardner" + "href": "http://dibbert.test/billy_glover", + "label": "Tarondor" } ], "value_checks": null, @@ -5042,37 +5033,37 @@ "remediation_issue_id": null }, { - "id": "e15ad6e3-7d64-4fe7-8c31-b0b7dee44dfe", - "ref_id": "xccdf_org.ssgproject.content_rule_6109eaebbdd7d02049ec6f2f8de19897", - "title": "Assumenda necessitatibus explicabo cumque.", - "rationale": "Fugit quis cum. Iure aspernatur fugiat. Possimus et quia.", - "description": "Quidem unde sit. Recusandae neque id. Doloribus rerum modi.", - "severity": "high", - "precedence": 4838, + "id": "ab4b1225-226f-4d19-9dbd-6e1272c8ed14", + "ref_id": "xccdf_org.ssgproject.content_rule_3422507fe69f8d568889678dd566d769", + "title": "Voluptatem deleniti pariatur corrupti.", + "rationale": "Aliquid praesentium in. Laborum quas recusandae. Eligendi earum autem.", + "description": "Ipsam quis eum. Eligendi molestias aut. Ab velit quos.", + "severity": "low", + "precedence": 3215, "identifier": { - "href": "http://gusikowski.test/efrain_price", - "label": "Hallacar" + "href": "http://grimes-mcglynn.test/jospeh", + "label": "Willie Banks" }, "references": [ { - "href": "http://johns-skiles.test/jarrett", - "label": "Fréaláf" + "href": "http://vonrueden.example/carlos", + "label": "Beregar" }, { - "href": "http://brekke-wunsch.test/doloris.greenholt", - "label": "Aldor" + "href": "http://hoeger.test/macy", + "label": "Handir" }, { - "href": "http://reinger.test/belinda", - "label": "Targon" + "href": "http://bernier.test/taryn", + "label": "Menegilda Goold" }, { - "href": "http://emmerich-boehm.test/kathrin.lynch", - "label": "Ulrad" + "href": "http://bauch.example/sherill", + "label": "Imrazôr" }, { - "href": "http://ruecker.example/korey", - "label": "Indis" + "href": "http://mccullough.test/trey.greenholt", + "label": "Hyarmendacil" } ], "value_checks": null, @@ -5088,9 +5079,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/d3dd37da-1179-4a01-91dc-be4889cbe315/profiles/4d0a0f27-e63a-4165-ad83-a3424364d76e/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/d3dd37da-1179-4a01-91dc-be4889cbe315/profiles/4d0a0f27-e63a-4165-ad83-a3424364d76e/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/d3dd37da-1179-4a01-91dc-be4889cbe315/profiles/4d0a0f27-e63a-4165-ad83-a3424364d76e/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/988c5a6c-d94c-4133-ad01-1490ad7771cc/profiles/e988550d-a92c-47c2-889d-5fe99b105be0/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/988c5a6c-d94c-4133-ad01-1490ad7771cc/profiles/e988550d-a92c-47c2-889d-5fe99b105be0/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/988c5a6c-d94c-4133-ad01-1490ad7771cc/profiles/e988550d-a92c-47c2-889d-5fe99b105be0/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -5206,37 +5197,37 @@ "Returns a Rule": { "value": { "data": { - "id": "d636dc41-fb81-41b9-93b7-f52b0260417f", - "ref_id": "xccdf_org.ssgproject.content_rule_17fb001daf8927345af66ad58dc02779", - "title": "Similique harum cupiditate non.", - "rationale": "Tempore dolor facilis. Vitae aut veniam. Ut ipsam ut.", - "description": "Est ad accusamus. Occaecati beatae cupiditate. Dolorem illo enim.", + "id": "27b65458-0e91-487d-896a-a96a61522d29", + "ref_id": "xccdf_org.ssgproject.content_rule_f2c5ae71e6332a6794e0fba07fff6b5d", + "title": "Dignissimos nemo occaecati accusamus.", + "rationale": "Hic asperiores vero. Reiciendis modi quia. Neque debitis odit.", + "description": "Iure dolorem sunt. Voluptas sed quam. Labore eius enim.", "severity": "low", - "precedence": 9155, + "precedence": 8647, "identifier": { - "href": "http://hammes-jerde.example/candyce_davis", - "label": "Artamir" + "href": "http://baumbach.test/fernande_kuvalis", + "label": "Finduilas" }, "references": [ { - "href": "http://labadie.example/edmond.kuvalis", - "label": "Irolas" + "href": "http://gibson.example/dick", + "label": "Zamîn" }, { - "href": "http://gulgowski.example/edison.kshlerin", - "label": "Beechbone" + "href": "http://wuckert.example/gene", + "label": "Hirwen" }, { - "href": "http://cormier-kautzer.test/chance.schulist", - "label": "Peregrin Took" + "href": "http://roberts.example/georgina_treutel", + "label": "Beldis" }, { - "href": "http://tillman.test/juli", - "label": "Bifur" + "href": "http://dickens.example/lin.schmeler", + "label": "Hobson" }, { - "href": "http://hartmann.test/laverne.feil", - "label": "Mimosa Bunce" + "href": "http://daniel-schulist.example/jack", + "label": "Orophin" } ], "value_checks": null, @@ -5273,7 +5264,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 386ee691-410b-4470-9c70-1ac1620d0805" + "V2::Rule not found with ID 0984357c-2c06-4ee8-bd73-4ac96a67a9c3" ] }, "summary": "", @@ -5390,37 +5381,37 @@ "value": { "data": [ { - "id": "8babc3df-f927-4776-84b0-78bcdc82f02b", - "ref_id": "xccdf_org.ssgproject.content_rule_511b0c529a876aa61c2d5f60774ed733", - "title": "Ab doloremque velit aut.", - "rationale": "Qui non et. Vitae distinctio sapiente. Aliquid odit itaque.", - "description": "Placeat quas recusandae. Expedita id temporibus. Eius at illo.", + "id": "668ebe51-f7f4-4160-bbdc-33aa827ed47d", + "ref_id": "xccdf_org.ssgproject.content_rule_b44b3ee4bae570e5f13749c1b3f197e3", + "title": "Voluptate et incidunt nulla.", + "rationale": "Aliquam est tempora. Temporibus qui rerum. Corrupti quae enim.", + "description": "Saepe dicta aut. Maiores vero sit. Ea nisi nulla.", "severity": "medium", - "precedence": 4527, + "precedence": 4979, "identifier": { - "href": "http://walter.test/edwardo_mante", - "label": "Elulindo" + "href": "http://collier-bergstrom.test/gary", + "label": "Scatha" }, "references": [ { - "href": "http://price-cummings.test/percy", - "label": "Nolondil" + "href": "http://thiel.example/kaci", + "label": "Inziladûn" }, { - "href": "http://dietrich.test/paula.price", - "label": "Basso Boffin" + "href": "http://homenick.example/mariette", + "label": "Telemnar" }, { - "href": "http://maggio.test/karl", - "label": "Lotho Sackville-Baggins" + "href": "http://haag.example/dann.lehner", + "label": "Bard" }, { - "href": "http://christiansen.example/marilyn.boehm", - "label": "Aulendil" + "href": "http://stiedemann.example/melynda", + "label": "Finbor" }, { - "href": "http://boyer.example/fidel_crona", - "label": "Larnach" + "href": "http://brekke.test/arlie.auer", + "label": "Gimilzagar" } ], "value_checks": null, @@ -5434,8 +5425,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/909fbc3c-6e3a-4005-914a-75b9f83ca5f2/tailorings/83ca1a80-d56a-4250-be45-9062a918d588/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/909fbc3c-6e3a-4005-914a-75b9f83ca5f2/tailorings/83ca1a80-d56a-4250-be45-9062a918d588/rules?limit=10&offset=0" + "first": "/api/compliance/v2/policies/d79dd5e3-c342-4eea-ba20-6c29fc973207/tailorings/e27454b3-5d4d-469a-ba73-a9a649e757fc/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/d79dd5e3-c342-4eea-ba20-6c29fc973207/tailorings/e27454b3-5d4d-469a-ba73-a9a649e757fc/rules?limit=10&offset=0" } }, "summary": "", @@ -5445,37 +5436,37 @@ "value": { "data": [ { - "id": "80b91ae2-bfad-4cfc-a0cf-2d500d783c04", - "ref_id": "xccdf_org.ssgproject.content_rule_535a2f2c1c0df8a3f769748a9ffd2a1b", - "title": "Laborum et dicta molestias.", - "rationale": "Porro rerum fugit. Enim eos at. Atque velit blanditiis.", - "description": "Incidunt rerum ullam. Commodi rerum reiciendis. Architecto sit nihil.", - "severity": "high", - "precedence": 137, + "id": "1a67b2b6-195d-4bfe-8257-dd21d3460696", + "ref_id": "xccdf_org.ssgproject.content_rule_70b86850fd10e694500fd37dd1ed2282", + "title": "In culpa et officia.", + "rationale": "Repellendus omnis sed. Consequuntur ea et. Et cum a.", + "description": "Ex pariatur enim. Est qui iste. Voluptas repudiandae tempora.", + "severity": "low", + "precedence": 8955, "identifier": { - "href": "http://schiller-champlin.test/reginald", - "label": "Gelmir" + "href": "http://nikolaus.test/hank.walsh", + "label": "Eärwen" }, "references": [ { - "href": "http://huel-weimann.example/lakenya", - "label": "Bregolas" + "href": "http://blanda-paucek.example/alexis", + "label": "Freca" }, { - "href": "http://wiegand.test/fausto.lowe", - "label": "Mrs. Maggot" + "href": "http://gutkowski-rogahn.example/terence", + "label": "Nimloth of Doriath" }, { - "href": "http://reichel.example/elroy.stiedemann", - "label": "Grór" + "href": "http://cassin.example/caryl", + "label": "Robin Smallburrow" }, { - "href": "http://will.test/teodoro.weber", - "label": "Smaug" + "href": "http://schumm.test/karan_windler", + "label": "Malvegil" }, { - "href": "http://yost.example/keren.fisher", - "label": "Léod" + "href": "http://hartmann-greenholt.test/tad", + "label": "Tarciryan" } ], "value_checks": null, @@ -5490,8 +5481,8 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/policies/84fd2cf5-ee93-4a10-aa30-c2c7a7ab04f9/tailorings/db802f34-d196-4e56-819a-b2412c73915f/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/policies/84fd2cf5-ee93-4a10-aa30-c2c7a7ab04f9/tailorings/db802f34-d196-4e56-819a-b2412c73915f/rules?limit=10&offset=0&sort_by=precedence" + "first": "/api/compliance/v2/policies/48fca9a5-6513-4944-951d-d00bc655a2f2/tailorings/2804086d-a311-483d-96c9-30e9cc174edd/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/policies/48fca9a5-6513-4944-951d-d00bc655a2f2/tailorings/2804086d-a311-483d-96c9-30e9cc174edd/rules?limit=10&offset=0&sort_by=precedence" } }, "summary": "", @@ -5598,37 +5589,37 @@ "value": { "data": [ { - "id": "02aa12f5-1284-4917-8066-b779f51ac602", - "ref_id": "xccdf_org.ssgproject.content_rule_d43b5e18058dc836ec154f714ab8057e", - "title": "Sint modi occaecati quam.", - "rationale": "Fugit quis debitis. Aut nam porro. Aut consequatur dolorem.", - "description": "Dolor quia aut. Ducimus illum quia. Perspiciatis quae amet.", + "id": "145c4970-74f5-4816-9b30-2bae8d2249db", + "ref_id": "xccdf_org.ssgproject.content_rule_5205de3946b15430d7abec943e9323bf", + "title": "Dolor sed occaecati sint.", + "rationale": "Ea at qui. Accusamus nisi qui. Facilis cupiditate laudantium.", + "description": "Excepturi a vitae. Et odio in. Laborum sit quia.", "severity": "medium", - "precedence": 2277, + "precedence": 684, "identifier": { - "href": "http://kuphal.example/nakita", - "label": "Herumor" + "href": "http://boyle.example/daphne_herzog", + "label": "Hatholdir" }, "references": [ { - "href": "http://thompson.example/jason", - "label": "Angelica Baggins" + "href": "http://jacobson.test/julius", + "label": "Poppy Chubb-Baggins" }, { - "href": "http://keeling.example/roosevelt", - "label": "Zimrahin" + "href": "http://pacocha.test/debra_bauch", + "label": "Forthwini" }, { - "href": "http://price.example/art.mcglynn", - "label": "Ancalagon" + "href": "http://hills.example/phyllis.hegmann", + "label": "Soronto" }, { - "href": "http://langworth-kuhn.test/devorah_kautzer", - "label": "Falco Chubb-Baggins" + "href": "http://blanda-emmerich.test/irvin", + "label": "Orodreth" }, { - "href": "http://ritchie.example/ulysses.becker", - "label": "Frár" + "href": "http://rosenbaum-beahan.test/mickey.hartmann", + "label": "Golfimbul" } ], "value_checks": null, @@ -5636,37 +5627,37 @@ "type": "rule" }, { - "id": "0d0997bb-77fd-40e4-bf9b-d4eddf39bbaa", - "ref_id": "xccdf_org.ssgproject.content_rule_fa23f0d7f6838eb7b7288708b277f308", - "title": "Enim recusandae at perspiciatis.", - "rationale": "Et error aliquam. Expedita sit nulla. Nemo quis quo.", - "description": "Commodi rem voluptatibus. Necessitatibus tenetur sunt. Enim aut fugiat.", + "id": "1ff0dff9-5016-4c63-a4fa-2e7034373a5e", + "ref_id": "xccdf_org.ssgproject.content_rule_9a78153a255085cb1aef3f2bfd82e549", + "title": "Iusto repudiandae sit ducimus.", + "rationale": "Iusto est reprehenderit. Asperiores eos sit. Quisquam nemo omnis.", + "description": "Aut fuga ad. Distinctio rerum eos. Numquam cum et.", "severity": "low", - "precedence": 2235, + "precedence": 1715, "identifier": { - "href": "http://batz.example/numbers", - "label": "Elendur" + "href": "http://jacobson-koch.example/ji_wolff", + "label": "Imrahil" }, "references": [ { - "href": "http://walker.example/russel", - "label": "Tosto Boffin" + "href": "http://doyle.test/james.mclaughlin", + "label": "Melian" }, { - "href": "http://watsica.example/tammera.rempel", - "label": "Minardil" + "href": "http://zulauf.test/marni_robel", + "label": "Tarondor" }, { - "href": "http://stokes.example/blair_johnston", - "label": "Aravorn" + "href": "http://rau.example/cruz.hamill", + "label": "Robin Smallburrow" }, { - "href": "http://kihn.test/milton.grant", - "label": "Finbor" + "href": "http://oberbrunner.example/maritza", + "label": "Mirabella Took" }, { - "href": "http://morissette.test/gene_senger", - "label": "Borthand" + "href": "http://stoltenberg.example/sophie", + "label": "Herugar Bolger" } ], "value_checks": null, @@ -5674,37 +5665,37 @@ "type": "rule" }, { - "id": "11f11fcb-019b-4536-ba17-9a5055069d61", - "ref_id": "xccdf_org.ssgproject.content_rule_15727d481805a46a0cae7bce1e5c045f", - "title": "Magni animi sunt ea.", - "rationale": "Incidunt nihil est. Accusantium delectus et. Quod necessitatibus dolorem.", - "description": "Qui sapiente eum. Cupiditate corrupti dicta. Asperiores consequatur consectetur.", - "severity": "medium", - "precedence": 5750, + "id": "207473b6-505b-4b69-8909-6873f1af2ee3", + "ref_id": "xccdf_org.ssgproject.content_rule_fa0bdb33d5758024127be4bc5b1857f9", + "title": "Hic aut sint cupiditate.", + "rationale": "Cupiditate facere sit. Itaque ea velit. Et sequi saepe.", + "description": "Optio ipsam repellendus. Repellendus ut accusantium. Quis accusantium et.", + "severity": "high", + "precedence": 8498, "identifier": { - "href": "http://langworth.test/arnulfo_konopelski", - "label": "Tar-Calmacil" + "href": "http://gleichner.example/alva", + "label": "Herion" }, "references": [ { - "href": "http://damore-sipes.example/keiko_sanford", - "label": "Bregolas" + "href": "http://flatley.test/collin", + "label": "Eorl" }, { - "href": "http://barton.test/carlo_morissette", - "label": "Arciryas" + "href": "http://schultz.test/juan.walsh", + "label": "Gormadoc Brandybuck" }, { - "href": "http://cruickshank-kerluke.test/glynda_runolfsdottir", - "label": "Ailinel" + "href": "http://keebler.test/sean", + "label": "Bilbo Gardner" }, { - "href": "http://oconner-doyle.test/tyesha_mueller", - "label": "Forweg" + "href": "http://purdy.example/mandy", + "label": "Orgulas Brandybuck" }, { - "href": "http://okon.example/laverna_wolf", - "label": "Vardilmë" + "href": "http://effertz.test/jerome.block", + "label": "Hundad" } ], "value_checks": null, @@ -5712,37 +5703,37 @@ "type": "rule" }, { - "id": "132b5739-7672-4008-a113-e7961c921c34", - "ref_id": "xccdf_org.ssgproject.content_rule_510a905bb03b132d964fd16ebef0d1b1", - "title": "Dolor nobis et maiores.", - "rationale": "Aperiam a expedita. Numquam explicabo sed. Aut praesentium vero.", - "description": "Eveniet explicabo enim. Quasi eos tempore. Totam reiciendis voluptates.", - "severity": "medium", - "precedence": 7091, + "id": "2bd67c81-fa6c-40e8-95fd-64430986fd3a", + "ref_id": "xccdf_org.ssgproject.content_rule_1c61d49f199c29a825583af62e975aee", + "title": "Mollitia ullam voluptas maxime.", + "rationale": "Ut aliquid quas. Architecto saepe dignissimos. Facere fugit ullam.", + "description": "Exercitationem repudiandae eos. Harum quae quo. Amet architecto non.", + "severity": "high", + "precedence": 7536, "identifier": { - "href": "http://larson.example/shayne_schumm", - "label": "Beorn" + "href": "http://muller.test/filiberto", + "label": "Isumbras" }, "references": [ { - "href": "http://little.example/ronny.bergstrom", - "label": "Hirwen" + "href": "http://herzog.example/carry.casper", + "label": "Eofor" }, { - "href": "http://marks-reichel.test/deon.schuster", - "label": "Elendil" + "href": "http://torp-vonrueden.example/reuben.crooks", + "label": "Berúthiel" }, { - "href": "http://bruen.test/benny", - "label": "Tata" + "href": "http://streich-orn.example/gerry.carroll", + "label": "Pippin Gardner" }, { - "href": "http://will.example/gayle_borer", - "label": "Targon" + "href": "http://breitenberg.test/winnifred.ernser", + "label": "Argon" }, { - "href": "http://bednar.test/keven", - "label": "Mrs. Bunce" + "href": "http://littel.example/loyd.quitzon", + "label": "Barach" } ], "value_checks": null, @@ -5750,37 +5741,37 @@ "type": "rule" }, { - "id": "1ce9b822-d7cf-4c96-b606-ef7d09267a9b", - "ref_id": "xccdf_org.ssgproject.content_rule_108a6a92ab0714ddc1ac475aebd79886", - "title": "Dolorem voluptas aut et.", - "rationale": "Iusto et et. Illo veritatis odio. Itaque nihil eos.", - "description": "Et deleniti ipsum. Totam ut nulla. Aut vero et.", - "severity": "medium", - "precedence": 7202, + "id": "4d7bf55f-d8a2-41c8-ab30-4cf4135b00b8", + "ref_id": "xccdf_org.ssgproject.content_rule_ccd272b749ee5da93a7777e86b3d2cfc", + "title": "Earum facilis nobis aut.", + "rationale": "Earum natus dicta. Doloremque ipsam debitis. Vero sed rerum.", + "description": "Sint aut modi. Reiciendis magni quidem. Labore eligendi beatae.", + "severity": "high", + "precedence": 3038, "identifier": { - "href": "http://rogahn.test/tamra.bednar", - "label": "Alfrida of the Yale" + "href": "http://oconnell-parker.test/teddy_parker", + "label": "Isembard Took" }, "references": [ { - "href": "http://braun.test/letitia", - "label": "Cora Goodbody" + "href": "http://rolfson-mosciski.test/arnold", + "label": "Telchar" }, { - "href": "http://mcdermott.test/candis", - "label": "Hatholdir" + "href": "http://hahn.example/franklyn", + "label": "Witch-king" }, { - "href": "http://spinka-oreilly.example/digna", - "label": "Araglas" + "href": "http://walsh.test/kent", + "label": "Gundahad Bolger" }, { - "href": "http://hodkiewicz.test/erik.willms", - "label": "Narmacil" + "href": "http://green.test/erich_wilderman", + "label": "Brodda" }, { - "href": "http://lebsack.example/alvina", - "label": "Golfimbul" + "href": "http://schaden-homenick.example/lamont", + "label": "Erkenbrand" } ], "value_checks": null, @@ -5788,37 +5779,37 @@ "type": "rule" }, { - "id": "1e98a461-7c73-4d9a-8d1a-a90c7a0e39c1", - "ref_id": "xccdf_org.ssgproject.content_rule_466f9daea2ade765ab3dcd5270a54162", - "title": "Aspernatur nihil dicta nobis.", - "rationale": "Doloribus placeat amet. Eum itaque non. Possimus magnam id.", - "description": "Dolorem itaque fuga. In quis dolores. Voluptate qui esse.", + "id": "5896dd84-d125-4200-ad62-40b8709ef07f", + "ref_id": "xccdf_org.ssgproject.content_rule_7f219a3863c213089e69f754ac96cbf8", + "title": "Ut et quod non.", + "rationale": "Vitae non totam. Sed dolorem ut. Nihil quia placeat.", + "description": "Repellendus aspernatur error. Sint dolor molestiae. Doloribus voluptatibus enim.", "severity": "low", - "precedence": 8495, + "precedence": 1937, "identifier": { - "href": "http://zemlak.test/vicente_johnson", - "label": "Goldilocks Gardner" + "href": "http://kirlin.example/dewitt", + "label": "Beregar" }, "references": [ { - "href": "http://herman-denesik.example/justin_considine", - "label": "Araglas" + "href": "http://shields.example/eun", + "label": "Harding of the Hill" }, { - "href": "http://toy-rogahn.test/waldo.luettgen", - "label": "Calimehtar" + "href": "http://waters-schulist.example/raphael_mitchell", + "label": "Nár" }, { - "href": "http://macejkovic.example/samuel", - "label": "Ulbar" + "href": "http://kirlin.test/eloisa_fisher", + "label": "Forlong" }, { - "href": "http://dach-witting.test/yong", - "label": "Éomund" + "href": "http://donnelly.test/melodie.paucek", + "label": "Frodo Gardner" }, { - "href": "http://bayer-kihn.example/elli", - "label": "Gilraen" + "href": "http://pollich.test/esteban.schulist", + "label": "Belba Baggins" } ], "value_checks": null, @@ -5826,37 +5817,37 @@ "type": "rule" }, { - "id": "2794e9c2-db30-42a6-9dcb-e6c37c90b87c", - "ref_id": "xccdf_org.ssgproject.content_rule_2ca8e3569e813cf90e06fa63aa7e43f6", - "title": "Incidunt nihil corrupti sunt.", - "rationale": "Saepe recusandae velit. Aut labore tempore. Unde minima nam.", - "description": "Inventore nostrum harum. Soluta omnis eius. Iusto ipsum quis.", - "severity": "low", - "precedence": 6111, + "id": "6b4e21e5-33cb-4362-83fd-0593e50202ef", + "ref_id": "xccdf_org.ssgproject.content_rule_2b9ae9cd2bae51cc913e48b77e8e0e4c", + "title": "Explicabo neque sint ut.", + "rationale": "Suscipit ratione consequatur. Non aut est. Enim vel qui.", + "description": "Fugiat esse repudiandae. Ut libero ducimus. Voluptatem et rerum.", + "severity": "high", + "precedence": 9519, "identifier": { - "href": "http://dach.example/brittaney", - "label": "Aratan" + "href": "http://turcotte-schroeder.test/stewart", + "label": "Dora Baggins" }, "references": [ { - "href": "http://beatty.example/retha.marks", - "label": "Narvi" + "href": "http://rosenbaum.test/annabel", + "label": "Glóin" }, { - "href": "http://cruickshank-ferry.test/tameika.feeney", - "label": "Frerin" + "href": "http://luettgen.test/glynis_satterfield", + "label": "Rían" }, { - "href": "http://hahn-bergstrom.test/alane", - "label": "Ted Sandyman" + "href": "http://batz.test/anthony_raynor", + "label": "Almáriel" }, { - "href": "http://murray-rau.example/rolland", - "label": "Grithnir" + "href": "http://altenwerth.test/merri", + "label": "Isilmë" }, { - "href": "http://macejkovic-hamill.test/robin", - "label": "Marigold Gamgee" + "href": "http://treutel-medhurst.test/jerrod.gerlach", + "label": "Eärnur" } ], "value_checks": null, @@ -5864,37 +5855,37 @@ "type": "rule" }, { - "id": "307dfaf9-8fb9-4906-986f-cde183d86836", - "ref_id": "xccdf_org.ssgproject.content_rule_246b4e1ab9e92e32579333caaf818b84", - "title": "Rerum corporis optio sunt.", - "rationale": "Et recusandae iusto. Id nisi et. Dolores occaecati qui.", - "description": "Ea pariatur et. Nisi quia eligendi. Sunt fugiat numquam.", + "id": "6ec4870e-1144-4e52-a5db-a9e4dead3816", + "ref_id": "xccdf_org.ssgproject.content_rule_e4811e537cdc5119c1dcc3648a9831e3", + "title": "Eligendi veniam est alias.", + "rationale": "A fuga est. Deleniti quam sit. Assumenda corporis et.", + "description": "Aut et et. Harum omnis occaecati. Reprehenderit excepturi nesciunt.", "severity": "low", - "precedence": 6662, + "precedence": 6067, "identifier": { - "href": "http://rohan-upton.test/orville.jacobson", - "label": "Orgulas Brandybuck" + "href": "http://schmeler.test/leilani", + "label": "Númendil" }, "references": [ { - "href": "http://hilpert.test/angelika", - "label": "Calimmacil" + "href": "http://gusikowski.example/sebastian", + "label": "Fosco Baggins" }, { - "href": "http://thompson-crona.test/leon.harber", - "label": "Belegor" + "href": "http://lockman.test/willis", + "label": "Uldor" }, { - "href": "http://lebsack.example/carmine_murray", - "label": "Daisy Gardner" + "href": "http://streich.example/benedict_mcdermott", + "label": "Adam Hornblower" }, { - "href": "http://rohan.example/rodney", - "label": "Atanatar" + "href": "http://tromp-okeefe.example/jenny", + "label": "Ingwë" }, { - "href": "http://bogan.example/cortez", - "label": "Morwen" + "href": "http://stehr-kshlerin.test/lanita", + "label": "Vorondil" } ], "value_checks": null, @@ -5902,37 +5893,37 @@ "type": "rule" }, { - "id": "3cbbd2a3-1473-4543-913d-776403d1f3e7", - "ref_id": "xccdf_org.ssgproject.content_rule_2b28f8acf3c0479b655ca68818070787", - "title": "Aut vel voluptatem cupiditate.", - "rationale": "Soluta necessitatibus provident. Qui occaecati consequuntur. Consequuntur quaerat blanditiis.", - "description": "Aperiam consequatur optio. Amet magnam temporibus. Tenetur a quae.", + "id": "7f69856a-6d5b-4823-a716-262506cc646a", + "ref_id": "xccdf_org.ssgproject.content_rule_4d45eb98e6652d1ad9b118af991e9f99", + "title": "Sed autem odit vero.", + "rationale": "Et qui quos. Delectus voluptatibus ut. Similique tenetur qui.", + "description": "Incidunt velit quidem. Dicta est vitae. In incidunt est.", "severity": "high", - "precedence": 8499, + "precedence": 4740, "identifier": { - "href": "http://huels.example/meghan_trantow", - "label": "Tom Bombadil" + "href": "http://bechtelar-gleason.test/genevie", + "label": "Aegnor" }, "references": [ { - "href": "http://ziemann.example/julio", - "label": "Nora Bolger" + "href": "http://greenfelder-hansen.test/walton.emard", + "label": "Morwë" }, { - "href": "http://graham-stracke.test/ellamae", - "label": "Fréaláf" + "href": "http://hayes-aufderhar.example/alonso", + "label": "Khamûl" }, { - "href": "http://runolfsson.example/estelle.kuvalis", - "label": "Nerdanel" + "href": "http://hauck.example/luigi.tillman", + "label": "Bain" }, { - "href": "http://bogan-zulauf.test/donnetta_bergnaum", - "label": "Mimosa Bunce" + "href": "http://wilderman.example/lamar.halvorson", + "label": "Hugo Bracegirdle" }, { - "href": "http://jerde-deckow.test/carman", - "label": "Rose Gardner" + "href": "http://hills.example/billy", + "label": "Marach" } ], "value_checks": null, @@ -5940,37 +5931,37 @@ "type": "rule" }, { - "id": "4fb519a3-0980-4e6a-90f3-203c4e4f6f87", - "ref_id": "xccdf_org.ssgproject.content_rule_9cdace0c5750bccf492bd98664b67a14", - "title": "Harum nemo dolorem aut.", - "rationale": "Aut qui ipsum. Qui iure ea. Itaque est rerum.", - "description": "Iusto autem amet. Ex voluptates placeat. Accusantium laborum vitae.", + "id": "90a26d8a-df32-4be2-b66a-9298ab13e02e", + "ref_id": "xccdf_org.ssgproject.content_rule_7219ab172dee87640fc1736f3dfb9698", + "title": "Et exercitationem ut suscipit.", + "rationale": "Beatae officiis at. Cum quo consequuntur. Quis ab et.", + "description": "Voluptatibus sapiente rerum. Quisquam iusto possimus. Deserunt ullam sed.", "severity": "low", - "precedence": 962, + "precedence": 9793, "identifier": { - "href": "http://champlin-ratke.example/percy_rice", - "label": "Bruno Bracegirdle" + "href": "http://schneider.test/bo", + "label": "Pimpernel Took" }, "references": [ { - "href": "http://bailey-barrows.test/genia", - "label": "Erling" + "href": "http://sauer.test/delpha_blanda", + "label": "Mentha Brandybuck" }, { - "href": "http://cremin.test/beryl.kovacek", - "label": "Ufthak" + "href": "http://wyman-dooley.example/cedrick", + "label": "Minastan" }, { - "href": "http://rowe.test/andrew", - "label": "Arvegil" + "href": "http://wyman.example/tera", + "label": "Erchirion" }, { - "href": "http://padberg.example/colby_schultz", - "label": "Grithnir" + "href": "http://toy-kuhlman.example/see.stroman", + "label": "Belen" }, { - "href": "http://crooks.example/travis", - "label": "Andwise Roper" + "href": "http://gorczany.test/lady", + "label": "Berylla Boffin" } ], "value_checks": null, @@ -5984,9 +5975,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/6610912f-b34a-471a-9625-6fe0e59b9fd1/tailorings/769a8ae3-cd99-4116-85d7-75cac2856962/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/6610912f-b34a-471a-9625-6fe0e59b9fd1/tailorings/769a8ae3-cd99-4116-85d7-75cac2856962/rules?limit=10&offset=20", - "next": "/api/compliance/v2/policies/6610912f-b34a-471a-9625-6fe0e59b9fd1/tailorings/769a8ae3-cd99-4116-85d7-75cac2856962/rules?limit=10&offset=10" + "first": "/api/compliance/v2/policies/6c5522f1-417f-4b24-8f94-85e52b8f8fb6/tailorings/760f0351-3d7c-48e0-97fa-c3fa35dbfd87/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/6c5522f1-417f-4b24-8f94-85e52b8f8fb6/tailorings/760f0351-3d7c-48e0-97fa-c3fa35dbfd87/rules?limit=10&offset=20", + "next": "/api/compliance/v2/policies/6c5522f1-417f-4b24-8f94-85e52b8f8fb6/tailorings/760f0351-3d7c-48e0-97fa-c3fa35dbfd87/rules?limit=10&offset=10" } }, "summary": "", @@ -6089,37 +6080,37 @@ "Assigns a Rule to a Tailoring": { "value": { "data": { - "id": "685070e5-8624-4151-bd46-6eb98124d6f1", - "ref_id": "xccdf_org.ssgproject.content_rule_0cf45f1c8bc53b3b6e2187dd473157da", - "title": "Voluptas voluptatem autem laborum.", - "rationale": "Sed non earum. Saepe tenetur et. Architecto commodi eveniet.", - "description": "A iure corrupti. Recusandae hic facilis. Corrupti possimus libero.", + "id": "20d8db0d-236b-4d41-92e7-1d763d0542d9", + "ref_id": "xccdf_org.ssgproject.content_rule_c32dd2a76a675bbe893d78db6c69c07f", + "title": "Distinctio ut aut porro.", + "rationale": "Omnis sed ut. Sint culpa optio. Quia iure qui.", + "description": "Rerum aut et. Qui eius dolorem. Itaque doloremque est.", "severity": "medium", - "precedence": 4157, + "precedence": 4549, "identifier": { - "href": "http://gusikowski.test/edward", - "label": "Ar-Zimrathôn" + "href": "http://gleason.test/alejandrina.mraz", + "label": "Wilimar Bolger" }, "references": [ { - "href": "http://borer.example/millie_harber", - "label": "Dora Baggins" + "href": "http://mann.test/dennis", + "label": "Cirion" }, { - "href": "http://ziemann-schoen.test/stefanie_frami", - "label": "Walda" + "href": "http://crooks.test/dan.reynolds", + "label": "Gimilzagar" }, { - "href": "http://kuhic.example/charles", - "label": "Bór" + "href": "http://mitchell-reynolds.test/stephan", + "label": "Amras" }, { - "href": "http://murray-hintz.example/justin", - "label": "Peeping Jack" + "href": "http://glover.test/lucile", + "label": "Lenwë" }, { - "href": "http://gulgowski-hartmann.test/lewis_dickens", - "label": "Pippin Gardner" + "href": "http://connelly.test/monty_muller", + "label": "Erestor" } ], "value_checks": null, @@ -6142,7 +6133,7 @@ "Returns with Not found": { "value": { "errors": [ - "V2::Rule not found with ID ed70f893-8b80-4aff-9c07-92c39f3e9e2e" + "V2::Rule not found with ID 202d4d4f-3d21-410c-a944-49f949ab599d" ] }, "summary": "", @@ -6205,37 +6196,37 @@ "Unassigns a Rule from a Tailoring": { "value": { "data": { - "id": "2f4a1a6b-8055-4a80-9cc4-401eaedf8658", - "ref_id": "xccdf_org.ssgproject.content_rule_5f64df9f5c68ad2cf797650aa5385201", - "title": "Recusandae culpa quasi architecto.", - "rationale": "Dicta rerum ut. Est inventore consequatur. Omnis vel placeat.", - "description": "Amet voluptate qui. Numquam similique tenetur. Et consequuntur nihil.", - "severity": "low", - "precedence": 7495, + "id": "1966f53e-800f-4d25-af3d-dbbf51b5b51e", + "ref_id": "xccdf_org.ssgproject.content_rule_e2e85cbc7d0ab68af273a9a1639e0749", + "title": "Sed enim corporis qui.", + "rationale": "Quia dicta rerum. Porro culpa cum. Tempora velit quae.", + "description": "Odit quia minus. Quia dolore vero. Et ea consequuntur.", + "severity": "medium", + "precedence": 6584, "identifier": { - "href": "http://simonis.example/brandi_bartell", - "label": "Elfhild" + "href": "http://hirthe.example/emile.haley", + "label": "Ceorl" }, "references": [ { - "href": "http://fahey.test/walter.koss", - "label": "Írildë" + "href": "http://heller.example/tomas.bogan", + "label": "Lothíriel" }, { - "href": "http://reichel-volkman.test/norman", - "label": "Frór" + "href": "http://kutch.example/benita", + "label": "Lonely Troll" }, { - "href": "http://kshlerin-grant.example/coletta_cole", - "label": "Hob Gammidge" + "href": "http://okuneva.test/steven", + "label": "Gollum" }, { - "href": "http://gerlach.test/robbie_kshlerin", - "label": "Ivriniel" + "href": "http://schowalter.example/aleisha.waters", + "label": "Witch-king" }, { - "href": "http://wisozk-okuneva.example/liz", - "label": "Araphor" + "href": "http://mertz.test/clint", + "label": "Girion" } ], "value_checks": null, @@ -6258,7 +6249,7 @@ "Description of an error when unassigning a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 76c2ee96-dcdb-4463-a8b0-0ec4f83a204a" + "V2::Rule not found with ID 579a59f6-89ca-4557-bb13-6fbd3355d0e7" ] }, "summary": "", @@ -6353,92 +6344,92 @@ "value": { "data": [ { - "id": "081147d7-4576-4aa0-b5a3-8432bde95fa7", + "id": "0398377c-8f19-4656-b046-6f108ab61a96", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Sed suscipit quam delectus.", - "version": "100.80.48", - "description": "Et libero eum. A impedit rerum. Eveniet incidunt necessitatibus.", + "title": "Sed rerum et hic.", + "version": "100.82.19", + "description": "Consequuntur mollitia ipsa. Architecto assumenda ut. Commodi et ab.", "os_major_version": 7, "type": "security_guide" }, { - "id": "0f11359f-06db-43a9-934f-89b40f521641", + "id": "156d86a6-82ff-4caa-b5bc-113ffea9b95f", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Ut error et qui.", - "version": "100.80.49", - "description": "Sed ut temporibus. Qui quam mollitia. Maxime facilis at.", + "title": "Autem voluptatem ratione atque.", + "version": "100.82.23", + "description": "Quam exercitationem quod. Inventore dolore deserunt. Libero et dignissimos.", "os_major_version": 7, "type": "security_guide" }, { - "id": "0f3f0c36-26ab-49c4-b00f-e9a0173f816c", + "id": "1e898b91-b9f0-42fa-a820-8b28c78dca8d", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Odio deserunt optio minima.", - "version": "100.81.1", - "description": "Earum fugiat est. Esse ut est. Et modi natus.", + "title": "Enim vel veritatis accusantium.", + "version": "100.82.37", + "description": "Autem consequatur quia. Aliquam enim rerum. Illum quia corrupti.", "os_major_version": 7, "type": "security_guide" }, { - "id": "27196dfd-96ce-4630-a8fa-0dd28a413cb9", + "id": "2e85e906-1675-4550-96d4-eaff6ccaf29b", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Autem ipsa accusantium aut.", - "version": "100.81.9", - "description": "Ea dolor fuga. Est qui reiciendis. Voluptatem quo amet.", + "title": "Quia sit est aut.", + "version": "100.82.33", + "description": "Rerum exercitationem non. Placeat neque iste. Sed tempore consequatur.", "os_major_version": 7, "type": "security_guide" }, { - "id": "27d2b24f-85eb-4ab2-a61f-4b9b9016e370", + "id": "2fb06402-593b-4b8b-9447-5514adcd08d3", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Non consequatur dolores ad.", - "version": "100.81.6", - "description": "Est aut consequatur. Aut et deleniti. Impedit at iste.", + "title": "Repellat et natus ducimus.", + "version": "100.82.32", + "description": "Ex aut est. Odit eum deleniti. Laborum dolores commodi.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3498feec-e63c-4a85-9eb5-4cc337e90aee", + "id": "3c73fd0d-3eb8-43b4-9596-85083aadde52", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Fugit et sed rerum.", - "version": "100.81.19", - "description": "Beatae id in. Quidem amet esse. Nemo sunt deleniti.", + "title": "Aut nesciunt porro ea.", + "version": "100.82.29", + "description": "Qui aut quis. Voluptatum ad quam. Nulla sint deleniti.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3f1e27d8-cdb0-4bde-ac12-168a49e41e15", + "id": "4e42e00c-26de-4d48-9c64-6333eb79a255", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Occaecati incidunt vero blanditiis.", - "version": "100.81.3", - "description": "Voluptates sed consequatur. Ut pariatur quo. Quibusdam eius est.", + "title": "Praesentium quisquam explicabo maiores.", + "version": "100.82.36", + "description": "Veritatis blanditiis porro. Officia animi explicabo. Magni aut aut.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3f4f2732-2d6d-47b5-8a6a-1ffd44d732ef", + "id": "53defc51-a8f4-41f4-a4ec-3c09db44acd5", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Reiciendis fuga omnis laudantium.", - "version": "100.81.10", - "description": "Eaque dolor ipsa. Voluptatem minima dolor. Sunt ad dolorum.", + "title": "Possimus nobis ea fuga.", + "version": "100.82.18", + "description": "Ex reprehenderit architecto. Illum qui officia. Vitae odio beatae.", "os_major_version": 7, "type": "security_guide" }, { - "id": "42fe11f2-19ca-485e-927d-3a5bc439912b", + "id": "600cb3e7-0a2a-4af3-8d4a-c082370842f9", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Repellendus eveniet iste quis.", - "version": "100.81.16", - "description": "Voluptatibus distinctio excepturi. Et omnis possimus. Nostrum et fugiat.", + "title": "Unde eveniet eaque natus.", + "version": "100.82.27", + "description": "Vel illo non. Reiciendis neque incidunt. Praesentium dignissimos molestias.", "os_major_version": 7, "type": "security_guide" }, { - "id": "45cf4776-0cfc-4bfc-9d6c-032bf542736b", + "id": "7141247e-d22a-4f90-b605-bad85030fec6", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Placeat sed assumenda quae.", - "version": "100.81.4", - "description": "Aspernatur veritatis blanditiis. Doloribus fuga maxime. Perferendis quisquam nostrum.", + "title": "Est consequuntur ea deleniti.", + "version": "100.82.30", + "description": "Nostrum temporibus voluptate. Repellat at ut. Doloribus fuga occaecati.", "os_major_version": 7, "type": "security_guide" } @@ -6461,92 +6452,92 @@ "value": { "data": [ { - "id": "151b2342-62b0-4fd1-b559-f99055b9d5dd", + "id": "03afd27c-d300-4cdd-b3a2-94d258485ac4", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Ut voluptatem fuga praesentium.", - "version": "100.81.29", - "description": "Ut magnam et. Sed perspiciatis aliquam. Assumenda sunt odit.", + "title": "Laborum qui consequatur dolore.", + "version": "100.83.7", + "description": "Dolorem iusto nobis. Aliquid officiis inventore. Cum nihil voluptas.", "os_major_version": 7, "type": "security_guide" }, { - "id": "1c4c99fd-6049-4693-bf65-a4396e3100df", + "id": "17aa595e-2f51-497d-8659-afdb0bcd1a98", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Molestiae qui a dolorem.", - "version": "100.81.31", - "description": "Modi officiis placeat. Voluptatem aut non. Et ut sed.", + "title": "Sequi error ex rerum.", + "version": "100.82.39", + "description": "Aliquam nihil sapiente. Eius at velit. Numquam et est.", "os_major_version": 7, "type": "security_guide" }, { - "id": "24ce302c-75cb-4076-bac6-6414d12548fc", + "id": "25a51b87-918f-421b-a136-1333292e13d1", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Accusamus ex voluptate tenetur.", - "version": "100.81.41", - "description": "Excepturi consequatur placeat. Excepturi qui rerum. Exercitationem deleniti harum.", + "title": "Sit omnis occaecati ut.", + "version": "100.83.11", + "description": "Autem laboriosam dolorem. Ratione officia impedit. Sit quidem consequatur.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3aef9ed2-230d-4be7-be8e-8100d0314eab", + "id": "3c9abd11-f743-44bf-ab56-259a9dbf2af7", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Rem aperiam facilis in.", - "version": "100.81.37", - "description": "Et quidem qui. Laborum repellendus fugiat. Quia quos quia.", + "title": "Molestiae sed temporibus distinctio.", + "version": "100.83.5", + "description": "Eius incidunt occaecati. Dolore praesentium libero. Quasi laboriosam aperiam.", "os_major_version": 7, "type": "security_guide" }, { - "id": "41fe37aa-7754-4897-b7d3-55b91dbd5ba0", + "id": "3f6f4a50-8a89-44bb-a417-093f4fe92f38", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Autem id quis sunt.", - "version": "100.81.38", - "description": "Sed quo voluptatem. In aut molestiae. Ea aut voluptatem.", + "title": "Omnis sed exercitationem numquam.", + "version": "100.83.4", + "description": "Et ullam ad. Molestiae odio nulla. Fugiat est qui.", "os_major_version": 7, "type": "security_guide" }, { - "id": "44a0bccd-05e3-4827-93a5-869ac2803f59", + "id": "3fc777aa-f93c-43bc-a614-8123b0c7a897", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Quae et voluptatem ratione.", - "version": "100.81.47", - "description": "Rerum aut aut. Quae aperiam eos. Reprehenderit nobis necessitatibus.", + "title": "Impedit ab tempore nemo.", + "version": "100.83.8", + "description": "Est voluptas hic. Eveniet et molestias. Aut porro velit.", "os_major_version": 7, "type": "security_guide" }, { - "id": "474fc1f1-7e16-4527-8e74-f1afa1fd5ec0", + "id": "441df1f9-66c6-40f2-9da1-fb68d6082a19", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Qui libero sapiente voluptatibus.", - "version": "100.81.44", - "description": "Et officiis saepe. Omnis quia et. Odit quis atque.", + "title": "Aut magni eligendi earum.", + "version": "100.83.6", + "description": "Saepe quisquam quas. Quo accusantium dolor. Aliquid architecto et.", "os_major_version": 7, "type": "security_guide" }, { - "id": "4b619546-7933-4b00-83da-2d072ee8ce74", + "id": "4d2ad19f-8ca1-4bb1-81ca-cd0e20543574", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Saepe et quia rerum.", - "version": "100.81.30", - "description": "Eum libero doloribus. Earum deserunt aperiam. Explicabo est ducimus.", + "title": "Quos similique ab a.", + "version": "100.83.3", + "description": "Sed laboriosam numquam. Magnam mollitia dolor. Deserunt ab sed.", "os_major_version": 7, "type": "security_guide" }, { - "id": "561d99f4-8050-4d42-9ec8-22b152606f55", + "id": "501aaff1-b171-45be-a5a2-1ae19f08e302", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Asperiores est earum totam.", - "version": "100.81.42", - "description": "Et est quo. Maiores odit sunt. Laudantium qui dolorum.", + "title": "Placeat est harum temporibus.", + "version": "100.82.42", + "description": "Quia quis temporibus. Reprehenderit ex est. Nam consequatur sit.", "os_major_version": 7, "type": "security_guide" }, { - "id": "65950ba8-6850-42ab-adb4-16b98b220ccc", + "id": "563d6095-46c6-447d-b0e8-275b73a187fc", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Quasi atque et nostrum.", - "version": "100.81.43", - "description": "Est neque est. Repellendus qui dolor. Ad nihil sed.", + "title": "Rerum voluptates labore ut.", + "version": "100.82.49", + "description": "Consequatur ab commodi. Voluptas placeat assumenda. Modi blanditiis neque.", "os_major_version": 7, "type": "security_guide" } @@ -6730,11 +6721,11 @@ "Returns a Security Guide": { "value": { "data": { - "id": "f4946cac-42e0-4948-a7d0-080ddd55cdba", + "id": "6d40b677-8ff2-418e-8f81-9f2db3dcaa2d", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Accusantium qui consectetur cum.", - "version": "100.83.48", - "description": "Rerum nam necessitatibus. Aut dolorem vitae. Qui totam reiciendis.", + "title": "Asperiores sapiente quaerat deleniti.", + "version": "100.85.14", + "description": "Molestiae consequatur aliquid. Cum tempore quidem. Omnis sapiente quisquam.", "os_major_version": 7, "type": "security_guide" } @@ -6767,7 +6758,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID 599c7095-2c10-43ee-8cec-46f3a67cb293" + "V2::SecurityGuide not found with ID fcb412cd-5c13-4938-b6a3-ffbd75410ecd" ] }, "summary": "", @@ -6818,101 +6809,101 @@ "Returns the Rule Tree of a Security Guide": { "value": [ { - "id": "7824cf89-9069-49e4-bb31-c3f0c41c2dc7", + "id": "82e8894c-fcdc-410c-9c53-5edf67b0dfda", "type": "rule_group", "children": [ { - "id": "84cad260-9054-444d-91fd-577510f817ae", + "id": "b5bb984a-5500-4c17-9881-11b97e5a38ee", "type": "rule" } ] }, { - "id": "af8b7952-d483-47cb-881d-593114735a46", + "id": "701c3639-b11a-4b55-b47c-419713d9ca53", "type": "rule_group", "children": [ { - "id": "d453247b-5f97-430d-ad15-278e8b4b1a09", + "id": "e91edb09-85be-4d44-bb2d-3e14ce6a415d", "type": "rule" } ] }, { - "id": "5465b369-37ac-489a-963c-2f9016238967", + "id": "7672d4ea-b75a-4a65-9fec-a471f011b3ba", "type": "rule_group", "children": [ { - "id": "58fa7573-a534-4597-9856-3454623bb889", + "id": "abbf4e41-dd82-4565-9b0e-62ea51b217f9", "type": "rule" } ] }, { - "id": "ba40221e-29bc-4adf-9825-9e57ddc91948", + "id": "a88284a4-23d9-42d5-8eac-f37e61f3b97e", "type": "rule_group", "children": [ { - "id": "95ba5251-2ce2-42d9-a9ac-556308576866", + "id": "75f92ac7-7358-4a4f-af4e-495a67880578", "type": "rule" } ] }, { - "id": "e6190372-f21e-4cbe-b82d-22e015d406bd", + "id": "524a66e5-981a-4000-8f09-2bf9b368d47b", "type": "rule_group", "children": [ { - "id": "14cbbb0a-a5a1-43db-a406-83f87bc1daf1", + "id": "964255e1-4f7f-4e38-9708-9cb5aa1cfc6b", "type": "rule" } ] }, { - "id": "1060af87-ac3f-4e87-ae49-c8dd2c946e34", + "id": "d24477d1-fe69-48e6-b8a2-d8b4e10a6859", "type": "rule_group", "children": [ { - "id": "90a07cc5-2247-4bf4-b3ce-b4ef1ee8e00a", + "id": "15fbf6cd-f7b3-4903-86fc-0b8267799ab0", "type": "rule" } ] }, { - "id": "9598750a-87f4-4cd8-a06e-6e55878586f6", + "id": "94e97366-eeb7-4988-8dcf-88487bae65a4", "type": "rule_group", "children": [ { - "id": "e83f1105-f7a5-4f65-b888-7283afd86fc4", + "id": "6bb9e110-51f3-444f-9bf5-38afab7544c7", "type": "rule" } ] }, { - "id": "1a18c0c9-fcfd-41fa-a46a-06b4aefc9e37", + "id": "29501438-f957-4810-b0f6-e0a73b1f1ba6", "type": "rule_group", "children": [ { - "id": "c1460c60-02bf-4b3a-b910-d80c9ac8a9bd", + "id": "71f03a2b-82d6-4832-b17a-1e535343d7ec", "type": "rule" } ] }, { - "id": "508dc980-0485-4837-8203-950c7a10c252", + "id": "ae0a5954-f46d-4b60-b198-4d3f8c53e1f4", "type": "rule_group", "children": [ { - "id": "3c1901a5-0a83-4b6a-a5c0-b44a3347a727", + "id": "cb2e3ad1-ceb9-4434-9b49-5cd67af999e3", "type": "rule" } ] }, { - "id": "1e479aba-fcbb-41a3-892d-b3de4d38b7b0", + "id": "3947688a-f283-49e2-aad0-52f1df178140", "type": "rule_group", "children": [ { - "id": "a30466bf-adb5-41d8-8d3f-47c1a50d0746", + "id": "97410d8b-ac75-4033-bac8-4afb302db450", "type": "rule" } ] @@ -6936,7 +6927,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID 6ed0003a-b96a-4fab-ad80-208ce72193e9" + "V2::SecurityGuide not found with ID b6ee247f-e9b0-4a8c-bc0e-dae434ddbfcb" ] }, "summary": "", @@ -7034,11 +7025,11 @@ "value": { "data": [ { - "id": "c1f0e643-1f79-42e6-98c6-eb0611d7dc1c", - "title": "Repellendus vero labore quae.", - "ref_id": "xccdf_org.ssgproject.content_profile_1e2ff16739bb732af9981f0443089a4e", - "security_guide_id": "9898c6be-2f35-4c81-adb3-cb653aed98ce", - "security_guide_version": "100.84.26", + "id": "a49f6c33-a85c-4854-9600-bec8fba5fbcf", + "title": "Eos consequatur harum est.", + "ref_id": "xccdf_org.ssgproject.content_profile_5eb4b5353c11b417bb61442153ad40ff", + "security_guide_id": "e5b47d5c-e747-42b0-8e3f-a3aa6b5f29e5", + "security_guide_version": "100.86.4", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7065,11 +7056,11 @@ "value": { "data": [ { - "id": "2cd5600c-3933-404e-a753-b7f11336b44f", - "title": "Numquam ut vel animi.", - "ref_id": "xccdf_org.ssgproject.content_profile_6ca483a7ea171ce939070946f581df2b", - "security_guide_id": "9e335d02-7367-49cb-be5c-b56a0aae0f4b", - "security_guide_version": "100.84.27", + "id": "a3f4c5a0-ebc4-4a92-8d25-1f67a6641368", + "title": "Molestiae ea necessitatibus maiores.", + "ref_id": "xccdf_org.ssgproject.content_profile_ae4508be47c7f3076b921eb21408c981", + "security_guide_id": "22ecf27d-edce-4948-9081-4fc5135f6dc2", + "security_guide_version": "100.86.5", "os_major_version": 7, "os_minor_versions": [ 3, @@ -7232,7 +7223,7 @@ "name": "filter", "in": "query", "required": false, - "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", + "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `group_name`, `policies`, and `profile_ref_id`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", "schema": { "type": "string" } @@ -7253,39 +7244,39 @@ "value": { "data": [ { - "id": "16eb5faf-e751-4905-ad00-29afa9816412", - "display_name": "mueller-romaguera.test", + "id": "1d26f5b3-2ed9-4669-a98d-d5919d27065e", + "display_name": "berge-dietrich.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.754Z", - "stale_timestamp": "2034-09-03T05:56:02.754Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.754Z", - "updated": "2024-09-03T05:56:02.754Z", + "culled_timestamp": "2034-09-17T07:24:44.236Z", + "stale_timestamp": "2034-09-03T07:24:44.236Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.236Z", + "updated": "2024-09-03T07:24:44.236Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "optical", - "namespace": "compressing" + "key": "matrix", + "value": "haptic", + "namespace": "connecting" }, { - "key": "pixel", - "value": "open-source", - "namespace": "quantifying" + "key": "interface", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "transmitter", - "value": "virtual", - "namespace": "indexing" + "key": "panel", + "value": "digital", + "namespace": "overriding" }, { - "key": "microchip", - "value": "primary", - "namespace": "navigating" + "key": "alarm", + "value": "virtual", + "namespace": "bypassing" }, { - "key": "hard drive", - "value": "bluetooth", - "namespace": "calculating" + "key": "driver", + "value": "mobile", + "namespace": "programming" } ], "type": "system", @@ -7294,39 +7285,39 @@ "policies": [] }, { - "id": "1fc70b8a-c26b-4759-9e35-b445c60ef6fb", - "display_name": "johnson.example", + "id": "1e4ff348-98ec-4d96-8c03-b0100f8163b9", + "display_name": "littel.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.752Z", - "stale_timestamp": "2034-09-03T05:56:02.752Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.752Z", - "updated": "2024-09-03T05:56:02.752Z", + "culled_timestamp": "2034-09-17T07:24:44.237Z", + "stale_timestamp": "2034-09-03T07:24:44.237Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.237Z", + "updated": "2024-09-03T07:24:44.237Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "neural", - "namespace": "hacking" + "key": "firewall", + "value": "back-end", + "namespace": "backing up" }, { - "key": "card", - "value": "auxiliary", + "key": "circuit", + "value": "open-source", "namespace": "transmitting" }, { - "key": "protocol", - "value": "virtual", - "namespace": "connecting" + "key": "feed", + "value": "haptic", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "virtual", - "namespace": "hacking" + "key": "sensor", + "value": "multi-byte", + "namespace": "indexing" }, { - "key": "driver", - "value": "solid state", - "namespace": "generating" + "key": "firewall", + "value": "optical", + "namespace": "hacking" } ], "type": "system", @@ -7335,39 +7326,39 @@ "policies": [] }, { - "id": "2ec743b2-9089-40e5-af9a-a864ebe320a2", - "display_name": "hickle.example", + "id": "25939b63-0aea-4ad5-a08d-cc7c6fa492f0", + "display_name": "quitzon-brakus.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.749Z", - "stale_timestamp": "2034-09-03T05:56:02.749Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.749Z", - "updated": "2024-09-03T05:56:02.749Z", + "culled_timestamp": "2034-09-17T07:24:44.245Z", + "stale_timestamp": "2034-09-03T07:24:44.245Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.245Z", + "updated": "2024-09-03T07:24:44.245Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "bluetooth", - "namespace": "calculating" + "key": "firewall", + "value": "cross-platform", + "namespace": "generating" }, { - "key": "application", - "value": "optical", - "namespace": "overriding" + "key": "alarm", + "value": "back-end", + "namespace": "connecting" }, { - "key": "card", - "value": "open-source", - "namespace": "hacking" + "key": "program", + "value": "digital", + "namespace": "generating" }, { - "key": "driver", - "value": "virtual", - "namespace": "transmitting" + "key": "system", + "value": "open-source", + "namespace": "compressing" }, { - "key": "bus", - "value": "neural", - "namespace": "navigating" + "key": "capacitor", + "value": "solid state", + "namespace": "parsing" } ], "type": "system", @@ -7376,39 +7367,39 @@ "policies": [] }, { - "id": "34e4e767-469c-4e07-a513-fe69afe96736", - "display_name": "schinner.example", + "id": "282afc32-6c40-44bf-8938-5c75688ccf20", + "display_name": "mckenzie.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.745Z", - "stale_timestamp": "2034-09-03T05:56:02.745Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.745Z", - "updated": "2024-09-03T05:56:02.745Z", + "culled_timestamp": "2034-09-17T07:24:44.243Z", + "stale_timestamp": "2034-09-03T07:24:44.243Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.243Z", + "updated": "2024-09-03T07:24:44.243Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "open-source", - "namespace": "indexing" + "key": "port", + "value": "solid state", + "namespace": "programming" }, { - "key": "alarm", - "value": "neural", - "namespace": "navigating" + "key": "panel", + "value": "primary", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "wireless", - "namespace": "copying" + "key": "transmitter", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "array", - "value": "online", - "namespace": "navigating" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "matrix", - "value": "multi-byte", - "namespace": "transmitting" + "key": "bus", + "value": "open-source", + "namespace": "synthesizing" } ], "type": "system", @@ -7417,39 +7408,39 @@ "policies": [] }, { - "id": "3f12b5dc-706e-4c48-93f3-f66e00d87875", - "display_name": "jacobs.example", + "id": "359fcf5b-e399-4b11-aea4-20cdb9d5a89c", + "display_name": "abshire.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.746Z", - "stale_timestamp": "2034-09-03T05:56:02.746Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.746Z", - "updated": "2024-09-03T05:56:02.746Z", + "culled_timestamp": "2034-09-17T07:24:44.246Z", + "stale_timestamp": "2034-09-03T07:24:44.246Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.246Z", + "updated": "2024-09-03T07:24:44.246Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "haptic", - "namespace": "overriding" + "key": "feed", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "hard drive", + "key": "driver", "value": "1080p", - "namespace": "calculating" + "namespace": "hacking" }, { - "key": "monitor", - "value": "multi-byte", - "namespace": "programming" + "key": "pixel", + "value": "bluetooth", + "namespace": "quantifying" }, { - "key": "monitor", - "value": "wireless", - "namespace": "overriding" + "key": "alarm", + "value": "cross-platform", + "namespace": "navigating" }, { - "key": "application", - "value": "multi-byte", - "namespace": "bypassing" + "key": "protocol", + "value": "digital", + "namespace": "compressing" } ], "type": "system", @@ -7458,39 +7449,39 @@ "policies": [] }, { - "id": "4895a534-baad-42fc-ae36-92ec8f0ad5b5", - "display_name": "schamberger.test", + "id": "3a496cc6-8323-4157-ba33-6e7a325b86b5", + "display_name": "braun.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.742Z", - "stale_timestamp": "2034-09-03T05:56:02.742Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.742Z", - "updated": "2024-09-03T05:56:02.742Z", + "culled_timestamp": "2034-09-17T07:24:44.235Z", + "stale_timestamp": "2034-09-03T07:24:44.235Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.235Z", + "updated": "2024-09-03T07:24:44.235Z", "insights_id": null, "tags": [ { - "key": "capacitor", + "key": "card", "value": "neural", - "namespace": "bypassing" + "namespace": "navigating" }, { - "key": "alarm", - "value": "online", - "namespace": "overriding" + "key": "circuit", + "value": "optical", + "namespace": "quantifying" }, { - "key": "port", - "value": "wireless", + "key": "bus", + "value": "optical", "namespace": "generating" }, { - "key": "port", + "key": "feed", "value": "redundant", - "namespace": "calculating" + "namespace": "overriding" }, { - "key": "circuit", - "value": "back-end", - "namespace": "hacking" + "key": "port", + "value": "primary", + "namespace": "indexing" } ], "type": "system", @@ -7499,39 +7490,39 @@ "policies": [] }, { - "id": "53f5bad3-970c-4ed9-8c27-1d7f3e0093b7", - "display_name": "moen-considine.test", + "id": "3c320094-aaa7-495b-9102-2376834b5733", + "display_name": "predovic.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.743Z", - "stale_timestamp": "2034-09-03T05:56:02.743Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.743Z", - "updated": "2024-09-03T05:56:02.743Z", + "culled_timestamp": "2034-09-17T07:24:44.240Z", + "stale_timestamp": "2034-09-03T07:24:44.240Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.240Z", + "updated": "2024-09-03T07:24:44.240Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "wireless", - "namespace": "hacking" + "key": "matrix", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "circuit", - "value": "multi-byte", - "namespace": "hacking" + "key": "matrix", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "system", - "value": "mobile", - "namespace": "calculating" + "key": "bus", + "value": "virtual", + "namespace": "synthesizing" }, { - "key": "microchip", - "value": "redundant", - "namespace": "navigating" + "key": "interface", + "value": "virtual", + "namespace": "compressing" }, { - "key": "sensor", - "value": "bluetooth", - "namespace": "hacking" + "key": "interface", + "value": "1080p", + "namespace": "overriding" } ], "type": "system", @@ -7540,39 +7531,39 @@ "policies": [] }, { - "id": "5c905249-80a7-4b39-bb44-0589396d80ad", - "display_name": "schulist.test", + "id": "4a721ee0-2977-44b5-94bf-e8e9f6c4fcb0", + "display_name": "considine.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.746Z", - "stale_timestamp": "2034-09-03T05:56:02.746Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.746Z", - "updated": "2024-09-03T05:56:02.746Z", + "culled_timestamp": "2034-09-17T07:24:44.244Z", + "stale_timestamp": "2034-09-03T07:24:44.244Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.244Z", + "updated": "2024-09-03T07:24:44.244Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "wireless", - "namespace": "indexing" - }, - { - "key": "matrix", + "key": "bandwidth", "value": "bluetooth", - "namespace": "programming" + "namespace": "overriding" }, { "key": "system", - "value": "solid state", - "namespace": "compressing" + "value": "back-end", + "namespace": "programming" }, { - "key": "feed", - "value": "online", + "key": "panel", + "value": "solid state", "namespace": "quantifying" }, { "key": "microchip", - "value": "bluetooth", - "namespace": "copying" + "value": "multi-byte", + "namespace": "indexing" + }, + { + "key": "circuit", + "value": "back-end", + "namespace": "overriding" } ], "type": "system", @@ -7581,39 +7572,39 @@ "policies": [] }, { - "id": "681d4908-6019-482e-bc4e-5b738fa9c90d", - "display_name": "ziemann.test", + "id": "5201b3dc-7a9b-44c8-949b-78692998f296", + "display_name": "gulgowski.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.750Z", - "stale_timestamp": "2034-09-03T05:56:02.750Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.750Z", - "updated": "2024-09-03T05:56:02.750Z", + "culled_timestamp": "2034-09-17T07:24:44.233Z", + "stale_timestamp": "2034-09-03T07:24:44.233Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.233Z", + "updated": "2024-09-03T07:24:44.233Z", "insights_id": null, "tags": [ { "key": "feed", - "value": "neural", - "namespace": "bypassing" + "value": "back-end", + "namespace": "backing up" }, { - "key": "transmitter", - "value": "optical", - "namespace": "parsing" + "key": "alarm", + "value": "online", + "namespace": "indexing" }, { - "key": "array", - "value": "primary", - "namespace": "transmitting" + "key": "interface", + "value": "online", + "namespace": "programming" }, { - "key": "circuit", - "value": "cross-platform", - "namespace": "copying" + "key": "bandwidth", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "hard drive", - "value": "1080p", - "namespace": "backing up" + "key": "bus", + "value": "digital", + "namespace": "overriding" } ], "type": "system", @@ -7622,39 +7613,39 @@ "policies": [] }, { - "id": "68207a84-440d-4dce-93b7-d990acc92293", - "display_name": "mayer-aufderhar.test", + "id": "55bb2115-0387-4798-b548-9b5c5b72cb09", + "display_name": "hills.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.753Z", - "stale_timestamp": "2034-09-03T05:56:02.753Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.753Z", - "updated": "2024-09-03T05:56:02.753Z", + "culled_timestamp": "2034-09-17T07:24:44.238Z", + "stale_timestamp": "2034-09-03T07:24:44.238Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.238Z", + "updated": "2024-09-03T07:24:44.238Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "online", - "namespace": "backing up" + "key": "circuit", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "system", - "value": "solid state", - "namespace": "indexing" + "key": "application", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "neural", - "namespace": "programming" + "key": "transmitter", + "value": "mobile", + "namespace": "compressing" }, { - "key": "driver", - "value": "mobile", - "namespace": "transmitting" + "key": "bus", + "value": "cross-platform", + "namespace": "connecting" }, { - "key": "firewall", - "value": "solid state", - "namespace": "copying" + "key": "bandwidth", + "value": "primary", + "namespace": "navigating" } ], "type": "system", @@ -7682,39 +7673,39 @@ "value": { "data": [ { - "id": "03ead0e3-8f28-4df9-a94d-7a6dd77715c7", - "display_name": "goldner.example", + "id": "0492254a-ab47-4d9c-9b9b-537928daea71", + "display_name": "wuckert.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.796Z", - "stale_timestamp": "2034-09-03T05:56:02.796Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.796Z", - "updated": "2024-09-03T05:56:02.796Z", + "culled_timestamp": "2034-09-17T07:24:44.284Z", + "stale_timestamp": "2034-09-03T07:24:44.284Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.284Z", + "updated": "2024-09-03T07:24:44.284Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "virtual", - "namespace": "navigating" + "key": "protocol", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "transmitter", - "value": "multi-byte", - "namespace": "connecting" + "key": "program", + "value": "online", + "namespace": "navigating" }, { - "key": "pixel", - "value": "solid state", - "namespace": "copying" + "key": "circuit", + "value": "redundant", + "namespace": "connecting" }, { - "key": "sensor", - "value": "back-end", - "namespace": "bypassing" + "key": "transmitter", + "value": "neural", + "namespace": "programming" }, { - "key": "pixel", + "key": "alarm", "value": "online", - "namespace": "quantifying" + "namespace": "bypassing" } ], "type": "system", @@ -7723,39 +7714,39 @@ "policies": [] }, { - "id": "107e1d39-d1ed-476e-8412-eb7d39583ce0", - "display_name": "brekke.test", + "id": "29423a77-3f85-4531-af8a-18ea0f51e617", + "display_name": "nolan.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.791Z", - "stale_timestamp": "2034-09-03T05:56:02.791Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.791Z", - "updated": "2024-09-03T05:56:02.791Z", + "culled_timestamp": "2034-09-17T07:24:44.287Z", + "stale_timestamp": "2034-09-03T07:24:44.287Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.287Z", + "updated": "2024-09-03T07:24:44.287Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "digital", - "namespace": "programming" + "key": "pixel", + "value": "mobile", + "namespace": "compressing" }, { - "key": "monitor", + "key": "microchip", "value": "cross-platform", - "namespace": "synthesizing" + "namespace": "bypassing" }, { - "key": "capacitor", - "value": "1080p", - "namespace": "copying" + "key": "system", + "value": "auxiliary", + "namespace": "transmitting" }, { - "key": "card", - "value": "auxiliary", - "namespace": "indexing" + "key": "hard drive", + "value": "redundant", + "namespace": "compressing" }, { - "key": "pixel", - "value": "digital", - "namespace": "hacking" + "key": "monitor", + "value": "virtual", + "namespace": "quantifying" } ], "type": "system", @@ -7764,39 +7755,39 @@ "policies": [] }, { - "id": "231588e3-6930-4ca8-a65c-319385a798cc", - "display_name": "denesik-oberbrunner.example", + "id": "2c42e5ef-814e-40ee-ba71-475e13bd04ef", + "display_name": "stoltenberg.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.780Z", - "stale_timestamp": "2034-09-03T05:56:02.780Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.780Z", - "updated": "2024-09-03T05:56:02.780Z", + "culled_timestamp": "2034-09-17T07:24:44.288Z", + "stale_timestamp": "2034-09-03T07:24:44.288Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.288Z", + "updated": "2024-09-03T07:24:44.288Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "digital", - "namespace": "bypassing" + "key": "application", + "value": "back-end", + "namespace": "parsing" }, { - "key": "monitor", - "value": "solid state", - "namespace": "bypassing" + "key": "program", + "value": "neural", + "namespace": "copying" }, { - "key": "panel", - "value": "bluetooth", - "namespace": "parsing" + "key": "feed", + "value": "mobile", + "namespace": "copying" }, { - "key": "bandwidth", - "value": "open-source", - "namespace": "hacking" + "key": "panel", + "value": "auxiliary", + "namespace": "bypassing" }, { - "key": "capacitor", - "value": "solid state", - "namespace": "parsing" + "key": "panel", + "value": "neural", + "namespace": "compressing" } ], "type": "system", @@ -7805,38 +7796,38 @@ "policies": [] }, { - "id": "3b4f7804-56c4-4288-ae2f-dce232fced61", - "display_name": "lebsack-walter.test", + "id": "3c1e64c4-a5e7-46e6-a796-4b306f905648", + "display_name": "skiles-stokes.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.804Z", - "stale_timestamp": "2034-09-03T05:56:02.804Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.804Z", - "updated": "2024-09-03T05:56:02.804Z", + "culled_timestamp": "2034-09-17T07:24:44.275Z", + "stale_timestamp": "2034-09-03T07:24:44.275Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.275Z", + "updated": "2024-09-03T07:24:44.275Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "back-end", - "namespace": "overriding" + "key": "matrix", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "array", + "key": "monitor", "value": "primary", - "namespace": "navigating" + "namespace": "bypassing" }, { - "key": "microchip", - "value": "haptic", - "namespace": "quantifying" + "key": "system", + "value": "auxiliary", + "namespace": "calculating" }, { "key": "microchip", - "value": "cross-platform", - "namespace": "parsing" + "value": "multi-byte", + "namespace": "backing up" }, { - "key": "program", - "value": "redundant", + "key": "array", + "value": "1080p", "namespace": "parsing" } ], @@ -7846,39 +7837,39 @@ "policies": [] }, { - "id": "42ad1592-7a9b-4ccd-8b6b-0e8fb5532803", - "display_name": "funk.test", + "id": "3d45ab7f-f58a-495e-9179-9b0c72624395", + "display_name": "kris-okon.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.797Z", - "stale_timestamp": "2034-09-03T05:56:02.797Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.797Z", - "updated": "2024-09-03T05:56:02.797Z", + "culled_timestamp": "2034-09-17T07:24:44.285Z", + "stale_timestamp": "2034-09-03T07:24:44.285Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.285Z", + "updated": "2024-09-03T07:24:44.285Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "bluetooth", - "namespace": "quantifying" + "key": "application", + "value": "1080p", + "namespace": "indexing" }, { - "key": "microchip", - "value": "haptic", - "namespace": "connecting" + "key": "interface", + "value": "virtual", + "namespace": "navigating" }, { - "key": "circuit", - "value": "bluetooth", - "namespace": "backing up" + "key": "hard drive", + "value": "virtual", + "namespace": "quantifying" }, { - "key": "pixel", - "value": "virtual", - "namespace": "backing up" + "key": "card", + "value": "wireless", + "namespace": "overriding" }, { - "key": "hard drive", - "value": "neural", - "namespace": "backing up" + "key": "system", + "value": "solid state", + "namespace": "synthesizing" } ], "type": "system", @@ -7887,39 +7878,39 @@ "policies": [] }, { - "id": "4575f869-a502-4d67-ae5f-0eac2594c418", - "display_name": "wiza.test", + "id": "3d811310-3f91-4efa-b64f-464da3b6aca1", + "display_name": "sauer-funk.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.804Z", - "stale_timestamp": "2034-09-03T05:56:02.804Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.804Z", - "updated": "2024-09-03T05:56:02.804Z", + "culled_timestamp": "2034-09-17T07:24:44.286Z", + "stale_timestamp": "2034-09-03T07:24:44.286Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.286Z", + "updated": "2024-09-03T07:24:44.286Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "redundant", - "namespace": "connecting" + "key": "monitor", + "value": "back-end", + "namespace": "navigating" }, { - "key": "protocol", - "value": "bluetooth", - "namespace": "compressing" + "key": "program", + "value": "auxiliary", + "namespace": "indexing" }, { - "key": "microchip", - "value": "online", - "namespace": "programming" + "key": "bus", + "value": "primary", + "namespace": "hacking" }, { - "key": "feed", - "value": "online", - "namespace": "generating" + "key": "transmitter", + "value": "solid state", + "namespace": "synthesizing" }, { - "key": "system", - "value": "wireless", - "namespace": "overriding" + "key": "driver", + "value": "auxiliary", + "namespace": "indexing" } ], "type": "system", @@ -7928,39 +7919,39 @@ "policies": [] }, { - "id": "579b6e6e-2150-48a9-b491-d88476ae0b6c", - "display_name": "herzog.example", + "id": "3dfe9186-496e-4918-8a3b-517167bf114d", + "display_name": "zulauf.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.783Z", - "stale_timestamp": "2034-09-03T05:56:02.783Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.783Z", - "updated": "2024-09-03T05:56:02.783Z", + "culled_timestamp": "2034-09-17T07:24:44.280Z", + "stale_timestamp": "2034-09-03T07:24:44.280Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.280Z", + "updated": "2024-09-03T07:24:44.280Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "open-source", - "namespace": "backing up" + "key": "card", + "value": "haptic", + "namespace": "indexing" }, { - "key": "driver", - "value": "optical", - "namespace": "copying" + "key": "interface", + "value": "primary", + "namespace": "generating" }, { - "key": "pixel", - "value": "bluetooth", + "key": "feed", + "value": "neural", "namespace": "navigating" }, { - "key": "firewall", - "value": "back-end", + "key": "interface", + "value": "wireless", "namespace": "compressing" }, { - "key": "bus", - "value": "1080p", - "namespace": "hacking" + "key": "sensor", + "value": "digital", + "namespace": "navigating" } ], "type": "system", @@ -7969,39 +7960,39 @@ "policies": [] }, { - "id": "5fbe4594-084d-4f65-b761-9442acbdcd54", - "display_name": "schimmel.test", + "id": "4a308094-6d8d-416d-b40c-1be0ad740fad", + "display_name": "schaden-kuphal.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.781Z", - "stale_timestamp": "2034-09-03T05:56:02.781Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.781Z", - "updated": "2024-09-03T05:56:02.781Z", + "culled_timestamp": "2034-09-17T07:24:44.277Z", + "stale_timestamp": "2034-09-03T07:24:44.277Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.277Z", + "updated": "2024-09-03T07:24:44.277Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "redundant", - "namespace": "navigating" + "key": "alarm", + "value": "solid state", + "namespace": "programming" }, { - "key": "system", - "value": "online", - "namespace": "navigating" + "key": "card", + "value": "virtual", + "namespace": "parsing" }, { - "key": "matrix", - "value": "virtual", - "namespace": "indexing" + "key": "feed", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "transmitter", - "value": "optical", - "namespace": "connecting" + "key": "microchip", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "transmitter", - "value": "back-end", - "namespace": "transmitting" + "key": "driver", + "value": "neural", + "namespace": "synthesizing" } ], "type": "system", @@ -8010,39 +8001,39 @@ "policies": [] }, { - "id": "69c77ae3-0536-4820-8725-81f265776c72", - "display_name": "ankunding-bosco.example", + "id": "56092f15-2bec-4798-9b49-fdf4d22af72c", + "display_name": "hansen.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.784Z", - "stale_timestamp": "2034-09-03T05:56:02.784Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.784Z", - "updated": "2024-09-03T05:56:02.784Z", + "culled_timestamp": "2034-09-17T07:24:44.283Z", + "stale_timestamp": "2034-09-03T07:24:44.283Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.283Z", + "updated": "2024-09-03T07:24:44.283Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "1080p", - "namespace": "copying" + "key": "pixel", + "value": "solid state", + "namespace": "parsing" }, { - "key": "hard drive", - "value": "primary", - "namespace": "connecting" + "key": "pixel", + "value": "wireless", + "namespace": "parsing" }, { - "key": "program", - "value": "virtual", - "namespace": "quantifying" + "key": "driver", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "protocol", - "value": "back-end", - "namespace": "backing up" + "key": "capacitor", + "value": "1080p", + "namespace": "overriding" }, { - "key": "microchip", - "value": "primary", - "namespace": "hacking" + "key": "capacitor", + "value": "optical", + "namespace": "connecting" } ], "type": "system", @@ -8051,39 +8042,39 @@ "policies": [] }, { - "id": "70de3d42-6b82-4f61-82c1-219c5c2fdd93", - "display_name": "nicolas.example", + "id": "5b61474f-04f0-46f1-83e0-96539eca72af", + "display_name": "batz.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.794Z", - "stale_timestamp": "2034-09-03T05:56:02.794Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.794Z", - "updated": "2024-09-03T05:56:02.794Z", + "culled_timestamp": "2034-09-17T07:24:44.274Z", + "stale_timestamp": "2034-09-03T07:24:44.274Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.274Z", + "updated": "2024-09-03T07:24:44.274Z", "insights_id": null, "tags": [ { - "key": "bus", + "key": "panel", "value": "bluetooth", - "namespace": "transmitting" - }, - { - "key": "interface", - "value": "back-end", - "namespace": "parsing" + "namespace": "hacking" }, { "key": "application", "value": "auxiliary", - "namespace": "generating" + "namespace": "transmitting" }, { - "key": "circuit", - "value": "open-source", - "namespace": "overriding" + "key": "interface", + "value": "bluetooth", + "namespace": "hacking" }, { "key": "bandwidth", - "value": "cross-platform", - "namespace": "indexing" + "value": "open-source", + "namespace": "generating" + }, + { + "key": "hard drive", + "value": "wireless", + "namespace": "calculating" } ], "type": "system", @@ -8112,39 +8103,39 @@ "value": { "data": [ { - "id": "177cd2b0-9c9c-4e78-9151-e0db0eaefefe", - "display_name": "champlin-schimmel.test", + "id": "01ffb6c0-d811-4b6a-a0fb-5df7b067a06e", + "display_name": "bashirian.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.838Z", - "stale_timestamp": "2034-09-03T05:56:02.838Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.838Z", - "updated": "2024-09-03T05:56:02.838Z", + "culled_timestamp": "2034-09-17T07:24:44.334Z", + "stale_timestamp": "2034-09-03T07:24:44.334Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.334Z", + "updated": "2024-09-03T07:24:44.334Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "virtual", - "namespace": "compressing" + "key": "system", + "value": "digital", + "namespace": "navigating" }, { - "key": "transmitter", - "value": "online", - "namespace": "quantifying" + "key": "pixel", + "value": "neural", + "namespace": "bypassing" }, { - "key": "alarm", - "value": "back-end", - "namespace": "transmitting" + "key": "transmitter", + "value": "solid state", + "namespace": "overriding" }, { - "key": "monitor", - "value": "open-source", - "namespace": "compressing" + "key": "feed", + "value": "solid state", + "namespace": "generating" }, { - "key": "firewall", - "value": "open-source", - "namespace": "compressing" + "key": "application", + "value": "primary", + "namespace": "copying" } ], "type": "system", @@ -8153,39 +8144,39 @@ "policies": [] }, { - "id": "18277c18-2ffb-4d45-86db-610977111f02", - "display_name": "willms.example", + "id": "1643a15b-fd27-4e98-b82c-d90034ccede9", + "display_name": "kertzmann-lubowitz.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.833Z", - "stale_timestamp": "2034-09-03T05:56:02.833Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.833Z", - "updated": "2024-09-03T05:56:02.833Z", + "culled_timestamp": "2034-09-17T07:24:44.327Z", + "stale_timestamp": "2034-09-03T07:24:44.327Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.327Z", + "updated": "2024-09-03T07:24:44.327Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "primary", + "key": "panel", + "value": "cross-platform", "namespace": "quantifying" }, { - "key": "protocol", - "value": "primary", - "namespace": "indexing" - }, - { - "key": "transmitter", - "value": "multi-byte", + "key": "program", + "value": "neural", "namespace": "connecting" }, { - "key": "system", - "value": "digital", + "key": "port", + "value": "open-source", "namespace": "bypassing" }, + { + "key": "sensor", + "value": "auxiliary", + "namespace": "compressing" + }, { "key": "protocol", - "value": "cross-platform", - "namespace": "backing up" + "value": "open-source", + "namespace": "quantifying" } ], "type": "system", @@ -8194,39 +8185,39 @@ "policies": [] }, { - "id": "4192f001-8d92-47b3-84e7-dcef176902b4", - "display_name": "bins.example", + "id": "18789541-f760-4f3d-9a3b-9326b8900458", + "display_name": "kohler.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.826Z", - "stale_timestamp": "2034-09-03T05:56:02.826Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.826Z", - "updated": "2024-09-03T05:56:02.827Z", + "culled_timestamp": "2034-09-17T07:24:44.332Z", + "stale_timestamp": "2034-09-03T07:24:44.332Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.332Z", + "updated": "2024-09-03T07:24:44.332Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "neural", - "namespace": "generating" + "key": "array", + "value": "digital", + "namespace": "overriding" }, { - "key": "driver", - "value": "neural", - "namespace": "parsing" + "key": "card", + "value": "mobile", + "namespace": "programming" }, { - "key": "bus", - "value": "auxiliary", - "namespace": "hacking" + "key": "system", + "value": "primary", + "namespace": "backing up" }, { - "key": "panel", - "value": "solid state", - "namespace": "transmitting" + "key": "transmitter", + "value": "optical", + "namespace": "generating" }, { - "key": "transmitter", - "value": "haptic", - "namespace": "programming" + "key": "system", + "value": "optical", + "namespace": "synthesizing" } ], "type": "system", @@ -8235,39 +8226,39 @@ "policies": [] }, { - "id": "47c26b21-5cbd-40a0-a0c8-d89820ef605e", - "display_name": "tremblay-lockman.test", + "id": "1fe3a512-1a4a-4e57-9127-e3e1a1a1e81a", + "display_name": "gislason.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.837Z", - "stale_timestamp": "2034-09-03T05:56:02.837Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.837Z", - "updated": "2024-09-03T05:56:02.837Z", + "culled_timestamp": "2034-09-17T07:24:44.325Z", + "stale_timestamp": "2034-09-03T07:24:44.325Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.325Z", + "updated": "2024-09-03T07:24:44.325Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "open-source", - "namespace": "bypassing" + "key": "sensor", + "value": "optical", + "namespace": "programming" }, { - "key": "monitor", - "value": "redundant", - "namespace": "navigating" + "key": "port", + "value": "auxiliary", + "namespace": "indexing" }, { - "key": "application", - "value": "solid state", - "namespace": "programming" + "key": "array", + "value": "haptic", + "namespace": "hacking" }, { - "key": "application", - "value": "neural", - "namespace": "backing up" + "key": "sensor", + "value": "digital", + "namespace": "synthesizing" }, { - "key": "port", - "value": "open-source", - "namespace": "quantifying" + "key": "protocol", + "value": "1080p", + "namespace": "indexing" } ], "type": "system", @@ -8276,39 +8267,39 @@ "policies": [] }, { - "id": "57939921-d164-4a13-81b9-ed2ed5be7acc", - "display_name": "senger-green.test", + "id": "2b27ce09-94a4-42e9-b4d2-482365d71c0e", + "display_name": "fadel.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.839Z", - "stale_timestamp": "2034-09-03T05:56:02.839Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.839Z", - "updated": "2024-09-03T05:56:02.839Z", + "culled_timestamp": "2034-09-17T07:24:44.319Z", + "stale_timestamp": "2034-09-03T07:24:44.319Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.319Z", + "updated": "2024-09-03T07:24:44.319Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "primary", - "namespace": "transmitting" + "key": "transmitter", + "value": "open-source", + "namespace": "parsing" }, { - "key": "capacitor", - "value": "wireless", - "namespace": "indexing" + "key": "microchip", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "firewall", - "value": "virtual", - "namespace": "connecting" + "key": "card", + "value": "multi-byte", + "namespace": "backing up" }, { - "key": "interface", - "value": "auxiliary", - "namespace": "transmitting" + "key": "card", + "value": "optical", + "namespace": "bypassing" }, { - "key": "hard drive", - "value": "open-source", - "namespace": "copying" + "key": "pixel", + "value": "back-end", + "namespace": "navigating" } ], "type": "system", @@ -8317,39 +8308,39 @@ "policies": [] }, { - "id": "5d5e3c92-4fe2-44a9-91e7-91be9f89407d", - "display_name": "thiel.example", + "id": "2f3d5869-8017-4c45-af13-3e3d2f69e040", + "display_name": "goldner.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.836Z", - "stale_timestamp": "2034-09-03T05:56:02.836Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.836Z", - "updated": "2024-09-03T05:56:02.836Z", + "culled_timestamp": "2034-09-17T07:24:44.322Z", + "stale_timestamp": "2034-09-03T07:24:44.322Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.322Z", + "updated": "2024-09-03T07:24:44.322Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "1080p", - "namespace": "generating" + "key": "array", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "pixel", + "key": "sensor", "value": "virtual", - "namespace": "generating" + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "open-source", - "namespace": "parsing" + "key": "firewall", + "value": "digital", + "namespace": "programming" }, { - "key": "panel", - "value": "online", - "namespace": "hacking" + "key": "feed", + "value": "virtual", + "namespace": "copying" }, { - "key": "hard drive", - "value": "mobile", - "namespace": "hacking" + "key": "application", + "value": "optical", + "namespace": "overriding" } ], "type": "system", @@ -8358,39 +8349,39 @@ "policies": [] }, { - "id": "636521c6-1078-447e-96fd-36c3674df671", - "display_name": "gusikowski.test", + "id": "3013d8e7-1a4a-4116-99c9-fda4167b3c8e", + "display_name": "konopelski.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.825Z", - "stale_timestamp": "2034-09-03T05:56:02.825Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.825Z", - "updated": "2024-09-03T05:56:02.825Z", + "culled_timestamp": "2034-09-17T07:24:44.337Z", + "stale_timestamp": "2034-09-03T07:24:44.337Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.337Z", + "updated": "2024-09-03T07:24:44.337Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "optical", - "namespace": "bypassing" + "key": "capacitor", + "value": "digital", + "namespace": "indexing" }, { - "key": "sensor", - "value": "back-end", - "namespace": "transmitting" + "key": "microchip", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "application", - "value": "optical", - "namespace": "transmitting" + "key": "microchip", + "value": "online", + "namespace": "synthesizing" }, { - "key": "program", - "value": "cross-platform", - "namespace": "generating" + "key": "array", + "value": "wireless", + "namespace": "copying" }, { - "key": "matrix", - "value": "auxiliary", - "namespace": "hacking" + "key": "sensor", + "value": "primary", + "namespace": "programming" } ], "type": "system", @@ -8399,39 +8390,39 @@ "policies": [] }, { - "id": "63a61e46-8931-44f7-94a3-42cc353debec", - "display_name": "lockman.example", + "id": "38ae26b3-2306-44fe-9777-7b6006f018b3", + "display_name": "olson.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.831Z", - "stale_timestamp": "2034-09-03T05:56:02.831Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.831Z", - "updated": "2024-09-03T05:56:02.831Z", + "culled_timestamp": "2034-09-17T07:24:44.338Z", + "stale_timestamp": "2034-09-03T07:24:44.338Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.338Z", + "updated": "2024-09-03T07:24:44.338Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "mobile", - "namespace": "copying" + "key": "feed", + "value": "neural", + "namespace": "parsing" }, { - "key": "program", - "value": "primary", - "namespace": "calculating" + "key": "system", + "value": "back-end", + "namespace": "compressing" }, { "key": "microchip", - "value": "back-end", - "namespace": "navigating" + "value": "multi-byte", + "namespace": "programming" }, { - "key": "alarm", - "value": "virtual", - "namespace": "overriding" + "key": "array", + "value": "digital", + "namespace": "navigating" }, { - "key": "microchip", - "value": "wireless", - "namespace": "parsing" + "key": "capacitor", + "value": "solid state", + "namespace": "indexing" } ], "type": "system", @@ -8440,39 +8431,39 @@ "policies": [] }, { - "id": "667a2ee2-f481-4028-8afb-f747cdeaea21", - "display_name": "bartell.example", + "id": "3f2b9398-354e-4503-88a2-1a43faee9e46", + "display_name": "langworth-kuvalis.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.834Z", - "stale_timestamp": "2034-09-03T05:56:02.834Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.834Z", - "updated": "2024-09-03T05:56:02.834Z", + "culled_timestamp": "2034-09-17T07:24:44.328Z", + "stale_timestamp": "2034-09-03T07:24:44.328Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.328Z", + "updated": "2024-09-03T07:24:44.328Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "multi-byte", - "namespace": "hacking" + "key": "microchip", + "value": "online", + "namespace": "navigating" }, { - "key": "matrix", - "value": "virtual", - "namespace": "hacking" + "key": "hard drive", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "feed", - "value": "multi-byte", - "namespace": "backing up" + "key": "transmitter", + "value": "primary", + "namespace": "transmitting" }, { - "key": "port", - "value": "multi-byte", - "namespace": "synthesizing" + "key": "circuit", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "interface", - "value": "optical", - "namespace": "calculating" + "key": "firewall", + "value": "redundant", + "namespace": "navigating" } ], "type": "system", @@ -8481,39 +8472,39 @@ "policies": [] }, { - "id": "67773c29-49c0-4aa9-bac4-c3dac44312e6", - "display_name": "shanahan.test", + "id": "71245a89-aab0-46d6-b1ab-1a822c15b55b", + "display_name": "nader.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.832Z", - "stale_timestamp": "2034-09-03T05:56:02.832Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.832Z", - "updated": "2024-09-03T05:56:02.832Z", + "culled_timestamp": "2034-09-17T07:24:44.327Z", + "stale_timestamp": "2034-09-03T07:24:44.327Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.327Z", + "updated": "2024-09-03T07:24:44.327Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "wireless", - "namespace": "quantifying" + "key": "hard drive", + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "port", - "value": "wireless", - "namespace": "bypassing" + "key": "alarm", + "value": "neural", + "namespace": "connecting" }, { - "key": "hard drive", - "value": "bluetooth", - "namespace": "programming" + "key": "capacitor", + "value": "virtual", + "namespace": "bypassing" }, { - "key": "microchip", - "value": "haptic", - "namespace": "generating" + "key": "system", + "value": "cross-platform", + "namespace": "programming" }, { - "key": "firewall", - "value": "cross-platform", - "namespace": "generating" + "key": "capacitor", + "value": "back-end", + "namespace": "parsing" } ], "type": "system", @@ -8685,39 +8676,39 @@ "Returns a System": { "value": { "data": { - "id": "8176f3f8-4c5c-4e89-baa9-4810e61071af", - "display_name": "schumm-armstrong.example", + "id": "392f52b5-eb96-4162-a631-366487648a69", + "display_name": "leffler-hickle.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:02.982Z", - "stale_timestamp": "2034-09-03T05:56:02.982Z", - "stale_warning_timestamp": "2034-09-10T05:56:02.982Z", - "updated": "2024-09-03T05:56:02.982Z", + "culled_timestamp": "2034-09-17T07:24:44.477Z", + "stale_timestamp": "2034-09-03T07:24:44.477Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.477Z", + "updated": "2024-09-03T07:24:44.477Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "solid state", - "namespace": "overriding" + "key": "firewall", + "value": "open-source", + "namespace": "bypassing" }, { - "key": "feed", - "value": "primary", - "namespace": "copying" + "key": "sensor", + "value": "neural", + "namespace": "hacking" }, { - "key": "application", + "key": "firewall", "value": "multi-byte", - "namespace": "synthesizing" + "namespace": "generating" }, { - "key": "bus", - "value": "open-source", - "namespace": "parsing" + "key": "sensor", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "card", - "value": "digital", - "namespace": "generating" + "key": "microchip", + "value": "wireless", + "namespace": "backing up" } ], "type": "system", @@ -8754,7 +8745,7 @@ "Description of an error when requesting a non-existing System": { "value": { "errors": [ - "V2::System not found with ID e643a528-b40b-4fd4-85e8-84958cda0ee5" + "V2::System not found with ID 9a1faaae-85c4-48c2-83ad-85105fcc5734" ] }, "summary": "", @@ -8815,13 +8806,10 @@ "items": { "enum": [ "display_name", - "os_major_version", "os_minor_version", "groups", "display_name:asc", "display_name:desc", - "os_major_version:asc", - "os_major_version:desc", "os_minor_version:asc", "os_minor_version:desc", "groups:asc", @@ -8834,7 +8822,7 @@ "name": "filter", "in": "query", "required": false, - "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", + "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Systems are searchable using attributes `display_name`, `os_minor_version`, `assigned_or_scanned`, and `group_name`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", "schema": { "type": "string" } @@ -8863,39 +8851,39 @@ "value": { "data": [ { - "id": "0ede9c26-4d77-42e2-9d8d-bfad813b3920", - "display_name": "zemlak.example", + "id": "09c91ec2-377a-4cba-8bec-20df72b943ce", + "display_name": "russel.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.074Z", - "stale_timestamp": "2034-09-03T05:56:03.074Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.074Z", - "updated": "2024-09-03T05:56:03.074Z", + "culled_timestamp": "2034-09-17T07:24:44.548Z", + "stale_timestamp": "2034-09-03T07:24:44.548Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.548Z", + "updated": "2024-09-03T07:24:44.548Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "cross-platform", - "namespace": "navigating" + "key": "firewall", + "value": "digital", + "namespace": "programming" }, { - "key": "capacitor", + "key": "firewall", "value": "online", - "namespace": "parsing" + "namespace": "indexing" }, { - "key": "protocol", - "value": "open-source", - "namespace": "parsing" + "key": "port", + "value": "mobile", + "namespace": "compressing" }, { - "key": "interface", - "value": "neural", - "namespace": "quantifying" + "key": "circuit", + "value": "haptic", + "namespace": "connecting" }, { - "key": "interface", - "value": "back-end", - "namespace": "backing up" + "key": "program", + "value": "neural", + "namespace": "overriding" } ], "type": "system", @@ -8903,39 +8891,39 @@ "os_minor_version": 0 }, { - "id": "16aa8cc0-90ee-4682-90b0-e4193c35d6a1", - "display_name": "murphy-wintheiser.example", + "id": "09e95009-c177-49cf-9db7-9c995b8a021a", + "display_name": "robel.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.024Z", - "stale_timestamp": "2034-09-03T05:56:03.024Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.024Z", - "updated": "2024-09-03T05:56:03.024Z", + "culled_timestamp": "2034-09-17T07:24:44.604Z", + "stale_timestamp": "2034-09-03T07:24:44.604Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.604Z", + "updated": "2024-09-03T07:24:44.604Z", "insights_id": null, "tags": [ { "key": "card", - "value": "bluetooth", + "value": "haptic", "namespace": "copying" }, { - "key": "firewall", - "value": "back-end", - "namespace": "parsing" + "key": "bus", + "value": "multi-byte", + "namespace": "copying" }, { - "key": "circuit", - "value": "neural", - "namespace": "backing up" + "key": "array", + "value": "back-end", + "namespace": "compressing" }, { - "key": "microchip", - "value": "cross-platform", - "namespace": "quantifying" + "key": "firewall", + "value": "wireless", + "namespace": "overriding" }, { - "key": "driver", - "value": "optical", - "namespace": "hacking" + "key": "application", + "value": "multi-byte", + "namespace": "generating" } ], "type": "system", @@ -8943,39 +8931,39 @@ "os_minor_version": 0 }, { - "id": "1944c267-edf5-45ec-88d8-168cd0a43222", - "display_name": "wolf-koelpin.example", + "id": "11b21a54-6cfa-49ca-8309-7bfc5442a48a", + "display_name": "runolfsson-rice.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.112Z", - "stale_timestamp": "2034-09-03T05:56:03.112Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.112Z", - "updated": "2024-09-03T05:56:03.112Z", + "culled_timestamp": "2034-09-17T07:24:44.625Z", + "stale_timestamp": "2034-09-03T07:24:44.625Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.625Z", + "updated": "2024-09-03T07:24:44.625Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "primary", - "namespace": "generating" + "key": "transmitter", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "microchip", - "value": "1080p", - "namespace": "connecting" + "key": "program", + "value": "neural", + "namespace": "copying" }, { - "key": "bus", - "value": "mobile", - "namespace": "synthesizing" + "key": "sensor", + "value": "digital", + "namespace": "transmitting" }, { - "key": "panel", - "value": "digital", + "key": "capacitor", + "value": "bluetooth", "namespace": "synthesizing" }, { - "key": "driver", - "value": "auxiliary", - "namespace": "quantifying" + "key": "program", + "value": "bluetooth", + "namespace": "hacking" } ], "type": "system", @@ -8983,39 +8971,39 @@ "os_minor_version": 0 }, { - "id": "27382368-09de-4635-b017-8d9b187a1dcf", - "display_name": "macgyver.test", + "id": "177ecceb-7c26-4222-9268-05c7f4e8512c", + "display_name": "lockman.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.087Z", - "stale_timestamp": "2034-09-03T05:56:03.087Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.087Z", - "updated": "2024-09-03T05:56:03.087Z", + "culled_timestamp": "2034-09-17T07:24:44.560Z", + "stale_timestamp": "2034-09-03T07:24:44.560Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.560Z", + "updated": "2024-09-03T07:24:44.560Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "cross-platform", - "namespace": "overriding" + "key": "firewall", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "hard drive", - "value": "virtual", - "namespace": "overriding" + "key": "bandwidth", + "value": "online", + "namespace": "hacking" }, { - "key": "interface", - "value": "mobile", - "namespace": "synthesizing" + "key": "application", + "value": "neural", + "namespace": "indexing" }, { - "key": "card", - "value": "1080p", - "namespace": "copying" + "key": "bandwidth", + "value": "auxiliary", + "namespace": "overriding" }, { - "key": "matrix", - "value": "back-end", - "namespace": "calculating" + "key": "driver", + "value": "cross-platform", + "namespace": "generating" } ], "type": "system", @@ -9023,39 +9011,39 @@ "os_minor_version": 0 }, { - "id": "490b14d4-c9d9-4ef6-bdf7-c6446fe7b8f2", - "display_name": "satterfield.example", + "id": "20b3cdc2-4d20-478c-a18d-c238ee4cc5fe", + "display_name": "satterfield.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.037Z", - "stale_timestamp": "2034-09-03T05:56:03.037Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.037Z", - "updated": "2024-09-03T05:56:03.037Z", + "culled_timestamp": "2034-09-17T07:24:44.634Z", + "stale_timestamp": "2034-09-03T07:24:44.634Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.634Z", + "updated": "2024-09-03T07:24:44.634Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "optical", - "namespace": "programming" + "key": "protocol", + "value": "primary", + "namespace": "transmitting" }, { - "key": "transmitter", - "value": "open-source", - "namespace": "parsing" + "key": "hard drive", + "value": "digital", + "namespace": "backing up" }, { - "key": "port", - "value": "haptic", + "key": "matrix", + "value": "redundant", "namespace": "transmitting" }, { - "key": "array", - "value": "solid state", - "namespace": "calculating" + "key": "circuit", + "value": "online", + "namespace": "generating" }, { - "key": "feed", + "key": "monitor", "value": "cross-platform", - "namespace": "backing up" + "namespace": "transmitting" } ], "type": "system", @@ -9063,39 +9051,39 @@ "os_minor_version": 0 }, { - "id": "4a672888-ae55-4f46-b91a-706ef90598cc", - "display_name": "rice.example", + "id": "4a4ead8c-ed9b-425b-ae66-f44dfe6c86e6", + "display_name": "feeney.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.063Z", - "stale_timestamp": "2034-09-03T05:56:03.063Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.063Z", - "updated": "2024-09-03T05:56:03.063Z", + "culled_timestamp": "2034-09-17T07:24:44.594Z", + "stale_timestamp": "2034-09-03T07:24:44.594Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.594Z", + "updated": "2024-09-03T07:24:44.594Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "redundant", - "namespace": "hacking" + "key": "alarm", + "value": "primary", + "namespace": "generating" }, { - "key": "program", - "value": "virtual", - "namespace": "parsing" + "key": "pixel", + "value": "multi-byte", + "namespace": "hacking" }, { "key": "array", - "value": "cross-platform", - "namespace": "compressing" + "value": "1080p", + "namespace": "transmitting" }, { "key": "application", - "value": "wireless", - "namespace": "bypassing" + "value": "neural", + "namespace": "calculating" }, { - "key": "circuit", - "value": "wireless", - "namespace": "transmitting" + "key": "protocol", + "value": "online", + "namespace": "generating" } ], "type": "system", @@ -9103,39 +9091,39 @@ "os_minor_version": 0 }, { - "id": "4c7db6db-8536-405d-a6fd-4ffa3b399bb9", - "display_name": "rippin.test", + "id": "50baf24d-a81e-44f9-a678-90b88f9064ea", + "display_name": "ankunding.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.124Z", - "stale_timestamp": "2034-09-03T05:56:03.124Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.124Z", - "updated": "2024-09-03T05:56:03.124Z", + "culled_timestamp": "2034-09-17T07:24:44.612Z", + "stale_timestamp": "2034-09-03T07:24:44.612Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.612Z", + "updated": "2024-09-03T07:24:44.612Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "mobile", - "namespace": "bypassing" + "key": "circuit", + "value": "optical", + "namespace": "overriding" }, { - "key": "hard drive", + "key": "microchip", "value": "bluetooth", - "namespace": "compressing" + "namespace": "overriding" }, { - "key": "protocol", - "value": "solid state", - "namespace": "copying" + "key": "driver", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "card", - "value": "auxiliary", - "namespace": "generating" + "key": "sensor", + "value": "solid state", + "namespace": "bypassing" }, { - "key": "feed", - "value": "primary", - "namespace": "programming" + "key": "pixel", + "value": "1080p", + "namespace": "transmitting" } ], "type": "system", @@ -9143,38 +9131,38 @@ "os_minor_version": 0 }, { - "id": "70b8a20c-55c2-4b5c-bb3c-61f80050ca32", - "display_name": "luettgen.test", + "id": "57b93525-97dc-4ce2-ac31-33b1f458f170", + "display_name": "littel-lemke.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.092Z", - "stale_timestamp": "2034-09-03T05:56:03.092Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.092Z", - "updated": "2024-09-03T05:56:03.092Z", + "culled_timestamp": "2034-09-17T07:24:44.616Z", + "stale_timestamp": "2034-09-03T07:24:44.616Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.616Z", + "updated": "2024-09-03T07:24:44.616Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "mobile", - "namespace": "synthesizing" + "key": "monitor", + "value": "redundant", + "namespace": "parsing" }, { - "key": "array", - "value": "open-source", - "namespace": "overriding" + "key": "microchip", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "system", - "value": "cross-platform", - "namespace": "bypassing" + "key": "hard drive", + "value": "open-source", + "namespace": "navigating" }, { "key": "protocol", - "value": "solid state", - "namespace": "quantifying" + "value": "haptic", + "namespace": "compressing" }, { - "key": "array", - "value": "online", + "key": "driver", + "value": "virtual", "namespace": "parsing" } ], @@ -9183,39 +9171,39 @@ "os_minor_version": 0 }, { - "id": "7d56c897-0f9c-46a6-9584-84901cf4fc25", - "display_name": "blanda-bashirian.test", + "id": "6ffc510c-756a-4e72-a5c5-39d0fc20f916", + "display_name": "schmidt.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.138Z", - "stale_timestamp": "2034-09-03T05:56:03.138Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.138Z", - "updated": "2024-09-03T05:56:03.138Z", + "culled_timestamp": "2034-09-17T07:24:44.520Z", + "stale_timestamp": "2034-09-03T07:24:44.520Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.520Z", + "updated": "2024-09-03T07:24:44.520Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "multi-byte", - "namespace": "synthesizing" - }, - { - "key": "hard drive", - "value": "cross-platform", - "namespace": "indexing" + "key": "system", + "value": "haptic", + "namespace": "overriding" }, { "key": "panel", - "value": "optical", + "value": "wireless", "namespace": "indexing" }, { - "key": "microchip", - "value": "haptic", + "key": "panel", + "value": "auxiliary", "namespace": "connecting" }, { - "key": "monitor", + "key": "pixel", "value": "multi-byte", - "namespace": "compressing" + "namespace": "generating" + }, + { + "key": "protocol", + "value": "redundant", + "namespace": "bypassing" } ], "type": "system", @@ -9223,39 +9211,39 @@ "os_minor_version": 0 }, { - "id": "9f5ac71d-6f85-4673-b45b-ff1010f4fb58", - "display_name": "pacocha.example", + "id": "773954cf-b2e4-4153-be96-e1488e110641", + "display_name": "heidenreich.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.059Z", - "stale_timestamp": "2034-09-03T05:56:03.059Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.059Z", - "updated": "2024-09-03T05:56:03.059Z", + "culled_timestamp": "2034-09-17T07:24:44.589Z", + "stale_timestamp": "2034-09-03T07:24:44.589Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.589Z", + "updated": "2024-09-03T07:24:44.590Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "redundant", - "namespace": "generating" + "key": "sensor", + "value": "digital", + "namespace": "overriding" }, { - "key": "microchip", - "value": "solid state", - "namespace": "indexing" + "key": "panel", + "value": "mobile", + "namespace": "synthesizing" }, { - "key": "system", - "value": "redundant", - "namespace": "calculating" + "key": "circuit", + "value": "wireless", + "namespace": "generating" }, { - "key": "capacitor", - "value": "neural", - "namespace": "connecting" + "key": "bandwidth", + "value": "back-end", + "namespace": "hacking" }, { - "key": "interface", - "value": "open-source", - "namespace": "indexing" + "key": "application", + "value": "mobile", + "namespace": "parsing" } ], "type": "system", @@ -9270,50 +9258,50 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/fd1e8bea-75dc-42a7-93d2-aab5162a641c/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/fd1e8bea-75dc-42a7-93d2-aab5162a641c/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/fd1e8bea-75dc-42a7-93d2-aab5162a641c/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/46da7eea-de71-4be9-a5cf-fc202cc7bd18/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/46da7eea-de71-4be9-a5cf-fc202cc7bd18/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/46da7eea-de71-4be9-a5cf-fc202cc7bd18/systems?limit=10&offset=10" } }, "summary": "", "description": "" }, - "List of Systems sorted by \"os_major_version:asc\"": { + "List of Systems sorted by \"os_minor_version:asc\"": { "value": { "data": [ { - "id": "165dd83f-27fd-4e38-8c5c-67c4a1222181", - "display_name": "marquardt.test", + "id": "0eeb2bd7-7806-4c92-ba0c-592720ec9e40", + "display_name": "leffler-boyer.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.248Z", - "stale_timestamp": "2034-09-03T05:56:03.248Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.248Z", - "updated": "2024-09-03T05:56:03.248Z", + "culled_timestamp": "2034-09-17T07:24:44.709Z", + "stale_timestamp": "2034-09-03T07:24:44.709Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.709Z", + "updated": "2024-09-03T07:24:44.709Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "multi-byte", - "namespace": "navigating" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "parsing" }, { - "key": "panel", - "value": "neural", - "namespace": "parsing" + "key": "monitor", + "value": "haptic", + "namespace": "programming" }, { - "key": "port", - "value": "optical", - "namespace": "parsing" + "key": "program", + "value": "online", + "namespace": "synthesizing" }, { - "key": "pixel", - "value": "auxiliary", - "namespace": "parsing" + "key": "program", + "value": "mobile", + "namespace": "programming" }, { - "key": "application", - "value": "haptic", + "key": "sensor", + "value": "multi-byte", "namespace": "compressing" } ], @@ -9322,39 +9310,39 @@ "os_minor_version": 0 }, { - "id": "1d8aac31-717f-436f-baaf-509138bcbbbd", - "display_name": "sipes.test", + "id": "157c2cbc-099f-4940-9cdc-e827bda01ac1", + "display_name": "harber.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.181Z", - "stale_timestamp": "2034-09-03T05:56:03.181Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.181Z", - "updated": "2024-09-03T05:56:03.181Z", + "culled_timestamp": "2034-09-17T07:24:44.673Z", + "stale_timestamp": "2034-09-03T07:24:44.673Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.673Z", + "updated": "2024-09-03T07:24:44.673Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "auxiliary", - "namespace": "programming" - }, - { - "key": "microchip", + "key": "firewall", "value": "1080p", - "namespace": "programming" + "namespace": "transmitting" }, { - "key": "circuit", - "value": "optical", + "key": "array", + "value": "open-source", "namespace": "calculating" }, { - "key": "hard drive", - "value": "auxiliary", - "namespace": "navigating" + "key": "capacitor", + "value": "primary", + "namespace": "indexing" }, { - "key": "circuit", - "value": "redundant", - "namespace": "navigating" + "key": "feed", + "value": "open-source", + "namespace": "quantifying" + }, + { + "key": "panel", + "value": "wireless", + "namespace": "synthesizing" } ], "type": "system", @@ -9362,39 +9350,39 @@ "os_minor_version": 0 }, { - "id": "260814c5-73dc-48c0-9aed-f3c1c2bdc94f", - "display_name": "fay.example", + "id": "32a3ddef-945e-4f34-a9b5-82203be4418a", + "display_name": "stracke.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.221Z", - "stale_timestamp": "2034-09-03T05:56:03.221Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.221Z", - "updated": "2024-09-03T05:56:03.221Z", + "culled_timestamp": "2034-09-17T07:24:44.681Z", + "stale_timestamp": "2034-09-03T07:24:44.681Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.681Z", + "updated": "2024-09-03T07:24:44.681Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "virtual", - "namespace": "transmitting" + "key": "bandwidth", + "value": "online", + "namespace": "backing up" }, { - "key": "transmitter", - "value": "primary", - "namespace": "compressing" + "key": "bus", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "transmitter", - "value": "1080p", + "key": "driver", + "value": "neural", "namespace": "parsing" }, { - "key": "bandwidth", - "value": "wireless", - "namespace": "overriding" + "key": "bus", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "driver", - "value": "mobile", - "namespace": "programming" + "key": "circuit", + "value": "digital", + "namespace": "navigating" } ], "type": "system", @@ -9402,39 +9390,39 @@ "os_minor_version": 0 }, { - "id": "31d71445-74cd-4dcc-ae54-1d50e2113637", - "display_name": "thiel.test", + "id": "4a253f5c-30c9-4fb7-83f0-7407fb7c636e", + "display_name": "murazik.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.252Z", - "stale_timestamp": "2034-09-03T05:56:03.252Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.252Z", - "updated": "2024-09-03T05:56:03.252Z", + "culled_timestamp": "2034-09-17T07:24:44.677Z", + "stale_timestamp": "2034-09-03T07:24:44.677Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.677Z", + "updated": "2024-09-03T07:24:44.677Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "auxiliary", - "namespace": "indexing" + "key": "firewall", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "sensor", - "value": "bluetooth", - "namespace": "transmitting" + "key": "port", + "value": "1080p", + "namespace": "programming" }, { - "key": "port", - "value": "virtual", - "namespace": "generating" + "key": "sensor", + "value": "bluetooth", + "namespace": "indexing" }, { - "key": "array", - "value": "virtual", + "key": "card", + "value": "haptic", "namespace": "hacking" }, { - "key": "system", - "value": "wireless", - "namespace": "calculating" + "key": "alarm", + "value": "digital", + "namespace": "parsing" } ], "type": "system", @@ -9442,39 +9430,39 @@ "os_minor_version": 0 }, { - "id": "3e3df677-7d5a-446e-89c8-40a40c7eb003", - "display_name": "macgyver-bechtelar.example", + "id": "4e4c2fc3-3461-4219-aeb0-eeef857000c8", + "display_name": "ernser-okeefe.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.265Z", - "stale_timestamp": "2034-09-03T05:56:03.265Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.265Z", - "updated": "2024-09-03T05:56:03.265Z", + "culled_timestamp": "2034-09-17T07:24:44.762Z", + "stale_timestamp": "2034-09-03T07:24:44.762Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.762Z", + "updated": "2024-09-03T07:24:44.762Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "online", - "namespace": "calculating" + "key": "panel", + "value": "back-end", + "namespace": "parsing" }, { - "key": "panel", - "value": "haptic", - "namespace": "navigating" + "key": "feed", + "value": "solid state", + "namespace": "hacking" }, { - "key": "alarm", - "value": "haptic", - "namespace": "compressing" + "key": "pixel", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "program", - "value": "multi-byte", - "namespace": "connecting" + "key": "card", + "value": "optical", + "namespace": "overriding" }, { - "key": "sensor", + "key": "capacitor", "value": "online", - "namespace": "generating" + "namespace": "synthesizing" } ], "type": "system", @@ -9482,39 +9470,39 @@ "os_minor_version": 0 }, { - "id": "404690a2-b3b3-42a2-80fb-4d1bde79201f", - "display_name": "watsica.example", + "id": "574f1976-367d-4993-8d84-8dceeed69b95", + "display_name": "parker.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.190Z", - "stale_timestamp": "2034-09-03T05:56:03.190Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.190Z", - "updated": "2024-09-03T05:56:03.190Z", + "culled_timestamp": "2034-09-17T07:24:44.758Z", + "stale_timestamp": "2034-09-03T07:24:44.758Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.758Z", + "updated": "2024-09-03T07:24:44.758Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "optical", - "namespace": "hacking" + "key": "system", + "value": "solid state", + "namespace": "calculating" }, { - "key": "pixel", - "value": "digital", - "namespace": "connecting" + "key": "circuit", + "value": "solid state", + "namespace": "compressing" }, { - "key": "feed", - "value": "haptic", - "namespace": "synthesizing" + "key": "transmitter", + "value": "solid state", + "namespace": "hacking" }, { - "key": "sensor", + "key": "bandwidth", "value": "open-source", - "namespace": "parsing" + "namespace": "hacking" }, { - "key": "microchip", - "value": "mobile", - "namespace": "backing up" + "key": "alarm", + "value": "auxiliary", + "namespace": "compressing" } ], "type": "system", @@ -9522,39 +9510,39 @@ "os_minor_version": 0 }, { - "id": "4d2f0342-68e2-4c8b-aacf-4b0c0becad4e", - "display_name": "sporer-willms.test", + "id": "6e376a0f-3ec5-45ae-87f1-a38ab5185ae3", + "display_name": "hoppe-kerluke.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.203Z", - "stale_timestamp": "2034-09-03T05:56:03.203Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.203Z", - "updated": "2024-09-03T05:56:03.203Z", + "culled_timestamp": "2034-09-17T07:24:44.766Z", + "stale_timestamp": "2034-09-03T07:24:44.766Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.766Z", + "updated": "2024-09-03T07:24:44.766Z", "insights_id": null, "tags": [ - { - "key": "capacitor", - "value": "cross-platform", - "namespace": "hacking" - }, { "key": "application", - "value": "mobile", - "namespace": "parsing" + "value": "haptic", + "namespace": "backing up" }, { - "key": "monitor", + "key": "alarm", "value": "wireless", - "namespace": "overriding" + "namespace": "hacking" }, { - "key": "alarm", - "value": "haptic", - "namespace": "programming" + "key": "program", + "value": "redundant", + "namespace": "synthesizing" }, { - "key": "panel", - "value": "redundant", - "namespace": "indexing" + "key": "transmitter", + "value": "optical", + "namespace": "bypassing" + }, + { + "key": "program", + "value": "bluetooth", + "namespace": "copying" } ], "type": "system", @@ -9562,39 +9550,39 @@ "os_minor_version": 0 }, { - "id": "51c93a9d-9d1d-4c2d-a110-ed90766fdbb6", - "display_name": "bruen-murray.test", + "id": "7914f087-8cf3-4304-9d74-86a4681779fe", + "display_name": "erdman.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.281Z", - "stale_timestamp": "2034-09-03T05:56:03.281Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.281Z", - "updated": "2024-09-03T05:56:03.281Z", + "culled_timestamp": "2034-09-17T07:24:44.719Z", + "stale_timestamp": "2034-09-03T07:24:44.719Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.719Z", + "updated": "2024-09-03T07:24:44.719Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "solid state", - "namespace": "transmitting" + "key": "array", + "value": "wireless", + "namespace": "compressing" }, { - "key": "system", - "value": "mobile", - "namespace": "hacking" + "key": "port", + "value": "redundant", + "namespace": "quantifying" }, { "key": "microchip", - "value": "digital", - "namespace": "compressing" + "value": "back-end", + "namespace": "programming" }, { - "key": "interface", - "value": "wireless", - "namespace": "connecting" + "key": "monitor", + "value": "bluetooth", + "namespace": "quantifying" }, { - "key": "port", - "value": "wireless", - "namespace": "programming" + "key": "hard drive", + "value": "primary", + "namespace": "compressing" } ], "type": "system", @@ -9602,38 +9590,38 @@ "os_minor_version": 0 }, { - "id": "525294f4-e0a5-45ba-b24d-852bac949bdf", - "display_name": "hodkiewicz.test", + "id": "8d1119f7-0d80-48cd-991d-778b6d9b5114", + "display_name": "ritchie-mitchell.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.177Z", - "stale_timestamp": "2034-09-03T05:56:03.177Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.177Z", - "updated": "2024-09-03T05:56:03.177Z", + "culled_timestamp": "2034-09-17T07:24:44.698Z", + "stale_timestamp": "2034-09-03T07:24:44.698Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.698Z", + "updated": "2024-09-03T07:24:44.698Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "back-end", - "namespace": "calculating" + "key": "circuit", + "value": "optical", + "namespace": "programming" }, { - "key": "matrix", - "value": "optical", - "namespace": "backing up" + "key": "driver", + "value": "neural", + "namespace": "indexing" }, { - "key": "microchip", - "value": "1080p", - "namespace": "compressing" + "key": "system", + "value": "optical", + "namespace": "transmitting" }, { - "key": "feed", - "value": "digital", - "namespace": "programming" + "key": "driver", + "value": "1080p", + "namespace": "calculating" }, { - "key": "card", - "value": "online", + "key": "bandwidth", + "value": "auxiliary", "namespace": "connecting" } ], @@ -9642,39 +9630,39 @@ "os_minor_version": 0 }, { - "id": "6c700891-1ae5-4e37-836e-f18a9659614f", - "display_name": "carroll-barton.test", + "id": "930d4a07-1f07-4a57-984a-5346d8a27651", + "display_name": "morissette-roob.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.273Z", - "stale_timestamp": "2034-09-03T05:56:03.273Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.273Z", - "updated": "2024-09-03T05:56:03.273Z", + "culled_timestamp": "2034-09-17T07:24:44.771Z", + "stale_timestamp": "2034-09-03T07:24:44.771Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.771Z", + "updated": "2024-09-03T07:24:44.771Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "redundant", - "namespace": "programming" + "key": "interface", + "value": "1080p", + "namespace": "parsing" }, { - "key": "program", - "value": "solid state", + "key": "alarm", + "value": "cross-platform", "namespace": "transmitting" }, { - "key": "matrix", - "value": "mobile", - "namespace": "generating" + "key": "pixel", + "value": "cross-platform", + "namespace": "copying" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "transmitting" + "key": "interface", + "value": "optical", + "namespace": "bypassing" }, { - "key": "sensor", - "value": "cross-platform", - "namespace": "calculating" + "key": "card", + "value": "haptic", + "namespace": "indexing" } ], "type": "system", @@ -9687,54 +9675,54 @@ "tags": [], "limit": 10, "offset": 0, - "sort_by": "os_major_version" + "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/policies/ad6062c1-b840-4185-af62-241354c10dc0/systems?limit=10&offset=0&sort_by=os_major_version", - "last": "/api/compliance/v2/policies/ad6062c1-b840-4185-af62-241354c10dc0/systems?limit=10&offset=20&sort_by=os_major_version", - "next": "/api/compliance/v2/policies/ad6062c1-b840-4185-af62-241354c10dc0/systems?limit=10&offset=10&sort_by=os_major_version" + "first": "/api/compliance/v2/policies/b3061bef-d9bf-4146-8805-17b9d0c27cd8/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/b3061bef-d9bf-4146-8805-17b9d0c27cd8/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/b3061bef-d9bf-4146-8805-17b9d0c27cd8/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", "description": "" }, - "List of Systems filtered by \"(os_major_version=8)\"": { + "List of Systems filtered by \"(os_minor_version=0)\"": { "value": { "data": [ { - "id": "01985507-0adf-479d-b1e5-132ace75f0e2", - "display_name": "gislason-okuneva.test", + "id": "07ebf8ad-51f3-4207-a643-7987171ea155", + "display_name": "boyle-cartwright.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.377Z", - "stale_timestamp": "2034-09-03T05:56:03.377Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.377Z", - "updated": "2024-09-03T05:56:03.377Z", + "culled_timestamp": "2034-09-17T07:24:44.916Z", + "stale_timestamp": "2034-09-03T07:24:44.916Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.916Z", + "updated": "2024-09-03T07:24:44.916Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "digital", - "namespace": "calculating" + "key": "application", + "value": "back-end", + "namespace": "overriding" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "backing up" + "key": "system", + "value": "bluetooth", + "namespace": "navigating" }, { - "key": "driver", - "value": "solid state", - "namespace": "synthesizing" + "key": "card", + "value": "primary", + "namespace": "parsing" }, { - "key": "hard drive", - "value": "neural", - "namespace": "compressing" + "key": "monitor", + "value": "solid state", + "namespace": "indexing" }, { "key": "pixel", - "value": "haptic", - "namespace": "compressing" + "value": "multi-byte", + "namespace": "generating" } ], "type": "system", @@ -9742,39 +9730,39 @@ "os_minor_version": 0 }, { - "id": "05b7783f-b2e8-4488-a1d5-2833dcaacc16", - "display_name": "collins.example", + "id": "168f0cf9-e145-402c-a338-a39a43e23a4e", + "display_name": "gutkowski.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.420Z", - "stale_timestamp": "2034-09-03T05:56:03.420Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.420Z", - "updated": "2024-09-03T05:56:03.420Z", + "culled_timestamp": "2034-09-17T07:24:44.867Z", + "stale_timestamp": "2034-09-03T07:24:44.867Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.867Z", + "updated": "2024-09-03T07:24:44.867Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "neural", - "namespace": "quantifying" + "key": "hard drive", + "value": "solid state", + "namespace": "compressing" }, { - "key": "capacitor", - "value": "cross-platform", - "namespace": "bypassing" + "key": "driver", + "value": "redundant", + "namespace": "backing up" }, { - "key": "program", + "key": "card", "value": "open-source", - "namespace": "synthesizing" + "namespace": "navigating" }, { - "key": "feed", - "value": "mobile", - "namespace": "overriding" + "key": "microchip", + "value": "neural", + "namespace": "synthesizing" }, { - "key": "bandwidth", - "value": "solid state", - "namespace": "quantifying" + "key": "microchip", + "value": "1080p", + "namespace": "backing up" } ], "type": "system", @@ -9782,39 +9770,39 @@ "os_minor_version": 0 }, { - "id": "0f8e8092-08d8-402e-b42d-1fb727ab1047", - "display_name": "nader.example", + "id": "19d3d85e-2518-492a-8f4e-7af14e7010ac", + "display_name": "bosco.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.401Z", - "stale_timestamp": "2034-09-03T05:56:03.401Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.401Z", - "updated": "2024-09-03T05:56:03.401Z", + "culled_timestamp": "2034-09-17T07:24:44.821Z", + "stale_timestamp": "2034-09-03T07:24:44.821Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.821Z", + "updated": "2024-09-03T07:24:44.821Z", "insights_id": null, "tags": [ { - "key": "card", - "value": "virtual", - "namespace": "connecting" + "key": "matrix", + "value": "open-source", + "namespace": "navigating" }, { - "key": "application", - "value": "wireless", - "namespace": "connecting" + "key": "firewall", + "value": "redundant", + "namespace": "compressing" }, { "key": "program", - "value": "multi-byte", - "namespace": "transmitting" + "value": "redundant", + "namespace": "parsing" }, { - "key": "program", - "value": "neural", - "namespace": "parsing" + "key": "pixel", + "value": "online", + "namespace": "connecting" }, { - "key": "feed", - "value": "digital", - "namespace": "backing up" + "key": "system", + "value": "online", + "namespace": "parsing" } ], "type": "system", @@ -9822,39 +9810,39 @@ "os_minor_version": 0 }, { - "id": "1eeca473-1e3c-466d-8af3-688d47de0300", - "display_name": "pfeffer.example", + "id": "1be19f38-9b30-447f-bdb8-4480b8180fbf", + "display_name": "pagac.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.396Z", - "stale_timestamp": "2034-09-03T05:56:03.396Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.396Z", - "updated": "2024-09-03T05:56:03.396Z", + "culled_timestamp": "2034-09-17T07:24:44.876Z", + "stale_timestamp": "2034-09-03T07:24:44.876Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.876Z", + "updated": "2024-09-03T07:24:44.876Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "back-end", + "key": "protocol", + "value": "cross-platform", "namespace": "connecting" }, { - "key": "program", - "value": "primary", - "namespace": "generating" + "key": "capacitor", + "value": "virtual", + "namespace": "quantifying" }, { - "key": "driver", - "value": "neural", - "namespace": "calculating" + "key": "bus", + "value": "bluetooth", + "namespace": "synthesizing" }, { "key": "matrix", - "value": "wireless", - "namespace": "hacking" + "value": "bluetooth", + "namespace": "synthesizing" }, { - "key": "port", - "value": "virtual", - "namespace": "quantifying" + "key": "bandwidth", + "value": "haptic", + "namespace": "generating" } ], "type": "system", @@ -9862,39 +9850,39 @@ "os_minor_version": 0 }, { - "id": "21f8db09-5aee-4f0d-b66d-0ffc8a6301cc", - "display_name": "medhurst.example", + "id": "27fb5010-e1f9-457c-9788-8d2033434fed", + "display_name": "fadel.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.333Z", - "stale_timestamp": "2034-09-03T05:56:03.333Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.333Z", - "updated": "2024-09-03T05:56:03.333Z", + "culled_timestamp": "2034-09-17T07:24:44.902Z", + "stale_timestamp": "2034-09-03T07:24:44.902Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.902Z", + "updated": "2024-09-03T07:24:44.902Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "multi-byte", - "namespace": "navigating" + "key": "bus", + "value": "virtual", + "namespace": "hacking" }, { - "key": "port", - "value": "bluetooth", - "namespace": "parsing" + "key": "circuit", + "value": "optical", + "namespace": "compressing" }, { - "key": "hard drive", - "value": "mobile", - "namespace": "overriding" + "key": "bandwidth", + "value": "cross-platform", + "namespace": "copying" }, { - "key": "feed", - "value": "optical", - "namespace": "programming" + "key": "application", + "value": "multi-byte", + "namespace": "quantifying" }, { - "key": "system", - "value": "mobile", - "namespace": "programming" + "key": "array", + "value": "haptic", + "namespace": "navigating" } ], "type": "system", @@ -9902,39 +9890,39 @@ "os_minor_version": 0 }, { - "id": "2645eb22-7201-4cab-ab71-69e002b4e44f", - "display_name": "runolfsdottir-little.test", + "id": "2945dc9c-2a2a-4c68-8d3b-f06723436f38", + "display_name": "gislason.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.337Z", - "stale_timestamp": "2034-09-03T05:56:03.337Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.337Z", - "updated": "2024-09-03T05:56:03.337Z", + "culled_timestamp": "2034-09-17T07:24:44.831Z", + "stale_timestamp": "2034-09-03T07:24:44.831Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.831Z", + "updated": "2024-09-03T07:24:44.831Z", "insights_id": null, "tags": [ { - "key": "card", + "key": "bus", "value": "redundant", - "namespace": "indexing" + "namespace": "copying" }, { - "key": "port", - "value": "open-source", - "namespace": "transmitting" + "key": "hard drive", + "value": "back-end", + "namespace": "calculating" }, { - "key": "capacitor", - "value": "back-end", - "namespace": "quantifying" + "key": "card", + "value": "virtual", + "namespace": "hacking" }, { - "key": "system", - "value": "redundant", - "namespace": "transmitting" + "key": "array", + "value": "primary", + "namespace": "hacking" }, { - "key": "capacitor", - "value": "haptic", - "namespace": "navigating" + "key": "firewall", + "value": "virtual", + "namespace": "bypassing" } ], "type": "system", @@ -9942,39 +9930,39 @@ "os_minor_version": 0 }, { - "id": "27516015-6511-4697-a77f-1253da736552", - "display_name": "davis-rogahn.example", + "id": "31a19a83-139a-4d2d-b6ca-12a8dfe4025e", + "display_name": "farrell.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.329Z", - "stale_timestamp": "2034-09-03T05:56:03.329Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.329Z", - "updated": "2024-09-03T05:56:03.329Z", + "culled_timestamp": "2034-09-17T07:24:44.854Z", + "stale_timestamp": "2034-09-03T07:24:44.854Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.854Z", + "updated": "2024-09-03T07:24:44.854Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "1080p", - "namespace": "parsing" + "key": "panel", + "value": "wireless", + "namespace": "hacking" }, { - "key": "monitor", - "value": "virtual", - "namespace": "parsing" + "key": "program", + "value": "solid state", + "namespace": "backing up" }, { - "key": "array", - "value": "cross-platform", - "namespace": "bypassing" + "key": "bandwidth", + "value": "virtual", + "namespace": "programming" }, { - "key": "port", - "value": "primary", - "namespace": "compressing" + "key": "driver", + "value": "solid state", + "namespace": "navigating" }, { - "key": "microchip", - "value": "1080p", - "namespace": "compressing" + "key": "circuit", + "value": "solid state", + "namespace": "indexing" } ], "type": "system", @@ -9982,39 +9970,39 @@ "os_minor_version": 0 }, { - "id": "3f9447d6-009c-495d-bef1-11f106066cef", - "display_name": "kovacek.test", + "id": "49efe978-6e85-4153-8bfc-11438a68add8", + "display_name": "walker.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.364Z", - "stale_timestamp": "2034-09-03T05:56:03.364Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.364Z", - "updated": "2024-09-03T05:56:03.364Z", + "culled_timestamp": "2034-09-17T07:24:44.805Z", + "stale_timestamp": "2034-09-03T07:24:44.805Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.805Z", + "updated": "2024-09-03T07:24:44.805Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "back-end", - "namespace": "overriding" + "key": "system", + "value": "haptic", + "namespace": "navigating" }, { - "key": "microchip", - "value": "multi-byte", - "namespace": "copying" + "key": "circuit", + "value": "optical", + "namespace": "parsing" }, { - "key": "bandwidth", - "value": "redundant", - "namespace": "generating" + "key": "microchip", + "value": "bluetooth", + "namespace": "programming" }, { - "key": "panel", - "value": "multi-byte", - "namespace": "hacking" + "key": "hard drive", + "value": "solid state", + "namespace": "compressing" }, { - "key": "matrix", - "value": "cross-platform", - "namespace": "calculating" + "key": "firewall", + "value": "1080p", + "namespace": "transmitting" } ], "type": "system", @@ -10022,39 +10010,39 @@ "os_minor_version": 0 }, { - "id": "4460783c-edf4-483f-afd5-7a33774aaeb2", - "display_name": "rempel.test", + "id": "4c154ecf-fe63-4e65-9656-d184e4b94bbf", + "display_name": "rice.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.346Z", - "stale_timestamp": "2034-09-03T05:56:03.346Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.346Z", - "updated": "2024-09-03T05:56:03.346Z", + "culled_timestamp": "2034-09-17T07:24:44.863Z", + "stale_timestamp": "2034-09-03T07:24:44.863Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.863Z", + "updated": "2024-09-03T07:24:44.863Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "redundant", - "namespace": "navigating" + "key": "sensor", + "value": "neural", + "namespace": "generating" }, { - "key": "bus", - "value": "primary", - "namespace": "compressing" + "key": "capacitor", + "value": "solid state", + "namespace": "generating" }, { - "key": "program", - "value": "digital", - "namespace": "parsing" + "key": "circuit", + "value": "1080p", + "namespace": "quantifying" }, { - "key": "system", - "value": "multi-byte", - "namespace": "compressing" + "key": "monitor", + "value": "wireless", + "namespace": "calculating" }, { - "key": "program", - "value": "bluetooth", - "namespace": "copying" + "key": "monitor", + "value": "cross-platform", + "namespace": "navigating" } ], "type": "system", @@ -10062,39 +10050,39 @@ "os_minor_version": 0 }, { - "id": "461d17e5-e015-4e11-9e75-ea7802927d93", - "display_name": "weissnat-waters.example", + "id": "582f7ee8-6ca4-43da-a095-4a63b4b196d3", + "display_name": "leuschke-farrell.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.325Z", - "stale_timestamp": "2034-09-03T05:56:03.325Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.325Z", - "updated": "2024-09-03T05:56:03.325Z", + "culled_timestamp": "2034-09-17T07:24:44.907Z", + "stale_timestamp": "2034-09-03T07:24:44.907Z", + "stale_warning_timestamp": "2034-09-10T07:24:44.907Z", + "updated": "2024-09-03T07:24:44.907Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "redundant", - "namespace": "copying" + "key": "transmitter", + "value": "optical", + "namespace": "compressing" }, { - "key": "system", - "value": "neural", - "namespace": "synthesizing" + "key": "firewall", + "value": "digital", + "namespace": "programming" }, { - "key": "card", - "value": "bluetooth", - "namespace": "transmitting" + "key": "matrix", + "value": "cross-platform", + "namespace": "calculating" }, { - "key": "circuit", - "value": "open-source", - "namespace": "transmitting" + "key": "matrix", + "value": "back-end", + "namespace": "quantifying" }, { - "key": "monitor", - "value": "wireless", - "namespace": "connecting" + "key": "firewall", + "value": "online", + "namespace": "navigating" } ], "type": "system", @@ -10104,15 +10092,15 @@ ], "meta": { "total": 25, - "filter": "(os_major_version=8)", + "filter": "(os_minor_version=0)", "tags": [], "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/dfabbc2e-3407-4c59-a98d-ea56d2f8be29/systems?filter=%28os_major_version%3D8%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/dfabbc2e-3407-4c59-a98d-ea56d2f8be29/systems?filter=%28os_major_version%3D8%29&limit=10&offset=20", - "next": "/api/compliance/v2/policies/dfabbc2e-3407-4c59-a98d-ea56d2f8be29/systems?filter=%28os_major_version%3D8%29&limit=10&offset=10" + "first": "/api/compliance/v2/policies/9f0b5afa-c905-4c67-b045-7d01932ffaa6/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/9f0b5afa-c905-4c67-b045-7d01932ffaa6/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/policies/9f0b5afa-c905-4c67-b045-7d01932ffaa6/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -10211,39 +10199,39 @@ "value": { "data": [ { - "id": "13241069-0797-499d-9c52-f2a6046e2b09", - "display_name": "adams.example", + "id": "00ffec00-68da-4f18-aaf2-9b0d8f54589a", + "display_name": "hyatt.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.867Z", - "stale_timestamp": "2034-09-03T05:56:03.867Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.867Z", - "updated": "2024-09-03T05:56:03.867Z", + "culled_timestamp": "2034-09-17T07:24:45.415Z", + "stale_timestamp": "2034-09-03T07:24:45.415Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.415Z", + "updated": "2024-09-03T07:24:45.415Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "mobile", - "namespace": "transmitting" + "key": "panel", + "value": "virtual", + "namespace": "synthesizing" }, { "key": "firewall", - "value": "digital", - "namespace": "connecting" + "value": "open-source", + "namespace": "quantifying" }, { - "key": "alarm", - "value": "online", - "namespace": "backing up" + "key": "microchip", + "value": "virtual", + "namespace": "quantifying" }, { - "key": "system", - "value": "cross-platform", - "namespace": "backing up" + "key": "port", + "value": "primary", + "namespace": "copying" }, { - "key": "circuit", - "value": "multi-byte", - "namespace": "navigating" + "key": "panel", + "value": "primary", + "namespace": "parsing" } ], "type": "system", @@ -10251,39 +10239,39 @@ "os_minor_version": 0 }, { - "id": "2737e4da-30f6-4bce-bb70-24055cd87792", - "display_name": "hickle-ortiz.test", + "id": "02b48112-ead8-4199-a379-7c4a83ed64cb", + "display_name": "mclaughlin.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.861Z", - "stale_timestamp": "2034-09-03T05:56:03.861Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.861Z", - "updated": "2024-09-03T05:56:03.861Z", + "culled_timestamp": "2034-09-17T07:24:45.416Z", + "stale_timestamp": "2034-09-03T07:24:45.416Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.416Z", + "updated": "2024-09-03T07:24:45.416Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "digital", + "key": "protocol", + "value": "bluetooth", "namespace": "synthesizing" }, { - "key": "bandwidth", - "value": "neural", - "namespace": "overriding" - }, - { - "key": "bandwidth", - "value": "solid state", + "key": "system", + "value": "mobile", "namespace": "hacking" }, { - "key": "pixel", - "value": "back-end", - "namespace": "backing up" + "key": "driver", + "value": "mobile", + "namespace": "parsing" }, { - "key": "bandwidth", - "value": "haptic", - "namespace": "overriding" + "key": "circuit", + "value": "neural", + "namespace": "bypassing" + }, + { + "key": "application", + "value": "wireless", + "namespace": "hacking" } ], "type": "system", @@ -10291,39 +10279,39 @@ "os_minor_version": 0 }, { - "id": "2b0fdcc1-fd7d-479a-806f-39a2665d0bbc", - "display_name": "blick-fadel.example", + "id": "1a4c67e3-f781-4de5-bca2-a02d2ac48c88", + "display_name": "conn.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.872Z", - "stale_timestamp": "2034-09-03T05:56:03.872Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.872Z", - "updated": "2024-09-03T05:56:03.872Z", + "culled_timestamp": "2034-09-17T07:24:45.425Z", + "stale_timestamp": "2034-09-03T07:24:45.425Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.425Z", + "updated": "2024-09-03T07:24:45.425Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "mobile", - "namespace": "programming" + "key": "driver", + "value": "digital", + "namespace": "generating" }, { - "key": "transmitter", - "value": "bluetooth", - "namespace": "transmitting" + "key": "monitor", + "value": "optical", + "namespace": "calculating" }, { - "key": "port", - "value": "online", - "namespace": "generating" + "key": "driver", + "value": "solid state", + "namespace": "bypassing" }, { - "key": "panel", - "value": "optical", - "namespace": "hacking" + "key": "matrix", + "value": "online", + "namespace": "indexing" }, { - "key": "circuit", - "value": "neural", - "namespace": "connecting" + "key": "bandwidth", + "value": "multi-byte", + "namespace": "programming" } ], "type": "system", @@ -10331,39 +10319,39 @@ "os_minor_version": 0 }, { - "id": "2bf4354f-1bb0-4818-8476-cba68f2c58cf", - "display_name": "cummings-dooley.example", + "id": "1e8c0a48-8053-43d7-9ed6-a615e758bb3d", + "display_name": "cruickshank.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.858Z", - "stale_timestamp": "2034-09-03T05:56:03.858Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.858Z", - "updated": "2024-09-03T05:56:03.858Z", + "culled_timestamp": "2034-09-17T07:24:45.424Z", + "stale_timestamp": "2034-09-03T07:24:45.424Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.424Z", + "updated": "2024-09-03T07:24:45.424Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "solid state", - "namespace": "programming" + "key": "transmitter", + "value": "1080p", + "namespace": "connecting" }, { "key": "interface", - "value": "wireless", - "namespace": "quantifying" + "value": "online", + "namespace": "backing up" }, { - "key": "pixel", - "value": "wireless", - "namespace": "hacking" + "key": "protocol", + "value": "back-end", + "namespace": "parsing" }, { - "key": "interface", - "value": "online", - "namespace": "navigating" + "key": "transmitter", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "monitor", - "value": "online", - "namespace": "indexing" + "key": "interface", + "value": "1080p", + "namespace": "bypassing" } ], "type": "system", @@ -10371,39 +10359,39 @@ "os_minor_version": 0 }, { - "id": "303736a5-c90a-477d-a2b9-5f17d14b82c0", - "display_name": "fahey-abshire.test", + "id": "254423d7-c1d9-448f-bfdf-30ab13184f32", + "display_name": "kertzmann-haag.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.872Z", - "stale_timestamp": "2034-09-03T05:56:03.872Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.872Z", - "updated": "2024-09-03T05:56:03.872Z", + "culled_timestamp": "2034-09-17T07:24:45.423Z", + "stale_timestamp": "2034-09-03T07:24:45.423Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.423Z", + "updated": "2024-09-03T07:24:45.423Z", "insights_id": null, "tags": [ { - "key": "sensor", + "key": "program", "value": "redundant", "namespace": "hacking" }, { - "key": "transmitter", - "value": "neural", - "namespace": "indexing" + "key": "driver", + "value": "virtual", + "namespace": "compressing" }, { - "key": "array", - "value": "auxiliary", - "namespace": "navigating" + "key": "transmitter", + "value": "multi-byte", + "namespace": "calculating" }, { - "key": "sensor", - "value": "cross-platform", - "namespace": "transmitting" + "key": "bandwidth", + "value": "multi-byte", + "namespace": "connecting" }, { - "key": "card", - "value": "wireless", - "namespace": "quantifying" + "key": "driver", + "value": "haptic", + "namespace": "bypassing" } ], "type": "system", @@ -10411,39 +10399,39 @@ "os_minor_version": 0 }, { - "id": "3eac4c7d-723e-4b7f-86a0-e0fc6d262e10", - "display_name": "swift.test", + "id": "303016a0-1bfe-48cc-8bab-aff3c82db571", + "display_name": "weber-huel.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.862Z", - "stale_timestamp": "2034-09-03T05:56:03.862Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.862Z", - "updated": "2024-09-03T05:56:03.862Z", + "culled_timestamp": "2034-09-17T07:24:45.408Z", + "stale_timestamp": "2034-09-03T07:24:45.408Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.408Z", + "updated": "2024-09-03T07:24:45.408Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "multi-byte", - "namespace": "transmitting" + "key": "application", + "value": "haptic", + "namespace": "indexing" }, { - "key": "pixel", - "value": "haptic", - "namespace": "quantifying" + "key": "matrix", + "value": "solid state", + "namespace": "copying" }, { - "key": "array", - "value": "auxiliary", - "namespace": "quantifying" + "key": "sensor", + "value": "haptic", + "namespace": "calculating" }, { - "key": "transmitter", - "value": "1080p", - "namespace": "quantifying" + "key": "card", + "value": "online", + "namespace": "copying" }, { - "key": "system", - "value": "virtual", - "namespace": "quantifying" + "key": "feed", + "value": "solid state", + "namespace": "hacking" } ], "type": "system", @@ -10451,39 +10439,39 @@ "os_minor_version": 0 }, { - "id": "53ab55da-2f85-4483-8064-915eac6e9f46", - "display_name": "kautzer.test", + "id": "34bb5628-f12d-4da4-ae5d-80c34985823b", + "display_name": "corkery.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.869Z", - "stale_timestamp": "2034-09-03T05:56:03.869Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.869Z", - "updated": "2024-09-03T05:56:03.869Z", + "culled_timestamp": "2034-09-17T07:24:45.422Z", + "stale_timestamp": "2034-09-03T07:24:45.422Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.422Z", + "updated": "2024-09-03T07:24:45.422Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "neural", - "namespace": "synthesizing" + "key": "port", + "value": "haptic", + "namespace": "parsing" }, { - "key": "pixel", - "value": "virtual", - "namespace": "synthesizing" + "key": "microchip", + "value": "1080p", + "namespace": "parsing" }, { - "key": "port", - "value": "redundant", - "namespace": "generating" + "key": "sensor", + "value": "bluetooth", + "namespace": "backing up" }, { "key": "system", - "value": "auxiliary", - "namespace": "overriding" + "value": "back-end", + "namespace": "programming" }, { - "key": "program", + "key": "system", "value": "redundant", - "namespace": "hacking" + "namespace": "transmitting" } ], "type": "system", @@ -10491,39 +10479,39 @@ "os_minor_version": 0 }, { - "id": "54b1390a-5a54-41c9-b761-eb792899583f", - "display_name": "connelly.example", + "id": "3bd79edf-1f5a-4886-9fc0-e9ac0e7bc1d5", + "display_name": "robel.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.868Z", - "stale_timestamp": "2034-09-03T05:56:03.868Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.868Z", - "updated": "2024-09-03T05:56:03.868Z", + "culled_timestamp": "2034-09-17T07:24:45.420Z", + "stale_timestamp": "2034-09-03T07:24:45.420Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.420Z", + "updated": "2024-09-03T07:24:45.420Z", "insights_id": null, "tags": [ { - "key": "system", + "key": "pixel", "value": "redundant", - "namespace": "copying" + "namespace": "backing up" }, { "key": "interface", - "value": "cross-platform", - "namespace": "bypassing" + "value": "wireless", + "namespace": "connecting" }, { - "key": "panel", - "value": "optical", - "namespace": "programming" + "key": "hard drive", + "value": "solid state", + "namespace": "quantifying" }, { - "key": "port", - "value": "auxiliary", - "namespace": "quantifying" + "key": "card", + "value": "solid state", + "namespace": "parsing" }, { - "key": "pixel", - "value": "bluetooth", - "namespace": "compressing" + "key": "transmitter", + "value": "mobile", + "namespace": "connecting" } ], "type": "system", @@ -10531,39 +10519,39 @@ "os_minor_version": 0 }, { - "id": "5ae8a9f0-2322-4d8a-a449-03c6962efb03", - "display_name": "lockman.test", + "id": "3dbb64c7-b509-493d-a3fd-8dc344f60a3e", + "display_name": "gutmann-goyette.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.870Z", - "stale_timestamp": "2034-09-03T05:56:03.870Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.870Z", - "updated": "2024-09-03T05:56:03.870Z", + "culled_timestamp": "2034-09-17T07:24:45.407Z", + "stale_timestamp": "2034-09-03T07:24:45.407Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.407Z", + "updated": "2024-09-03T07:24:45.407Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "wireless", - "namespace": "transmitting" - }, - { - "key": "pixel", + "key": "monitor", "value": "auxiliary", - "namespace": "generating" + "namespace": "navigating" }, { - "key": "driver", - "value": "digital", - "namespace": "backing up" + "key": "firewall", + "value": "virtual", + "namespace": "calculating" }, { - "key": "feed", - "value": "primary", - "namespace": "navigating" + "key": "panel", + "value": "1080p", + "namespace": "quantifying" }, { "key": "array", - "value": "virtual", - "namespace": "parsing" + "value": "online", + "namespace": "synthesizing" + }, + { + "key": "application", + "value": "digital", + "namespace": "connecting" } ], "type": "system", @@ -10571,39 +10559,39 @@ "os_minor_version": 0 }, { - "id": "637c2c0d-0f94-44da-ab9a-27cf438bb08d", - "display_name": "marks.example", + "id": "425b82c3-42d1-4eb0-ba18-eebb7f2646f5", + "display_name": "okeefe.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:03.855Z", - "stale_timestamp": "2034-09-03T05:56:03.855Z", - "stale_warning_timestamp": "2034-09-10T05:56:03.855Z", - "updated": "2024-09-03T05:56:03.855Z", + "culled_timestamp": "2034-09-17T07:24:45.422Z", + "stale_timestamp": "2034-09-03T07:24:45.422Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.422Z", + "updated": "2024-09-03T07:24:45.422Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "multi-byte", - "namespace": "compressing" + "key": "pixel", + "value": "solid state", + "namespace": "programming" }, { - "key": "protocol", - "value": "neural", - "namespace": "parsing" + "key": "program", + "value": "online", + "namespace": "overriding" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "parsing" + "key": "system", + "value": "primary", + "namespace": "programming" }, { - "key": "system", - "value": "online", - "namespace": "backing up" + "key": "program", + "value": "open-source", + "namespace": "generating" }, { "key": "pixel", - "value": "online", - "namespace": "programming" + "value": "auxiliary", + "namespace": "backing up" } ], "type": "system", @@ -10618,9 +10606,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/b652cf60-69d5-4447-a63a-36f3565c810b/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/b652cf60-69d5-4447-a63a-36f3565c810b/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/b652cf60-69d5-4447-a63a-36f3565c810b/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/3a61049b-cc30-41c6-b09e-e7e92bc085e1/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/3a61049b-cc30-41c6-b09e-e7e92bc085e1/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/3a61049b-cc30-41c6-b09e-e7e92bc085e1/systems?limit=10&offset=10" } }, "summary": "", @@ -10663,7 +10651,7 @@ "items": { "type": "string", "examples": [ - "60b17725-6ffd-4197-8d7e-57532d256d88" + "37536171-229b-403d-9929-8197b45687ba" ] } } @@ -10779,39 +10767,39 @@ "Assigns a System to a Policy": { "value": { "data": { - "id": "42b119cd-4c07-402e-ae5f-4c57fd351b5c", - "display_name": "denesik.test", + "id": "4d8a70df-f808-4e55-a3ba-7a3aff1bdb06", + "display_name": "bednar-feil.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.054Z", - "stale_timestamp": "2034-09-03T05:56:04.054Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.054Z", - "updated": "2024-09-03T05:56:04.054Z", + "culled_timestamp": "2034-09-17T07:24:45.598Z", + "stale_timestamp": "2034-09-03T07:24:45.598Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.598Z", + "updated": "2024-09-03T07:24:45.598Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "solid state", - "namespace": "copying" + "key": "monitor", + "value": "open-source", + "namespace": "programming" + }, + { + "key": "matrix", + "value": "bluetooth", + "namespace": "navigating" }, { "key": "microchip", - "value": "redundant", - "namespace": "synthesizing" + "value": "optical", + "namespace": "connecting" }, { - "key": "port", - "value": "back-end", - "namespace": "transmitting" + "key": "alarm", + "value": "wireless", + "namespace": "connecting" }, { - "key": "firewall", + "key": "hard drive", "value": "auxiliary", - "namespace": "bypassing" - }, - { - "key": "bandwidth", - "value": "multi-byte", - "namespace": "synthesizing" + "namespace": "indexing" } ], "type": "system", @@ -10847,7 +10835,7 @@ "Assigns a System to a Policy": { "value": { "errors": [ - "V2::System not found with ID 70bf539c-8c03-4195-944f-649f01063f21" + "V2::System not found with ID 1b9a831e-4df9-40f7-a5ff-794dd9b382e6" ] }, "summary": "", @@ -10904,39 +10892,39 @@ "Unassigns a System from a Policy": { "value": { "data": { - "id": "88b17942-35d3-4077-92b2-6169b6b299e4", - "display_name": "krajcik-champlin.test", + "id": "07c1c890-8dc5-434c-bbcc-6249f6b658e1", + "display_name": "oberbrunner.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.121Z", - "stale_timestamp": "2034-09-03T05:56:04.121Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.121Z", - "updated": "2024-09-03T05:56:04.121Z", + "culled_timestamp": "2034-09-17T07:24:45.658Z", + "stale_timestamp": "2034-09-03T07:24:45.658Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.658Z", + "updated": "2024-09-03T07:24:45.658Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "open-source", - "namespace": "indexing" + "key": "sensor", + "value": "neural", + "namespace": "transmitting" }, { - "key": "matrix", - "value": "bluetooth", - "namespace": "navigating" + "key": "hard drive", + "value": "back-end", + "namespace": "bypassing" }, { - "key": "card", - "value": "redundant", - "namespace": "calculating" + "key": "sensor", + "value": "virtual", + "namespace": "transmitting" }, { - "key": "panel", - "value": "neural", - "namespace": "hacking" + "key": "driver", + "value": "redundant", + "namespace": "programming" }, { - "key": "bus", - "value": "cross-platform", - "namespace": "copying" + "key": "program", + "value": "mobile", + "namespace": "parsing" } ], "type": "system", @@ -10972,7 +10960,7 @@ "Description of an error when unassigning a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 8878fd87-88bf-443c-884d-32cb709a2ebc" + "V2::System not found with ID e127a92c-fd14-402c-9407-f798aeb310af" ] }, "summary": "", @@ -11033,13 +11021,10 @@ "items": { "enum": [ "display_name", - "os_major_version", "os_minor_version", "groups", "display_name:asc", "display_name:desc", - "os_major_version:asc", - "os_major_version:desc", "os_minor_version:asc", "os_minor_version:desc", "groups:asc", @@ -11052,7 +11037,7 @@ "name": "filter", "in": "query", "required": false, - "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Systems are searchable using attributes `display_name`, `os_major_version`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, `group_name`, `policies`, and `profile_ref_id`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", + "description": "Query string to filter items by their attributes. Compliant with scoped_search query language. However, only `=` or `!=` (resp. `<>`) operators are supported.

Systems are searchable using attributes `display_name`, `os_minor_version`, `assigned_or_scanned`, `never_reported`, and `group_name`

(e.g.: `(field_1=something AND field_2!=\"something else\") OR field_3>40`)", "schema": { "type": "string" } @@ -11081,39 +11066,39 @@ "value": { "data": [ { - "id": "021c3244-2bc5-48e0-b23d-92dc53bd0271", - "display_name": "jacobson-predovic.example", + "id": "0af587ea-5fb7-4988-bc44-45e7791ae62f", + "display_name": "toy-williamson.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.351Z", - "stale_timestamp": "2034-09-03T05:56:04.351Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.351Z", - "updated": "2024-09-03T05:56:04.351Z", + "culled_timestamp": "2034-09-17T07:24:45.913Z", + "stale_timestamp": "2034-09-03T07:24:45.913Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.913Z", + "updated": "2024-09-03T07:24:45.913Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "cross-platform", - "namespace": "transmitting" + "key": "panel", + "value": "mobile", + "namespace": "parsing" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "synthesizing" + "key": "firewall", + "value": "neural", + "namespace": "compressing" }, { - "key": "capacitor", - "value": "auxiliary", + "key": "port", + "value": "digital", "namespace": "overriding" }, { - "key": "firewall", - "value": "multi-byte", - "namespace": "indexing" + "key": "port", + "value": "1080p", + "namespace": "bypassing" }, { "key": "bandwidth", - "value": "optical", - "namespace": "indexing" + "value": "auxiliary", + "namespace": "compressing" } ], "type": "system", @@ -11121,45 +11106,45 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "06e5b257-3548-4190-85ad-72ea71b985b7", - "display_name": "osinski.test", + "id": "0edcbf19-84e6-40e8-b427-26af90fec7e1", + "display_name": "bednar.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.361Z", - "stale_timestamp": "2034-09-03T05:56:04.361Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.361Z", - "updated": "2024-09-03T05:56:04.361Z", + "culled_timestamp": "2034-09-17T07:24:45.971Z", + "stale_timestamp": "2034-09-03T07:24:45.971Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.971Z", + "updated": "2024-09-03T07:24:45.971Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "cross-platform", - "namespace": "transmitting" + "key": "pixel", + "value": "mobile", + "namespace": "navigating" }, { - "key": "bus", - "value": "cross-platform", - "namespace": "overriding" + "key": "hard drive", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "interface", - "value": "online", - "namespace": "bypassing" + "key": "firewall", + "value": "multi-byte", + "namespace": "compressing" }, { - "key": "interface", - "value": "online", + "key": "panel", + "value": "optical", "namespace": "calculating" }, { - "key": "feed", - "value": "haptic", - "namespace": "transmitting" + "key": "interface", + "value": "digital", + "namespace": "synthesizing" } ], "type": "system", @@ -11167,45 +11152,45 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "1158a9d7-ff3a-462f-865a-fccf7e6f6cef", - "display_name": "shanahan-bailey.example", + "id": "184a3a54-b554-423e-9f11-71cce780b4a1", + "display_name": "prosacco.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.339Z", - "stale_timestamp": "2034-09-03T05:56:04.339Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.339Z", - "updated": "2024-09-03T05:56:04.339Z", + "culled_timestamp": "2034-09-17T07:24:45.944Z", + "stale_timestamp": "2034-09-03T07:24:45.944Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.944Z", + "updated": "2024-09-03T07:24:45.944Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "auxiliary", - "namespace": "generating" + "key": "protocol", + "value": "neural", + "namespace": "overriding" }, { - "key": "circuit", - "value": "auxiliary", - "namespace": "hacking" + "key": "program", + "value": "wireless", + "namespace": "copying" }, { - "key": "application", - "value": "haptic", - "namespace": "indexing" + "key": "alarm", + "value": "open-source", + "namespace": "quantifying" }, { - "key": "interface", - "value": "virtual", - "namespace": "indexing" + "key": "pixel", + "value": "online", + "namespace": "quantifying" }, { - "key": "bandwidth", - "value": "virtual", - "namespace": "indexing" + "key": "capacitor", + "value": "bluetooth", + "namespace": "copying" } ], "type": "system", @@ -11213,44 +11198,44 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "2068b7ab-43c4-4da5-9ac6-61b757f73678", - "display_name": "wehner.test", + "id": "1e537b0e-0e8c-4a9c-a7aa-76ab613024a2", + "display_name": "schmitt.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.374Z", - "stale_timestamp": "2034-09-03T05:56:04.374Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.374Z", - "updated": "2024-09-03T05:56:04.374Z", + "culled_timestamp": "2034-09-17T07:24:45.931Z", + "stale_timestamp": "2034-09-03T07:24:45.931Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.931Z", + "updated": "2024-09-03T07:24:45.931Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "primary", - "namespace": "quantifying" + "key": "alarm", + "value": "back-end", + "namespace": "backing up" }, { - "key": "hard drive", - "value": "mobile", - "namespace": "connecting" + "key": "pixel", + "value": "solid state", + "namespace": "generating" }, { - "key": "interface", - "value": "online", + "key": "transmitter", + "value": "cross-platform", "namespace": "connecting" }, { - "key": "firewall", + "key": "card", "value": "mobile", - "namespace": "backing up" + "namespace": "connecting" }, { - "key": "application", - "value": "1080p", + "key": "circuit", + "value": "haptic", "namespace": "quantifying" } ], @@ -11259,45 +11244,45 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "2c686dcc-a4f4-4afe-ad63-a6a942da0733", - "display_name": "fadel.test", + "id": "28cb5533-4ae6-4faf-a4cf-bc62468d9736", + "display_name": "kris-renner.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.402Z", - "stale_timestamp": "2034-09-03T05:56:04.402Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.402Z", - "updated": "2024-09-03T05:56:04.402Z", + "culled_timestamp": "2034-09-17T07:24:45.883Z", + "stale_timestamp": "2034-09-03T07:24:45.883Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.883Z", + "updated": "2024-09-03T07:24:45.883Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "primary", - "namespace": "indexing" + "key": "sensor", + "value": "virtual", + "namespace": "backing up" }, { - "key": "port", + "key": "bandwidth", "value": "open-source", - "namespace": "backing up" + "namespace": "hacking" }, { - "key": "driver", - "value": "online", - "namespace": "copying" + "key": "protocol", + "value": "open-source", + "namespace": "hacking" }, { - "key": "port", - "value": "wireless", - "namespace": "copying" + "key": "application", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "port", - "value": "auxiliary", - "namespace": "compressing" + "key": "hard drive", + "value": "haptic", + "namespace": "copying" } ], "type": "system", @@ -11305,44 +11290,44 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "314ad71e-4f53-44c0-9d21-4f7a3e5ddd12", - "display_name": "zieme.test", + "id": "330fe7eb-4569-4b2c-bdf4-307b14f1c043", + "display_name": "bednar.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.416Z", - "stale_timestamp": "2034-09-03T05:56:04.416Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.416Z", - "updated": "2024-09-03T05:56:04.416Z", + "culled_timestamp": "2034-09-17T07:24:45.975Z", + "stale_timestamp": "2034-09-03T07:24:45.975Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.975Z", + "updated": "2024-09-03T07:24:45.975Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "wireless", - "namespace": "synthesizing" + "key": "capacitor", + "value": "back-end", + "namespace": "navigating" }, { - "key": "sensor", - "value": "optical", - "namespace": "parsing" + "key": "monitor", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "bandwidth", - "value": "redundant", - "namespace": "calculating" + "key": "port", + "value": "back-end", + "namespace": "copying" }, { - "key": "system", - "value": "digital", - "namespace": "transmitting" + "key": "sensor", + "value": "open-source", + "namespace": "indexing" }, { - "key": "feed", - "value": "redundant", + "key": "microchip", + "value": "bluetooth", "namespace": "indexing" } ], @@ -11351,45 +11336,45 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "488b889b-8c82-4ded-b4dc-8b1a02eda556", - "display_name": "conroy.test", + "id": "3db9ab70-648f-42f6-b7e8-995f69f559f4", + "display_name": "feeney-von.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.346Z", - "stale_timestamp": "2034-09-03T05:56:04.346Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.346Z", - "updated": "2024-09-03T05:56:04.346Z", + "culled_timestamp": "2034-09-17T07:24:45.918Z", + "stale_timestamp": "2034-09-03T07:24:45.918Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.918Z", + "updated": "2024-09-03T07:24:45.918Z", "insights_id": null, "tags": [ { "key": "driver", - "value": "bluetooth", - "namespace": "programming" + "value": "optical", + "namespace": "synthesizing" }, { - "key": "alarm", - "value": "mobile", - "namespace": "synthesizing" + "key": "program", + "value": "neural", + "namespace": "hacking" }, { - "key": "sensor", + "key": "card", "value": "virtual", "namespace": "generating" }, { - "key": "pixel", - "value": "multi-byte", - "namespace": "indexing" + "key": "program", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "application", - "value": "auxiliary", - "namespace": "backing up" + "key": "feed", + "value": "bluetooth", + "namespace": "transmitting" } ], "type": "system", @@ -11397,45 +11382,45 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "5e61fe97-0c70-4ab9-80e0-154d57828b10", - "display_name": "kerluke.test", + "id": "42192412-d4fa-41fb-b639-81735074bf24", + "display_name": "cassin-pagac.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.335Z", - "stale_timestamp": "2034-09-03T05:56:04.335Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.335Z", - "updated": "2024-09-03T05:56:04.335Z", + "culled_timestamp": "2034-09-17T07:24:45.958Z", + "stale_timestamp": "2034-09-03T07:24:45.958Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.958Z", + "updated": "2024-09-03T07:24:45.958Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "wireless", - "namespace": "transmitting" + "key": "circuit", + "value": "mobile", + "namespace": "overriding" }, { - "key": "bus", - "value": "bluetooth", - "namespace": "backing up" + "key": "protocol", + "value": "open-source", + "namespace": "hacking" }, { - "key": "interface", - "value": "neural", + "key": "monitor", + "value": "digital", "namespace": "programming" }, { - "key": "sensor", - "value": "auxiliary", - "namespace": "connecting" - }, - { - "key": "application", - "value": "open-source", - "namespace": "compressing" + "key": "alarm", + "value": "back-end", + "namespace": "bypassing" + }, + { + "key": "port", + "value": "redundant", + "namespace": "indexing" } ], "type": "system", @@ -11443,45 +11428,45 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "602b645c-4716-4d67-973b-e2c68bbabde1", - "display_name": "will.test", + "id": "45b6314d-7f06-4f5f-88ce-1f6827518d14", + "display_name": "kiehn.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.326Z", - "stale_timestamp": "2034-09-03T05:56:04.326Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.326Z", - "updated": "2024-09-03T05:56:04.326Z", + "culled_timestamp": "2034-09-17T07:24:46.000Z", + "stale_timestamp": "2034-09-03T07:24:46.000Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.000Z", + "updated": "2024-09-03T07:24:46.000Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "wireless", - "namespace": "calculating" + "key": "protocol", + "value": "bluetooth", + "namespace": "hacking" }, { - "key": "transmitter", - "value": "digital", - "namespace": "compressing" + "key": "card", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "1080p", - "namespace": "backing up" + "key": "system", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "circuit", - "value": "cross-platform", - "namespace": "parsing" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "transmitting" }, { - "key": "feed", - "value": "digital", - "namespace": "copying" + "key": "alarm", + "value": "multi-byte", + "namespace": "programming" } ], "type": "system", @@ -11489,45 +11474,45 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] }, { - "id": "60b6f1d7-cdef-47e3-baa9-c136ba02bd16", - "display_name": "douglas-oreilly.example", + "id": "6383859b-3772-4bcf-b808-f2195ebb534a", + "display_name": "cruickshank-mayert.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.446Z", - "stale_timestamp": "2034-09-03T05:56:04.446Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.446Z", - "updated": "2024-09-03T05:56:04.446Z", + "culled_timestamp": "2034-09-17T07:24:45.922Z", + "stale_timestamp": "2034-09-03T07:24:45.922Z", + "stale_warning_timestamp": "2034-09-10T07:24:45.922Z", + "updated": "2024-09-03T07:24:45.922Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "1080p", - "namespace": "connecting" + "key": "alarm", + "value": "back-end", + "namespace": "overriding" }, { - "key": "application", - "value": "multi-byte", - "namespace": "overriding" + "key": "sensor", + "value": "digital", + "namespace": "quantifying" }, { - "key": "interface", - "value": "primary", - "namespace": "overriding" + "key": "firewall", + "value": "online", + "namespace": "bypassing" }, { - "key": "port", - "value": "auxiliary", - "namespace": "synthesizing" + "key": "monitor", + "value": "solid state", + "namespace": "generating" }, { - "key": "protocol", - "value": "multi-byte", - "namespace": "compressing" + "key": "bandwidth", + "value": "optical", + "namespace": "copying" } ], "type": "system", @@ -11535,8 +11520,8 @@ "os_minor_version": 0, "policies": [ { - "id": "9558d5d0-5662-4b46-912b-bcb7274ed44e", - "title": "Mollitia illo aspernatur incidunt." + "id": "29322e12-62d1-4d8e-af33-9969934f4491", + "title": "Nihil sed ab tenetur." } ] } @@ -11548,51 +11533,51 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/9558d5d0-5662-4b46-912b-bcb7274ed44e/systems?limit=10&offset=0", - "last": "/api/compliance/v2/reports/9558d5d0-5662-4b46-912b-bcb7274ed44e/systems?limit=10&offset=20", - "next": "/api/compliance/v2/reports/9558d5d0-5662-4b46-912b-bcb7274ed44e/systems?limit=10&offset=10" + "first": "/api/compliance/v2/reports/29322e12-62d1-4d8e-af33-9969934f4491/systems?limit=10&offset=0", + "last": "/api/compliance/v2/reports/29322e12-62d1-4d8e-af33-9969934f4491/systems?limit=10&offset=20", + "next": "/api/compliance/v2/reports/29322e12-62d1-4d8e-af33-9969934f4491/systems?limit=10&offset=10" } }, "summary": "", "description": "" }, - "List of Systems sorted by \"os_major_version:asc\"": { + "List of Systems sorted by \"os_minor_version:asc\"": { "value": { "data": [ { - "id": "0349df49-48a1-4e50-906b-3c535dc833a2", - "display_name": "bernier.example", + "id": "02ad4871-f7c9-4e31-af27-641e637a0053", + "display_name": "haley-gibson.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.705Z", - "stale_timestamp": "2034-09-03T05:56:04.705Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.705Z", - "updated": "2024-09-03T05:56:04.705Z", + "culled_timestamp": "2034-09-17T07:24:46.247Z", + "stale_timestamp": "2034-09-03T07:24:46.247Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.247Z", + "updated": "2024-09-03T07:24:46.247Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "virtual", + "key": "hard drive", + "value": "primary", "namespace": "hacking" }, { - "key": "protocol", - "value": "solid state", - "namespace": "generating" + "key": "port", + "value": "mobile", + "namespace": "bypassing" }, { - "key": "monitor", - "value": "primary", - "namespace": "generating" + "key": "panel", + "value": "online", + "namespace": "backing up" }, { - "key": "monitor", - "value": "cross-platform", + "key": "firewall", + "value": "multi-byte", "namespace": "parsing" }, { - "key": "feed", - "value": "online", - "namespace": "hacking" + "key": "microchip", + "value": "solid state", + "namespace": "compressing" } ], "type": "system", @@ -11600,45 +11585,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "06a7e759-401f-408a-97d4-0778dec9b37b", - "display_name": "powlowski.example", + "id": "2c8e610d-83fa-4caa-a06b-bd63f77be312", + "display_name": "larson.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.761Z", - "stale_timestamp": "2034-09-03T05:56:04.761Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.761Z", - "updated": "2024-09-03T05:56:04.761Z", + "culled_timestamp": "2034-09-17T07:24:46.251Z", + "stale_timestamp": "2034-09-03T07:24:46.251Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.251Z", + "updated": "2024-09-03T07:24:46.251Z", "insights_id": null, "tags": [ { - "key": "program", + "key": "monitor", "value": "haptic", - "namespace": "hacking" + "namespace": "navigating" }, { - "key": "card", - "value": "wireless", - "namespace": "hacking" + "key": "bus", + "value": "optical", + "namespace": "navigating" }, { - "key": "pixel", - "value": "redundant", - "namespace": "hacking" + "key": "circuit", + "value": "back-end", + "namespace": "navigating" }, { - "key": "microchip", - "value": "primary", - "namespace": "hacking" + "key": "hard drive", + "value": "haptic", + "namespace": "generating" }, { - "key": "alarm", - "value": "auxiliary", - "namespace": "transmitting" + "key": "system", + "value": "solid state", + "namespace": "navigating" } ], "type": "system", @@ -11646,45 +11631,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "08a57791-ba41-4321-b2b7-0091cde3b8e0", - "display_name": "kub-feest.test", + "id": "2d3ef460-797d-4669-8582-77742a978105", + "display_name": "koss-mcglynn.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.714Z", - "stale_timestamp": "2034-09-03T05:56:04.714Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.714Z", - "updated": "2024-09-03T05:56:04.714Z", + "culled_timestamp": "2034-09-17T07:24:46.185Z", + "stale_timestamp": "2034-09-03T07:24:46.185Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.185Z", + "updated": "2024-09-03T07:24:46.185Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "haptic", - "namespace": "copying" + "key": "sensor", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "firewall", - "value": "auxiliary", - "namespace": "quantifying" + "key": "alarm", + "value": "primary", + "namespace": "backing up" }, { - "key": "bus", - "value": "auxiliary", - "namespace": "hacking" + "key": "system", + "value": "haptic", + "namespace": "overriding" }, { - "key": "system", - "value": "optical", - "namespace": "hacking" + "key": "program", + "value": "1080p", + "namespace": "calculating" }, { - "key": "bandwidth", - "value": "mobile", - "namespace": "indexing" + "key": "matrix", + "value": "cross-platform", + "namespace": "parsing" } ], "type": "system", @@ -11692,45 +11677,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "39840d8f-b522-46b3-9a8a-703b59ecacf2", - "display_name": "mayer.example", + "id": "3c1896a0-ed22-4c9b-9454-2dcb2cf27252", + "display_name": "adams.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.718Z", - "stale_timestamp": "2034-09-03T05:56:04.718Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.718Z", - "updated": "2024-09-03T05:56:04.718Z", + "culled_timestamp": "2034-09-17T07:24:46.202Z", + "stale_timestamp": "2034-09-03T07:24:46.202Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.202Z", + "updated": "2024-09-03T07:24:46.202Z", "insights_id": null, "tags": [ { - "key": "matrix", + "key": "system", "value": "multi-byte", - "namespace": "connecting" + "namespace": "quantifying" }, { - "key": "interface", - "value": "wireless", - "namespace": "programming" + "key": "monitor", + "value": "optical", + "namespace": "overriding" }, { - "key": "feed", - "value": "virtual", - "namespace": "synthesizing" + "key": "capacitor", + "value": "bluetooth", + "namespace": "navigating" }, { - "key": "interface", - "value": "haptic", - "namespace": "backing up" + "key": "microchip", + "value": "primary", + "namespace": "generating" }, { - "key": "transmitter", - "value": "primary", - "namespace": "copying" + "key": "system", + "value": "virtual", + "namespace": "backing up" } ], "type": "system", @@ -11738,45 +11723,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "417d0fd1-d1b4-4c68-9aa4-05044a6290b8", - "display_name": "lockman-armstrong.test", + "id": "412c3987-a39c-445a-8b4d-c68028c39c91", + "display_name": "hettinger-west.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.736Z", - "stale_timestamp": "2034-09-03T05:56:04.736Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.736Z", - "updated": "2024-09-03T05:56:04.736Z", + "culled_timestamp": "2034-09-17T07:24:46.255Z", + "stale_timestamp": "2034-09-03T07:24:46.255Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.255Z", + "updated": "2024-09-03T07:24:46.255Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "1080p", - "namespace": "overriding" + "key": "sensor", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "microchip", - "value": "open-source", - "namespace": "generating" + "key": "panel", + "value": "haptic", + "namespace": "indexing" }, { - "key": "system", - "value": "wireless", - "namespace": "generating" + "key": "driver", + "value": "neural", + "namespace": "navigating" }, { - "key": "bus", - "value": "primary", - "namespace": "calculating" + "key": "microchip", + "value": "mobile", + "namespace": "generating" }, { - "key": "circuit", - "value": "redundant", - "namespace": "calculating" + "key": "port", + "value": "primary", + "namespace": "transmitting" } ], "type": "system", @@ -11784,45 +11769,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "62a21a47-d0a6-4a95-9e8c-08f88f2c019e", - "display_name": "grant-monahan.test", + "id": "48fd64aa-7234-48fb-b0b8-1aaf97ba2719", + "display_name": "wunsch.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.693Z", - "stale_timestamp": "2034-09-03T05:56:04.693Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.693Z", - "updated": "2024-09-03T05:56:04.693Z", + "culled_timestamp": "2034-09-17T07:24:46.276Z", + "stale_timestamp": "2034-09-03T07:24:46.276Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.276Z", + "updated": "2024-09-03T07:24:46.276Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "redundant", - "namespace": "overriding" + "key": "hard drive", + "value": "multi-byte", + "namespace": "parsing" }, { - "key": "feed", - "value": "haptic", - "namespace": "bypassing" + "key": "array", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "hard drive", - "value": "mobile", - "namespace": "synthesizing" + "key": "microchip", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "circuit", - "value": "bluetooth", - "namespace": "navigating" + "key": "microchip", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "transmitter", - "value": "mobile", - "namespace": "navigating" + "key": "microchip", + "value": "haptic", + "namespace": "parsing" } ], "type": "system", @@ -11830,45 +11815,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "675d0603-451a-4e1c-b38b-62bdc74d6189", - "display_name": "larkin-ferry.example", + "id": "4f0d223f-8076-4f51-b11d-047da5b8524e", + "display_name": "blanda-moen.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.675Z", - "stale_timestamp": "2034-09-03T05:56:04.675Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.675Z", - "updated": "2024-09-03T05:56:04.675Z", + "culled_timestamp": "2034-09-17T07:24:46.266Z", + "stale_timestamp": "2034-09-03T07:24:46.266Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.266Z", + "updated": "2024-09-03T07:24:46.266Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "1080p", - "namespace": "overriding" + "key": "sensor", + "value": "neural", + "namespace": "connecting" }, { - "key": "application", - "value": "bluetooth", - "namespace": "hacking" + "key": "panel", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "array", - "value": "primary", - "namespace": "programming" + "key": "capacitor", + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "bandwidth", + "key": "sensor", "value": "bluetooth", - "namespace": "calculating" + "namespace": "bypassing" }, { - "key": "firewall", - "value": "digital", - "namespace": "compressing" + "key": "alarm", + "value": "neural", + "namespace": "programming" } ], "type": "system", @@ -11876,45 +11861,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "68f34dad-7b7f-4fc8-a69f-4f1ccdcb13fd", - "display_name": "borer.test", + "id": "4fd714a9-dd0e-4e63-83c1-1e8e6fcc3ab9", + "display_name": "cremin.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.723Z", - "stale_timestamp": "2034-09-03T05:56:04.723Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.723Z", - "updated": "2024-09-03T05:56:04.723Z", + "culled_timestamp": "2034-09-17T07:24:46.288Z", + "stale_timestamp": "2034-09-03T07:24:46.288Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.288Z", + "updated": "2024-09-03T07:24:46.288Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "cross-platform", - "namespace": "overriding" + "key": "circuit", + "value": "1080p", + "namespace": "navigating" }, { - "key": "protocol", - "value": "digital", - "namespace": "programming" + "key": "matrix", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "alarm", - "value": "bluetooth", - "namespace": "copying" + "key": "hard drive", + "value": "cross-platform", + "namespace": "navigating" }, { - "key": "pixel", - "value": "solid state", - "namespace": "indexing" + "key": "circuit", + "value": "open-source", + "namespace": "copying" }, { - "key": "circuit", - "value": "online", - "namespace": "connecting" + "key": "microchip", + "value": "multi-byte", + "namespace": "backing up" } ], "type": "system", @@ -11922,45 +11907,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "6c562294-4e05-4b19-9173-f34d607eba51", - "display_name": "pollich.test", + "id": "60f78ef6-e969-401d-988f-2ff5f4512f51", + "display_name": "jenkins-prohaska.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.689Z", - "stale_timestamp": "2034-09-03T05:56:04.689Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.689Z", - "updated": "2024-09-03T05:56:04.689Z", + "culled_timestamp": "2034-09-17T07:24:46.211Z", + "stale_timestamp": "2034-09-03T07:24:46.211Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.211Z", + "updated": "2024-09-03T07:24:46.211Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "online", - "namespace": "bypassing" + "key": "pixel", + "value": "bluetooth", + "namespace": "transmitting" }, { - "key": "application", - "value": "virtual", - "namespace": "synthesizing" + "key": "sensor", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "interface", - "value": "online", - "namespace": "overriding" + "key": "application", + "value": "multi-byte", + "namespace": "backing up" }, { - "key": "application", - "value": "online", - "namespace": "copying" + "key": "firewall", + "value": "back-end", + "namespace": "hacking" }, { - "key": "program", - "value": "haptic", - "namespace": "programming" + "key": "microchip", + "value": "solid state", + "namespace": "synthesizing" } ], "type": "system", @@ -11968,45 +11953,45 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] }, { - "id": "756cc2e8-82e5-40da-af31-eb06be042a66", - "display_name": "quigley.test", + "id": "7bd09484-034c-4485-933f-f58efaf30866", + "display_name": "hegmann.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.749Z", - "stale_timestamp": "2034-09-03T05:56:04.749Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.749Z", - "updated": "2024-09-03T05:56:04.749Z", + "culled_timestamp": "2034-09-17T07:24:46.284Z", + "stale_timestamp": "2034-09-03T07:24:46.284Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.284Z", + "updated": "2024-09-03T07:24:46.284Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "solid state", - "namespace": "bypassing" + "key": "array", + "value": "multi-byte", + "namespace": "quantifying" }, { - "key": "panel", - "value": "haptic", - "namespace": "connecting" + "key": "system", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "circuit", - "value": "mobile", - "namespace": "transmitting" + "key": "feed", + "value": "neural", + "namespace": "indexing" }, { - "key": "hard drive", - "value": "primary", - "namespace": "quantifying" + "key": "monitor", + "value": "mobile", + "namespace": "compressing" }, { - "key": "microchip", - "value": "bluetooth", - "namespace": "copying" + "key": "application", + "value": "redundant", + "namespace": "compressing" } ], "type": "system", @@ -12014,8 +11999,8 @@ "os_minor_version": 0, "policies": [ { - "id": "ee684387-cb11-478a-ac2a-774346c0cbcd", - "title": "Rem enim distinctio aut." + "id": "b45ec735-2322-4568-826e-f0739de404cd", + "title": "Culpa et adipisci provident." } ] } @@ -12025,54 +12010,54 @@ "tags": [], "limit": 10, "offset": 0, - "sort_by": "os_major_version" + "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/reports/ee684387-cb11-478a-ac2a-774346c0cbcd/systems?limit=10&offset=0&sort_by=os_major_version", - "last": "/api/compliance/v2/reports/ee684387-cb11-478a-ac2a-774346c0cbcd/systems?limit=10&offset=20&sort_by=os_major_version", - "next": "/api/compliance/v2/reports/ee684387-cb11-478a-ac2a-774346c0cbcd/systems?limit=10&offset=10&sort_by=os_major_version" + "first": "/api/compliance/v2/reports/b45ec735-2322-4568-826e-f0739de404cd/systems?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/reports/b45ec735-2322-4568-826e-f0739de404cd/systems?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/reports/b45ec735-2322-4568-826e-f0739de404cd/systems?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", "description": "" }, - "List of Systems filtered by \"(os_major_version=8)\"": { + "List of Systems filtered by \"(os_minor_version=0)\"": { "value": { "data": [ { - "id": "00370768-9d84-40a0-8c50-56df9f103700", - "display_name": "goodwin.example", + "id": "129c2e32-7405-4b1e-b5a3-5f84e853fb2b", + "display_name": "block.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.086Z", - "stale_timestamp": "2034-09-03T05:56:05.086Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.086Z", - "updated": "2024-09-03T05:56:05.086Z", + "culled_timestamp": "2034-09-17T07:24:46.503Z", + "stale_timestamp": "2034-09-03T07:24:46.503Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.503Z", + "updated": "2024-09-03T07:24:46.503Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "online", - "namespace": "transmitting" + "key": "sensor", + "value": "haptic", + "namespace": "copying" }, { - "key": "panel", - "value": "virtual", - "namespace": "overriding" + "key": "transmitter", + "value": "bluetooth", + "namespace": "programming" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "calculating" + "key": "hard drive", + "value": "wireless", + "namespace": "parsing" }, { - "key": "application", - "value": "redundant", - "namespace": "quantifying" + "key": "port", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "interface", - "value": "haptic", - "namespace": "navigating" + "key": "matrix", + "value": "primary", + "namespace": "generating" } ], "type": "system", @@ -12080,45 +12065,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "046bc2b1-38af-4eda-9f9b-ad12dc108a2e", - "display_name": "hessel-hermann.example", + "id": "136bb2ef-780c-4f23-b27f-594ad2a581ba", + "display_name": "hahn.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.075Z", - "stale_timestamp": "2034-09-03T05:56:05.075Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.075Z", - "updated": "2024-09-03T05:56:05.075Z", + "culled_timestamp": "2034-09-17T07:24:46.588Z", + "stale_timestamp": "2034-09-03T07:24:46.588Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.588Z", + "updated": "2024-09-03T07:24:46.588Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "mobile", - "namespace": "copying" + "key": "interface", + "value": "optical", + "namespace": "overriding" }, { - "key": "application", - "value": "redundant", - "namespace": "backing up" + "key": "protocol", + "value": "mobile", + "namespace": "generating" }, { "key": "sensor", - "value": "optical", - "namespace": "parsing" + "value": "multi-byte", + "namespace": "synthesizing" }, { - "key": "array", - "value": "virtual", - "namespace": "synthesizing" + "key": "circuit", + "value": "primary", + "namespace": "connecting" }, { "key": "pixel", - "value": "wireless", - "namespace": "hacking" + "value": "bluetooth", + "namespace": "connecting" } ], "type": "system", @@ -12126,45 +12111,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "0cc5a0b7-b396-4445-8a69-39f1f3dd2d04", - "display_name": "haag-shields.test", + "id": "1ab1e233-fe4a-4441-8c4a-b6f788eb0e34", + "display_name": "thiel-klein.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.094Z", - "stale_timestamp": "2034-09-03T05:56:05.094Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.094Z", - "updated": "2024-09-03T05:56:05.094Z", + "culled_timestamp": "2034-09-17T07:24:46.546Z", + "stale_timestamp": "2034-09-03T07:24:46.546Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.546Z", + "updated": "2024-09-03T07:24:46.546Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "optical", - "namespace": "calculating" + "key": "hard drive", + "value": "virtual", + "namespace": "bypassing" }, { - "key": "bus", - "value": "solid state", - "namespace": "connecting" + "key": "transmitter", + "value": "back-end", + "namespace": "navigating" }, { - "key": "circuit", - "value": "open-source", - "namespace": "compressing" + "key": "pixel", + "value": "mobile", + "namespace": "hacking" }, { - "key": "monitor", - "value": "open-source", - "namespace": "navigating" + "key": "feed", + "value": "auxiliary", + "namespace": "indexing" }, { - "key": "bandwidth", - "value": "neural", - "namespace": "synthesizing" + "key": "hard drive", + "value": "cross-platform", + "namespace": "compressing" } ], "type": "system", @@ -12172,45 +12157,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "19a4fe06-744e-4f7e-be5b-cb6b364d0850", - "display_name": "quitzon.example", + "id": "3340e612-bc43-4e38-b3c5-4917cf3dafc9", + "display_name": "anderson-harvey.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.062Z", - "stale_timestamp": "2034-09-03T05:56:05.062Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.062Z", - "updated": "2024-09-03T05:56:05.062Z", + "culled_timestamp": "2034-09-17T07:24:46.576Z", + "stale_timestamp": "2034-09-03T07:24:46.576Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.576Z", + "updated": "2024-09-03T07:24:46.576Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "digital", - "namespace": "navigating" - }, - { - "key": "circuit", - "value": "neural", - "namespace": "connecting" + "key": "card", + "value": "optical", + "namespace": "synthesizing" }, { "key": "firewall", "value": "cross-platform", - "namespace": "compressing" + "namespace": "calculating" }, { - "key": "card", - "value": "auxiliary", - "namespace": "generating" + "key": "system", + "value": "mobile", + "namespace": "overriding" }, { - "key": "card", - "value": "digital", - "namespace": "bypassing" + "key": "alarm", + "value": "haptic", + "namespace": "copying" + }, + { + "key": "driver", + "value": "neural", + "namespace": "indexing" } ], "type": "system", @@ -12218,45 +12203,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "1ecb5e6c-00c2-44cf-9b6c-640768e5face", - "display_name": "ritchie.example", + "id": "33c2f154-e591-4bf6-b038-d5e161adba02", + "display_name": "kovacek.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.002Z", - "stale_timestamp": "2034-09-03T05:56:05.002Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.002Z", - "updated": "2024-09-03T05:56:05.002Z", + "culled_timestamp": "2034-09-17T07:24:46.555Z", + "stale_timestamp": "2034-09-03T07:24:46.555Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.555Z", + "updated": "2024-09-03T07:24:46.555Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "1080p", - "namespace": "bypassing" + "key": "panel", + "value": "digital", + "namespace": "copying" }, { - "key": "program", - "value": "open-source", - "namespace": "connecting" + "key": "pixel", + "value": "1080p", + "namespace": "navigating" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "bypassing" + "key": "feed", + "value": "multi-byte", + "namespace": "indexing" }, { - "key": "alarm", - "value": "back-end", - "namespace": "parsing" + "key": "microchip", + "value": "auxiliary", + "namespace": "bypassing" }, { - "key": "alarm", - "value": "primary", - "namespace": "backing up" + "key": "application", + "value": "auxiliary", + "namespace": "compressing" } ], "type": "system", @@ -12264,45 +12249,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "2071178d-0873-418c-9692-cb1f03754b61", - "display_name": "king.example", + "id": "33faeff1-7e6c-4259-a163-33a5ba613b24", + "display_name": "trantow.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.021Z", - "stale_timestamp": "2034-09-03T05:56:05.021Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.021Z", - "updated": "2024-09-03T05:56:05.021Z", + "culled_timestamp": "2034-09-17T07:24:46.527Z", + "stale_timestamp": "2034-09-03T07:24:46.527Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.527Z", + "updated": "2024-09-03T07:24:46.527Z", "insights_id": null, - "tags": [ - { - "key": "pixel", - "value": "solid state", - "namespace": "bypassing" - }, + "tags": [ { - "key": "alarm", - "value": "solid state", - "namespace": "quantifying" + "key": "card", + "value": "virtual", + "namespace": "generating" }, { "key": "sensor", - "value": "bluetooth", - "namespace": "transmitting" + "value": "neural", + "namespace": "navigating" }, { - "key": "application", - "value": "back-end", - "namespace": "navigating" + "key": "driver", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "bus", - "value": "online", - "namespace": "parsing" + "key": "capacitor", + "value": "bluetooth", + "namespace": "bypassing" + }, + { + "key": "sensor", + "value": "cross-platform", + "namespace": "copying" } ], "type": "system", @@ -12310,45 +12295,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "227a2b12-5f41-441d-a332-09eb75bbc472", - "display_name": "franecki.example", + "id": "3596990d-9535-4b6a-b442-e6cbb3c701fe", + "display_name": "shanahan.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.992Z", - "stale_timestamp": "2034-09-03T05:56:04.992Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.992Z", - "updated": "2024-09-03T05:56:04.992Z", + "culled_timestamp": "2034-09-17T07:24:46.584Z", + "stale_timestamp": "2034-09-03T07:24:46.584Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.584Z", + "updated": "2024-09-03T07:24:46.584Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "online", - "namespace": "generating" + "key": "firewall", + "value": "wireless", + "namespace": "calculating" }, { - "key": "panel", - "value": "online", - "namespace": "backing up" + "key": "application", + "value": "optical", + "namespace": "indexing" }, { - "key": "array", - "value": "bluetooth", - "namespace": "transmitting" + "key": "microchip", + "value": "1080p", + "namespace": "copying" }, { - "key": "bus", - "value": "1080p", - "namespace": "bypassing" + "key": "system", + "value": "haptic", + "namespace": "quantifying" }, { "key": "sensor", - "value": "multi-byte", - "namespace": "compressing" + "value": "open-source", + "namespace": "programming" } ], "type": "system", @@ -12356,45 +12341,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "2dcc6ef3-9b8a-4497-9628-1447ba921592", - "display_name": "stroman-little.example", + "id": "394c1148-9bf7-4c90-aa62-105663f37991", + "display_name": "beatty-kirlin.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.053Z", - "stale_timestamp": "2034-09-03T05:56:05.053Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.053Z", - "updated": "2024-09-03T05:56:05.053Z", + "culled_timestamp": "2034-09-17T07:24:46.596Z", + "stale_timestamp": "2034-09-03T07:24:46.596Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.596Z", + "updated": "2024-09-03T07:24:46.596Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "1080p", - "namespace": "calculating" + "key": "feed", + "value": "back-end", + "namespace": "backing up" }, { - "key": "firewall", - "value": "open-source", - "namespace": "quantifying" + "key": "transmitter", + "value": "bluetooth", + "namespace": "connecting" }, { - "key": "bus", - "value": "digital", - "namespace": "indexing" + "key": "monitor", + "value": "bluetooth", + "namespace": "synthesizing" }, { - "key": "application", - "value": "cross-platform", - "namespace": "connecting" + "key": "panel", + "value": "digital", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "auxiliary", - "namespace": "quantifying" + "key": "bus", + "value": "virtual", + "namespace": "programming" } ], "type": "system", @@ -12402,45 +12387,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "4160a7b5-f1b6-4ff3-a6fe-a58a6da30410", - "display_name": "schaefer.test", + "id": "3caa40a3-b004-414b-ab15-8418c4e6ffd9", + "display_name": "collins.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:05.071Z", - "stale_timestamp": "2034-09-03T05:56:05.071Z", - "stale_warning_timestamp": "2034-09-10T05:56:05.071Z", - "updated": "2024-09-03T05:56:05.071Z", + "culled_timestamp": "2034-09-17T07:24:46.532Z", + "stale_timestamp": "2034-09-03T07:24:46.532Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.532Z", + "updated": "2024-09-03T07:24:46.532Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "1080p", - "namespace": "synthesizing" + "key": "capacitor", + "value": "neural", + "namespace": "bypassing" }, { - "key": "bandwidth", - "value": "wireless", - "namespace": "copying" + "key": "bus", + "value": "haptic", + "namespace": "calculating" }, { - "key": "capacitor", + "key": "card", "value": "open-source", - "namespace": "navigating" + "namespace": "programming" }, { - "key": "bandwidth", - "value": "auxiliary", - "namespace": "parsing" + "key": "application", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "hard drive", + "key": "capacitor", "value": "optical", - "namespace": "quantifying" + "namespace": "programming" } ], "type": "system", @@ -12448,45 +12433,45 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] }, { - "id": "4ed908cc-65db-45a6-9ff1-8daf7d28e608", - "display_name": "brekke.example", + "id": "48f53b2d-5618-4f63-b664-7bba7c1dbf4e", + "display_name": "hagenes.test", "groups": [], - "culled_timestamp": "2034-09-17T05:56:04.986Z", - "stale_timestamp": "2034-09-03T05:56:04.986Z", - "stale_warning_timestamp": "2034-09-10T05:56:04.986Z", - "updated": "2024-09-03T05:56:04.986Z", + "culled_timestamp": "2034-09-17T07:24:46.517Z", + "stale_timestamp": "2034-09-03T07:24:46.517Z", + "stale_warning_timestamp": "2034-09-10T07:24:46.517Z", + "updated": "2024-09-03T07:24:46.517Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "solid state", + "key": "bandwidth", + "value": "neural", "namespace": "navigating" }, { - "key": "pixel", - "value": "auxiliary", - "namespace": "hacking" + "key": "system", + "value": "optical", + "namespace": "compressing" }, { - "key": "driver", - "value": "open-source", - "namespace": "synthesizing" + "key": "interface", + "value": "redundant", + "namespace": "overriding" }, { - "key": "array", - "value": "back-end", + "key": "pixel", + "value": "redundant", "namespace": "hacking" }, { - "key": "bus", - "value": "multi-byte", - "namespace": "copying" + "key": "interface", + "value": "redundant", + "namespace": "backing up" } ], "type": "system", @@ -12494,23 +12479,23 @@ "os_minor_version": 0, "policies": [ { - "id": "0489a7ed-6000-45e1-864e-101bfa82fdb1", - "title": "Dolor illum rerum quia." + "id": "6782e2b5-33df-4ef1-99ff-3b3a722a4597", + "title": "Sed esse ea libero." } ] } ], "meta": { "total": 25, - "filter": "(os_major_version=8)", + "filter": "(os_minor_version=0)", "tags": [], "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/0489a7ed-6000-45e1-864e-101bfa82fdb1/systems?filter=%28os_major_version%3D8%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/0489a7ed-6000-45e1-864e-101bfa82fdb1/systems?filter=%28os_major_version%3D8%29&limit=10&offset=20", - "next": "/api/compliance/v2/reports/0489a7ed-6000-45e1-864e-101bfa82fdb1/systems?filter=%28os_major_version%3D8%29&limit=10&offset=10" + "first": "/api/compliance/v2/reports/6782e2b5-33df-4ef1-99ff-3b3a722a4597/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/6782e2b5-33df-4ef1-99ff-3b3a722a4597/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=20", + "next": "/api/compliance/v2/reports/6782e2b5-33df-4ef1-99ff-3b3a722a4597/systems?filter=%28os_minor_version%3D0%29&limit=10&offset=10" } }, "summary": "", @@ -12679,38 +12664,38 @@ "Returns a System under a Report": { "value": { "data": { - "id": "b50847e3-5880-43c2-9ccd-ddaf8503f8bb", - "display_name": "strosin.test", + "id": "0bb8d261-8cf8-4ecc-a5a1-4de53406fc0c", + "display_name": "koepp.example", "groups": [], - "culled_timestamp": "2034-09-17T05:56:06.233Z", - "stale_timestamp": "2034-09-03T05:56:06.233Z", - "stale_warning_timestamp": "2034-09-10T05:56:06.233Z", - "updated": "2024-09-03T05:56:06.233Z", + "culled_timestamp": "2034-09-17T07:24:47.739Z", + "stale_timestamp": "2034-09-03T07:24:47.739Z", + "stale_warning_timestamp": "2034-09-10T07:24:47.739Z", + "updated": "2024-09-03T07:24:47.740Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "haptic", - "namespace": "transmitting" + "key": "transmitter", + "value": "solid state", + "namespace": "calculating" }, { - "key": "card", - "value": "online", - "namespace": "programming" + "key": "sensor", + "value": "mobile", + "namespace": "generating" }, { - "key": "feed", - "value": "mobile", - "namespace": "hacking" + "key": "card", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "port", - "value": "primary", - "namespace": "copying" + "key": "card", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "interface", - "value": "digital", + "key": "firewall", + "value": "mobile", "namespace": "compressing" } ], @@ -12719,8 +12704,8 @@ "os_minor_version": 0, "policies": [ { - "id": "8efd93cb-9b63-44a3-bf69-7e6e8deec811", - "title": "Sint dolorum sit et." + "id": "1657fa9c-43b6-454d-b33c-3ae43102f809", + "title": "Vero eligendi reprehenderit odio." } ] } @@ -12753,7 +12738,7 @@ "Description of an error when requesting a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 2fcdd75a-830a-438e-a027-264d5bf83ebc" + "V2::System not found with ID 20d599d4-f5bd-42cd-8feb-2af9b43e03ef" ] }, "summary": "", @@ -12853,104 +12838,104 @@ "value": { "data": [ { - "id": "05a27c72-b975-48e7-8413-80d9f63063b3", - "profile_id": "0b2e981d-8256-4325-9b32-b0312887a03f", - "os_minor_version": "15", + "id": "17888415-6e8f-4395-9a03-de96b507455d", + "profile_id": "7c558682-9b9e-4db7-ab7b-725c9691eeb2", + "os_minor_version": "11", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "fd230556-9872-467a-8c49-8a92e0cd2c22", - "security_guide_version": "100.94.17" + "security_guide_id": "a9016dbe-3795-45a1-b2ac-3e3b2667518c", + "security_guide_version": "100.96.18" }, { - "id": "07f6ae30-34d4-4f6a-a679-29a9192f0dd5", - "profile_id": "5b0aa111-0299-4a9a-b2f5-52f61fae0695", + "id": "17f5ddf7-4606-4397-93ea-98db00ed099a", + "profile_id": "115628ed-dbc8-4111-90df-cfa3517b3c2c", "os_minor_version": "2", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "538e9a5b-4979-4138-adf0-ac7249394910", - "security_guide_version": "100.94.4" + "security_guide_id": "42fb98cd-6657-4c85-a9b5-2ed8d47c9fd3", + "security_guide_version": "100.96.9" }, { - "id": "0fce13f7-ac23-424f-bc57-06c8143d8942", - "profile_id": "05727dfe-39a2-4d35-b49b-be09160638d5", - "os_minor_version": "11", + "id": "1867ee84-91d8-4410-a342-cdade8734b82", + "profile_id": "dddf1f04-5be5-4cc0-bd18-126946aa99b2", + "os_minor_version": "1", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "32521b64-fc6c-4b0c-b5a4-6a09e29d76ce", - "security_guide_version": "100.94.13" + "security_guide_id": "cc1234d0-a260-40f3-8679-9eb560d9f369", + "security_guide_version": "100.96.8" }, { - "id": "1b7c0a0f-12b5-4929-bef9-0f862dc15d17", - "profile_id": "38a08713-8d31-46c7-b670-f365d15dc043", - "os_minor_version": "8", + "id": "190ad33b-3d48-48b5-a09f-6bbfe5a24722", + "profile_id": "67a74fe5-6252-4269-ae20-0415d5c1d391", + "os_minor_version": "5", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "b684a1fe-cd26-412f-a3a7-8e61e5e132c7", - "security_guide_version": "100.94.10" + "security_guide_id": "7c856f96-d092-4dd3-bdcf-835b6b14a18f", + "security_guide_version": "100.96.12" }, { - "id": "2b4f4f7a-056e-478d-8d23-7258096918ed", - "profile_id": "ded8338b-9888-4fb8-ac5a-407b3b160b61", - "os_minor_version": "14", + "id": "2a72b1b2-307f-4088-89d8-5b43756bbccf", + "profile_id": "265dbbb4-506a-41ac-8891-b954f8668046", + "os_minor_version": "19", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "02a661c3-ef76-46c7-8f62-55a6356f7fca", - "security_guide_version": "100.94.16" + "security_guide_id": "f36b5a84-b44a-4158-a176-a43999b750ea", + "security_guide_version": "100.96.26" }, { - "id": "2dad18ea-98c8-4a0a-8915-900d76b3c74e", - "profile_id": "e73f8c1d-5cb4-4840-a198-70c0829a0604", - "os_minor_version": "0", + "id": "2f1aa78c-a2aa-44d5-9397-ac9a0293a593", + "profile_id": "c7d1e2c5-fe8f-40dc-aaaf-6129ea8797a7", + "os_minor_version": "24", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "d6e74a6d-a4c4-4dd7-a0a6-248f4c6e101f", - "security_guide_version": "100.94.2" + "security_guide_id": "fd458a7a-bf05-4697-b596-8e99ee9cfc21", + "security_guide_version": "100.96.31" }, { - "id": "35a646ba-fe08-4a4e-98f4-cb3b3402546a", - "profile_id": "6a579822-852c-41db-a98b-487a6905d81d", - "os_minor_version": "5", + "id": "439dc268-223e-47fc-a14a-da3cbcec4127", + "profile_id": "71eb3bfe-3014-4465-b3ba-8451449757f1", + "os_minor_version": "6", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "9922321e-516b-40e6-a668-16c79f69c9b4", - "security_guide_version": "100.94.7" + "security_guide_id": "7c156d24-286f-40bd-8f05-9fb32e30eec2", + "security_guide_version": "100.96.13" }, { - "id": "469fbe46-879a-4cc6-a81c-560790af989c", - "profile_id": "9b135f21-59bc-4e85-8a65-17cbe9a80b9d", - "os_minor_version": "12", + "id": "50b904f1-d8ec-47cd-922f-7abd0ae11332", + "profile_id": "ce86e480-a902-4a5a-85e4-5ec2efe01a42", + "os_minor_version": "16", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "cac2beac-e46a-4216-b575-b01cefab7038", - "security_guide_version": "100.94.14" + "security_guide_id": "10b87423-cd05-4854-b5de-3ec9eca13ec4", + "security_guide_version": "100.96.23" }, { - "id": "475eb623-8bdf-4004-8359-3e830fcca951", - "profile_id": "36ec0ab9-158e-4c9d-819d-6c5d0a6ea5be", - "os_minor_version": "24", + "id": "565f6adb-764e-4566-8052-3de934a9e99a", + "profile_id": "abee561a-3542-495a-92a6-b3aaa5fa8493", + "os_minor_version": "13", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "9e5ebc97-09d0-44f5-941d-3250c1aaaaf6", - "security_guide_version": "100.94.26" + "security_guide_id": "3974d682-9688-4ed2-987f-84f446ecc971", + "security_guide_version": "100.96.20" }, { - "id": "53c83c91-725f-48d3-b239-74ef353b5581", - "profile_id": "adaf09bb-89a7-4488-8dbe-f6d451557204", - "os_minor_version": "7", + "id": "592424cd-f521-4d3f-8129-e8d46fe00c04", + "profile_id": "5c120035-b915-448a-a463-7fef348c6131", + "os_minor_version": "12", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "df3c730e-63dc-46ed-9ef2-72ec55a90fa0", - "security_guide_version": "100.94.9" + "security_guide_id": "c690c32b-4f56-42b9-a303-6dac2d297383", + "security_guide_version": "100.96.19" } ], "meta": { @@ -12959,9 +12944,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/10804fe7-9e85-4b8b-96f9-6b9167a39220/tailorings?limit=10&offset=0", - "last": "/api/compliance/v2/policies/10804fe7-9e85-4b8b-96f9-6b9167a39220/tailorings?limit=10&offset=20", - "next": "/api/compliance/v2/policies/10804fe7-9e85-4b8b-96f9-6b9167a39220/tailorings?limit=10&offset=10" + "first": "/api/compliance/v2/policies/5ac855ba-f6b7-4130-9b67-c72d4ada5837/tailorings?limit=10&offset=0", + "last": "/api/compliance/v2/policies/5ac855ba-f6b7-4130-9b67-c72d4ada5837/tailorings?limit=10&offset=20", + "next": "/api/compliance/v2/policies/5ac855ba-f6b7-4130-9b67-c72d4ada5837/tailorings?limit=10&offset=10" } }, "summary": "", @@ -12971,104 +12956,104 @@ "value": { "data": [ { - "id": "db9ce5c5-8de7-45d4-87fd-bf202d81c5fa", - "profile_id": "d001d8d0-289f-4f48-bdee-b748e2d8e837", + "id": "e9102d95-c9c0-486e-8b97-b9ac957a58b7", + "profile_id": "5e590728-8fee-4268-897a-60f95023293e", "os_minor_version": "0", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "e4551d05-eb3e-47dc-b2b9-37909fccd208", - "security_guide_version": "100.94.27" + "security_guide_id": "1572bd5c-eed2-48fe-979e-12304a0e7e74", + "security_guide_version": "100.96.32" }, { - "id": "9d809ef2-a0f4-4db1-af14-113ee6aae368", - "profile_id": "8173f3e0-d283-44df-bea8-8a63d137605d", + "id": "04e70faf-697b-4cdc-af88-763b6a62151d", + "profile_id": "424c905d-f2f7-41b7-8df3-4abff3980698", "os_minor_version": "1", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "8b25b0eb-34cb-45fe-bcae-0fc0b3487079", - "security_guide_version": "100.94.28" + "security_guide_id": "2b306763-28a8-44d8-8391-f4d2f2eb0252", + "security_guide_version": "100.96.33" }, { - "id": "b97b9179-44d1-447c-abf7-b120950343a3", - "profile_id": "174acbb1-e499-4180-b025-90f9df93073c", + "id": "77be0c1b-c263-4682-a2ef-4cf94a33fda4", + "profile_id": "0540cd71-f129-4efe-967c-cecfed13ae2f", "os_minor_version": "10", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "c2186a71-8a83-4ac3-a969-4d658798fd96", - "security_guide_version": "100.94.37" + "security_guide_id": "60c4253e-28ef-47c5-a15e-9f61bea7abc9", + "security_guide_version": "100.96.42" }, { - "id": "26b61234-5aa5-4c29-be9b-d265ab0aa52e", - "profile_id": "d7707ec6-0ed2-4574-9722-94acc181adb1", + "id": "6c49054f-8319-4e24-9856-47a3e2ed67d7", + "profile_id": "80a7eeec-ff56-4829-a3a0-7455cd5ad0d3", "os_minor_version": "11", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "1f1767f6-b818-47dd-90fc-0f64356e0ffa", - "security_guide_version": "100.94.38" + "security_guide_id": "710f078a-5628-4545-b315-9394c752f766", + "security_guide_version": "100.96.43" }, { - "id": "93a887e5-5b59-40f5-b724-f70880583ecd", - "profile_id": "49d8c389-8394-4eac-822a-fe72baa9f4b3", + "id": "5c9edeca-b27a-41e0-9a91-f732254f4b83", + "profile_id": "6eaad7b5-dc84-46eb-be35-00ad36374750", "os_minor_version": "12", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "60d0c965-dfee-4c9e-8ee9-59400eeae22f", - "security_guide_version": "100.94.39" + "security_guide_id": "7b0edd75-6f0c-49fc-ba12-3f45508a36fa", + "security_guide_version": "100.96.44" }, { - "id": "ba74bb40-f74a-42b8-9206-e983cce3279d", - "profile_id": "fb397dca-e57d-4c11-bff9-2976b5a868aa", + "id": "3c3f3ab9-2808-427a-9c69-c99ba391049b", + "profile_id": "08bfc22a-e558-4ef7-acbb-ef816cb46b6c", "os_minor_version": "13", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "d9dffc26-f3b4-4aa2-bb54-8dbb42f7f585", - "security_guide_version": "100.94.40" + "security_guide_id": "2130671c-38f3-4ae6-8acc-c169fbc4c6fe", + "security_guide_version": "100.96.45" }, { - "id": "4809bca6-c5a4-4b9c-be60-10dc619c102a", - "profile_id": "e87a41a6-3f52-4c54-94fa-d1167f19eed1", + "id": "70e97858-6b5e-4c83-b874-9c8422d155bf", + "profile_id": "548ec01a-46be-4d8b-b0c0-3903968e38f6", "os_minor_version": "14", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "1a19a6ab-585d-4451-8c95-7ce298578809", - "security_guide_version": "100.94.41" + "security_guide_id": "bcbcf915-192e-481c-aafb-cf0e918f7a71", + "security_guide_version": "100.96.46" }, { - "id": "d2891acf-9905-494e-993f-c1a58c78d254", - "profile_id": "9817f5c6-144b-4b83-86d7-88e7fb6b6687", + "id": "56c81496-551e-419f-a445-a2c083d5e036", + "profile_id": "a96d3f4c-2310-4a11-a128-39b4e05200d2", "os_minor_version": "15", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "8f66b590-5d4a-47a6-9d4c-1ed7cb44a838", - "security_guide_version": "100.94.42" + "security_guide_id": "95c40c0f-f629-49fc-923d-65c009823bd0", + "security_guide_version": "100.96.47" }, { - "id": "e9c33179-b18b-40d6-a6ab-b8375eaf5b39", - "profile_id": "e749b018-ff1d-4f5b-9bc1-430d5c3e4fba", + "id": "348df10b-de9f-45f8-9234-845f3d886145", + "profile_id": "e5e9571a-f678-4840-be32-733146f3e717", "os_minor_version": "16", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "f1fbf129-e362-4794-9d87-b0327f546f13", - "security_guide_version": "100.94.43" + "security_guide_id": "6aa472b2-ea4a-43cb-af68-9459caf1d7b1", + "security_guide_version": "100.96.48" }, { - "id": "c2df667f-1802-4daa-9ee3-5d3c85c5e184", - "profile_id": "0b5bf138-abc4-4cd2-b700-7c832bdc6fd1", + "id": "ae1bc1a1-ffed-4dfb-8325-598e10b7d32a", + "profile_id": "d9e3d78a-eacb-4d97-be02-e0e7637f0c40", "os_minor_version": "17", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "accfa528-6068-4c49-b46d-cf253d154970", - "security_guide_version": "100.94.44" + "security_guide_id": "fc0a1f3d-6018-4036-a149-46225a277fe3", + "security_guide_version": "100.96.49" } ], "meta": { @@ -13078,37 +13063,37 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/policies/3e5d7362-0f25-4137-b754-60280a1abcf0/tailorings?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/policies/3e5d7362-0f25-4137-b754-60280a1abcf0/tailorings?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/policies/3e5d7362-0f25-4137-b754-60280a1abcf0/tailorings?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/policies/bc132d31-d0f1-44b5-8147-cf53bb9278d6/tailorings?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/bc132d31-d0f1-44b5-8147-cf53bb9278d6/tailorings?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/bc132d31-d0f1-44b5-8147-cf53bb9278d6/tailorings?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", "description": "" }, - "List of Tailorings filtered by '(os_minor_version=18)'": { + "List of Tailorings filtered by '(os_minor_version=7)'": { "value": { "data": [ { - "id": "0c8b58d4-77d5-4254-898f-92d363864774", - "profile_id": "68eedc52-d94e-4a61-9adc-9bdaef18c2dd", - "os_minor_version": "18", + "id": "04bef9fb-fc56-4490-b753-b44a2a0e4ffc", + "profile_id": "67d4a423-c512-408d-85e5-14bc9875037a", + "os_minor_version": "7", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "9d2b5648-65d0-4a14-8d90-2ba4870e6382", - "security_guide_version": "100.95.20" + "security_guide_id": "3ef7dcb8-577c-4096-8119-c336dc6d501e", + "security_guide_version": "100.97.14" } ], "meta": { "total": 1, - "filter": "(os_minor_version=18)", + "filter": "(os_minor_version=7)", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/294b7508-3df4-4951-b039-67eafdfdfb88/tailorings?filter=%28os_minor_version%3D18%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/294b7508-3df4-4951-b039-67eafdfdfb88/tailorings?filter=%28os_minor_version%3D18%29&limit=10&offset=0" + "first": "/api/compliance/v2/policies/04f81445-a6f2-4e80-8aca-f5c8262a3e44/tailorings?filter=%28os_minor_version%3D7%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/04f81445-a6f2-4e80-8aca-f5c8262a3e44/tailorings?filter=%28os_minor_version%3D7%29&limit=10&offset=0" } }, "summary": "", @@ -13216,14 +13201,14 @@ "Returns a Tailoring": { "value": { "data": { - "id": "003ea097-10aa-46b4-be11-6f7a71953b5c", - "profile_id": "092c16e0-1b26-41d0-aed0-5b0b003aa7dd", + "id": "4b31fb59-ca9a-4776-b252-3243467393af", + "profile_id": "8585c6d4-25b6-4e2b-836a-5b9a8fbeee27", "os_minor_version": "1", "value_overrides": {}, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "3f05fe13-f50a-49ed-a8fa-cf1320757afd", - "security_guide_version": "100.96.27" + "security_guide_id": "cfc9a5cb-3aa0-4408-be3d-fde7a67f5c7e", + "security_guide_version": "100.98.32" } }, "summary": "", @@ -13254,7 +13239,7 @@ "Description of an error when requesting a non-existing Tailoring": { "value": { "errors": [ - "V2::Tailoring not found with ID bd034bd3-b4b7-4a4c-952b-6477ebd010e5" + "V2::Tailoring not found with ID bb84326a-3e95-48a5-a78e-77ea53c25a39" ] }, "summary": "", @@ -13312,16 +13297,16 @@ "Returns the updated Tailoring": { "value": { "data": { - "id": "91629b04-9b3b-4b75-bf68-9f135fa981c5", - "profile_id": "110f276a-edb1-4cbb-a629-065787bcfecd", + "id": "1289343b-c8d8-4d22-88df-4ff29aca1e30", + "profile_id": "5cf81bdb-cb60-400d-bc72-386bf672bfee", "os_minor_version": "1", "value_overrides": { - "000615fe-dde3-4a3a-adba-2a497bbee565": "123" + "b965174f-e827-4216-84b6-b70cf067fde5": "123" }, "type": "tailoring", "os_major_version": 7, - "security_guide_id": "8362725e-4e41-4617-9610-2c60968ac38b", - "security_guide_version": "100.96.28" + "security_guide_id": "467fb7a3-e15a-4974-9df3-0cbae3b6bf5a", + "security_guide_version": "100.98.33" } }, "summary": "", @@ -13401,16 +13386,16 @@ "value": { "profiles": [ { - "id": "xccdf_org.ssgproject.content_profile_9ca45ffd267d3ad56f5868fd1bcfa25b", - "title": "Omnis est iste minima.", + "id": "xccdf_org.ssgproject.content_profile_a07c0ae4a4542c7b478e793d5b467c2a", + "title": "Quisquam excepturi vitae cum.", "groups": {}, "rules": {}, "variables": { - "foo_value_8400ecaa-5f0f-47f8-963f-53952830239f": { - "value": "647287" + "foo_value_db4734fc-3490-44db-b924-4dac43a4e9a3": { + "value": "478026" }, - "foo_value_25037482-a9c7-476e-9c21-7458feeb0eb3": { - "value": "196265" + "foo_value_54879ebf-faef-4bc3-85c0-db06dce12102": { + "value": "39767" } } } @@ -13528,414 +13513,414 @@ "value": { "data": [ { - "id": "023149ff-e418-4ea9-97fa-2bc88cb5b464", - "end_time": "2024-09-03T05:55:08.028Z", + "id": "09e65f18-4fb8-48da-926c-8aab43ac524b", + "end_time": "2024-09-03T07:23:49.230Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "walsh.example", + "display_name": "ward-mckenzie.test", "groups": [], "tags": [ { - "key": "port", - "value": "bluetooth", - "namespace": "programming" + "key": "monitor", + "value": "virtual", + "namespace": "bypassing" }, { - "key": "alarm", - "value": "auxiliary", - "namespace": "overriding" + "key": "array", + "value": "primary", + "namespace": "parsing" }, { - "key": "bus", - "value": "haptic", + "key": "bandwidth", + "value": "auxiliary", "namespace": "bypassing" }, { - "key": "protocol", - "value": "solid state", - "namespace": "navigating" + "key": "alarm", + "value": "digital", + "namespace": "quantifying" }, { - "key": "feed", - "value": "mobile", - "namespace": "bypassing" + "key": "program", + "value": "online", + "namespace": "backing up" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "7e9b47d3-a5fe-4de2-bbbd-68c51f22bc5c", - "security_guide_version": "100.97.40" + "system_id": "5f8eddbd-f8d0-4163-b6ae-4d6c033cbf0d", + "security_guide_version": "100.99.36" }, { - "id": "0e876f5a-4e18-4bc7-91ad-c6971287aa67", - "end_time": "2024-09-03T05:55:07.959Z", + "id": "24cfe293-9493-4c7e-a845-a2251d562ab9", + "end_time": "2024-09-03T07:23:49.257Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "bradtke.test", + "display_name": "durgan.test", "groups": [], "tags": [ { - "key": "application", - "value": "wireless", - "namespace": "parsing" + "key": "program", + "value": "haptic", + "namespace": "overriding" }, { - "key": "application", - "value": "multi-byte", - "namespace": "copying" + "key": "program", + "value": "virtual", + "namespace": "quantifying" }, { - "key": "panel", - "value": "haptic", - "namespace": "overriding" + "key": "matrix", + "value": "virtual", + "namespace": "transmitting" }, { - "key": "bus", - "value": "online", - "namespace": "navigating" + "key": "panel", + "value": "1080p", + "namespace": "quantifying" }, { - "key": "hard drive", - "value": "wireless", - "namespace": "generating" + "key": "pixel", + "value": "open-source", + "namespace": "overriding" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "16ada0e8-7ad7-46ef-8449-e252f91af10d", - "security_guide_version": "100.97.40" + "system_id": "be60b619-f3b1-4d84-bd9b-9d49eecfaf1d", + "security_guide_version": "100.99.36" }, { - "id": "119918b0-8bce-4a0e-ad77-54e637267533", - "end_time": "2024-09-03T05:55:07.970Z", + "id": "29cf3533-f237-4806-b53f-0680992f22eb", + "end_time": "2024-09-03T07:23:49.349Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "okeefe.test", + "display_name": "marvin.test", "groups": [], "tags": [ { - "key": "protocol", - "value": "back-end", - "namespace": "synthesizing" + "key": "pixel", + "value": "multi-byte", + "namespace": "indexing" }, { - "key": "sensor", - "value": "open-source", - "namespace": "overriding" + "key": "driver", + "value": "neural", + "namespace": "bypassing" }, { - "key": "bus", - "value": "solid state", - "namespace": "calculating" + "key": "port", + "value": "open-source", + "namespace": "quantifying" }, { - "key": "bus", - "value": "optical", - "namespace": "navigating" + "key": "bandwidth", + "value": "1080p", + "namespace": "compressing" }, { - "key": "application", - "value": "wireless", - "namespace": "parsing" + "key": "bandwidth", + "value": "multi-byte", + "namespace": "overriding" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "b1f6e78f-c7c5-4dbf-a1e6-b5f920c2d9e6", - "security_guide_version": "100.97.40" + "system_id": "083a414c-fc94-4fa3-bfe5-525b96fa888e", + "security_guide_version": "100.99.36" }, { - "id": "137b0059-2afd-4940-adf8-60f671eb2744", - "end_time": "2024-09-03T05:55:08.002Z", + "id": "333c6266-e2e3-4d8d-91fb-02bf2ffce62f", + "end_time": "2024-09-03T07:23:49.241Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "king.test", + "display_name": "wolf.test", "groups": [], "tags": [ { - "key": "card", - "value": "digital", - "namespace": "quantifying" + "key": "firewall", + "value": "haptic", + "namespace": "navigating" }, { - "key": "application", + "key": "program", "value": "online", - "namespace": "bypassing" + "namespace": "parsing" }, { - "key": "array", - "value": "wireless", - "namespace": "synthesizing" + "key": "hard drive", + "value": "mobile", + "namespace": "generating" }, { - "key": "transmitter", - "value": "open-source", - "namespace": "generating" + "key": "alarm", + "value": "cross-platform", + "namespace": "quantifying" }, { - "key": "bus", - "value": "back-end", - "namespace": "synthesizing" + "key": "system", + "value": "auxiliary", + "namespace": "compressing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "df29cb96-ab97-4738-869e-923884bb79a4", - "security_guide_version": "100.97.40" + "system_id": "cec58751-a3f5-49b0-9096-b2fbd309e348", + "security_guide_version": "100.99.36" }, { - "id": "155f656d-7038-44fa-bb6b-cdc201e67539", - "end_time": "2024-09-03T05:55:07.981Z", + "id": "36c6a225-366d-4bf7-bca1-ffb2bc6a0744", + "end_time": "2024-09-03T07:23:49.270Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "johnson.example", + "display_name": "koss.example", "groups": [], "tags": [ { - "key": "bus", - "value": "virtual", - "namespace": "programming" + "key": "bandwidth", + "value": "redundant", + "namespace": "connecting" }, { "key": "port", - "value": "bluetooth", - "namespace": "bypassing" + "value": "virtual", + "namespace": "calculating" }, { - "key": "microchip", - "value": "digital", - "namespace": "parsing" + "key": "monitor", + "value": "multi-byte", + "namespace": "programming" }, { - "key": "monitor", - "value": "digital", - "namespace": "overriding" + "key": "bandwidth", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "driver", - "value": "neural", - "namespace": "navigating" + "key": "application", + "value": "bluetooth", + "namespace": "parsing" } ], "os_major_version": 8, "os_minor_version": 0, - "compliant": true, - "system_id": "993e95e9-fbcc-44ef-8449-07c22fd3ee00", - "security_guide_version": "100.97.40" + "compliant": false, + "system_id": "e6dd5660-8071-4ad0-9fb4-8bdfbfcf1428", + "security_guide_version": "100.99.36" }, { - "id": "21d26f36-4477-425f-b83a-5ba2e60a1402", - "end_time": "2024-09-03T05:55:08.012Z", + "id": "3fbcf102-6fec-4705-81fe-3569cb48c445", + "end_time": "2024-09-03T07:23:49.343Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "bosco.test", + "display_name": "walsh-streich.example", "groups": [], "tags": [ { - "key": "panel", - "value": "back-end", - "namespace": "connecting" + "key": "matrix", + "value": "virtual", + "namespace": "synthesizing" }, { - "key": "hard drive", - "value": "online", - "namespace": "programming" + "key": "transmitter", + "value": "cross-platform", + "namespace": "transmitting" }, { - "key": "bus", - "value": "open-source", - "namespace": "programming" + "key": "sensor", + "value": "mobile", + "namespace": "transmitting" }, { - "key": "port", - "value": "digital", - "namespace": "connecting" + "key": "card", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "port", - "value": "virtual", - "namespace": "connecting" + "key": "bandwidth", + "value": "back-end", + "namespace": "bypassing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "03b15041-14b5-49bc-bcbf-e8cbd3abb500", - "security_guide_version": "100.97.40" + "system_id": "7f7cc403-c941-40d3-b48b-b67e1c3b7584", + "security_guide_version": "100.99.36" }, { - "id": "292a83fe-e6ef-4bbc-af7c-8419c30a8410", - "end_time": "2024-09-03T05:55:07.933Z", + "id": "4b13449a-d1a0-4dac-969e-090322262e7d", + "end_time": "2024-09-03T07:23:49.362Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "dietrich.example", + "display_name": "towne-emard.example", "groups": [], "tags": [ { - "key": "protocol", - "value": "cross-platform", - "namespace": "bypassing" + "key": "hard drive", + "value": "multi-byte", + "namespace": "programming" }, { - "key": "array", - "value": "auxiliary", - "namespace": "bypassing" + "key": "sensor", + "value": "optical", + "namespace": "compressing" }, { - "key": "driver", + "key": "program", "value": "cross-platform", - "namespace": "synthesizing" + "namespace": "transmitting" }, { - "key": "bus", - "value": "wireless", - "namespace": "calculating" + "key": "transmitter", + "value": "optical", + "namespace": "generating" }, { - "key": "array", - "value": "wireless", - "namespace": "parsing" + "key": "transmitter", + "value": "solid state", + "namespace": "synthesizing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "efd1e8b7-bfa9-4bb8-a5d6-56ef887e8da9", - "security_guide_version": "100.97.40" + "system_id": "f1d5405a-f910-4a7a-92d1-5fc022e00095", + "security_guide_version": "100.99.36" }, { - "id": "2aebf8e5-459f-46c2-bc98-d9685a1a2134", - "end_time": "2024-09-03T05:55:07.911Z", + "id": "4ed3f476-ddf4-4f9a-b257-1b75746cc957", + "end_time": "2024-09-03T07:23:49.304Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "hartmann.test", + "display_name": "miller-upton.example", "groups": [], "tags": [ { - "key": "circuit", - "value": "back-end", - "namespace": "parsing" + "key": "protocol", + "value": "mobile", + "namespace": "transmitting" }, { - "key": "array", - "value": "primary", - "namespace": "quantifying" + "key": "matrix", + "value": "virtual", + "namespace": "backing up" }, { - "key": "pixel", - "value": "open-source", - "namespace": "bypassing" + "key": "interface", + "value": "auxiliary", + "namespace": "calculating" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "synthesizing" + "key": "transmitter", + "value": "wireless", + "namespace": "quantifying" }, { - "key": "port", - "value": "1080p", - "namespace": "indexing" + "key": "hard drive", + "value": "cross-platform", + "namespace": "compressing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "0096c74b-364f-4e2b-a39f-114df1bb3dc5", - "security_guide_version": "100.97.40" + "system_id": "9067821c-9f47-4e5e-a70f-1e0a0b1c4837", + "security_guide_version": "100.99.36" }, { - "id": "2b6fe252-62df-4346-8c7f-35ce3ba0d274", - "end_time": "2024-09-03T05:55:07.946Z", + "id": "5cc57db6-f435-473f-9f99-6d2da3fc55a9", + "end_time": "2024-09-03T07:23:49.224Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "heaney.test", + "display_name": "murazik.test", "groups": [], "tags": [ { - "key": "panel", - "value": "wireless", - "namespace": "bypassing" + "key": "application", + "value": "primary", + "namespace": "copying" }, { - "key": "matrix", - "value": "open-source", - "namespace": "overriding" + "key": "pixel", + "value": "auxiliary", + "namespace": "compressing" }, { - "key": "feed", - "value": "neural", - "namespace": "programming" + "key": "alarm", + "value": "1080p", + "namespace": "compressing" }, { - "key": "transmitter", - "value": "online", - "namespace": "calculating" + "key": "circuit", + "value": "open-source", + "namespace": "backing up" }, { - "key": "card", - "value": "auxiliary", - "namespace": "generating" + "key": "hard drive", + "value": "primary", + "namespace": "connecting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "b0a0a064-a3d7-41a2-a73f-098c24ea004c", - "security_guide_version": "100.97.40" + "system_id": "212b7e0a-1aa0-40a9-8a3f-ac0e168acc64", + "security_guide_version": "100.99.36" }, { - "id": "2d9dfa27-65fd-47f1-be84-58f812eead89", - "end_time": "2024-09-03T05:55:07.997Z", + "id": "5f797c5c-5674-4acc-bc90-e09f8f7be34c", + "end_time": "2024-09-03T07:23:49.282Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "mcglynn-cronin.test", + "display_name": "schroeder.test", "groups": [], "tags": [ { "key": "circuit", - "value": "neural", + "value": "auxiliary", "namespace": "generating" }, { - "key": "bandwidth", - "value": "haptic", - "namespace": "synthesizing" + "key": "sensor", + "value": "online", + "namespace": "bypassing" }, { - "key": "driver", - "value": "primary", - "namespace": "connecting" + "key": "bus", + "value": "auxiliary", + "namespace": "parsing" }, { - "key": "driver", - "value": "optical", - "namespace": "connecting" + "key": "program", + "value": "solid state", + "namespace": "generating" }, { - "key": "protocol", - "value": "optical", - "namespace": "transmitting" + "key": "program", + "value": "auxiliary", + "namespace": "indexing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "7ec58b64-b288-4d20-9cf5-8fbfab9894e9", - "security_guide_version": "100.97.40" + "system_id": "6911a7ad-8ea1-4366-b84d-034489b58fbb", + "security_guide_version": "100.99.36" } ], "meta": { @@ -13944,9 +13929,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/25189761-2e4e-4d28-91bb-d158db2bde84/test_results?limit=10&offset=0", - "last": "/api/compliance/v2/reports/25189761-2e4e-4d28-91bb-d158db2bde84/test_results?limit=10&offset=20", - "next": "/api/compliance/v2/reports/25189761-2e4e-4d28-91bb-d158db2bde84/test_results?limit=10&offset=10" + "first": "/api/compliance/v2/reports/7f9d7e4d-36a3-4977-9acf-235da0384115/test_results?limit=10&offset=0", + "last": "/api/compliance/v2/reports/7f9d7e4d-36a3-4977-9acf-235da0384115/test_results?limit=10&offset=20", + "next": "/api/compliance/v2/reports/7f9d7e4d-36a3-4977-9acf-235da0384115/test_results?limit=10&offset=10" } }, "summary": "", @@ -13956,414 +13941,414 @@ "value": { "data": [ { - "id": "eb5a7752-f3e0-48ff-b576-311a7e4fabfc", - "end_time": "2024-09-03T05:55:08.368Z", + "id": "e6f299e0-0351-4123-a457-0825ab17abd0", + "end_time": "2024-09-03T07:23:49.582Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "bednar.test", + "display_name": "funk.test", "groups": [], "tags": [ { - "key": "interface", - "value": "virtual", - "namespace": "overriding" + "key": "bandwidth", + "value": "optical", + "namespace": "indexing" }, { - "key": "feed", - "value": "online", - "namespace": "calculating" + "key": "protocol", + "value": "neural", + "namespace": "generating" }, { - "key": "card", - "value": "redundant", - "namespace": "hacking" + "key": "monitor", + "value": "mobile", + "namespace": "quantifying" }, { - "key": "bus", - "value": "bluetooth", - "namespace": "calculating" + "key": "pixel", + "value": "auxiliary", + "namespace": "compressing" }, { - "key": "protocol", - "value": "mobile", - "namespace": "copying" + "key": "monitor", + "value": "1080p", + "namespace": "navigating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "9d7bdd3c-89cf-49d2-80bd-59e735fe7992", - "security_guide_version": "100.99.6" + "system_id": "95e38b9c-089a-4cea-b75f-79284dd02e65", + "security_guide_version": "100.100.39" }, { - "id": "2aa0a72c-6353-4724-ae60-73336d82dbaa", - "end_time": "2024-09-03T05:55:08.363Z", + "id": "f185c5d6-602d-40e3-a3cc-78618cc1646f", + "end_time": "2024-09-03T07:23:49.592Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "volkman-douglas.test", + "display_name": "willms.example", "groups": [], "tags": [ { - "key": "circuit", + "key": "matrix", "value": "multi-byte", - "namespace": "indexing" + "namespace": "parsing" }, { - "key": "pixel", - "value": "solid state", - "namespace": "connecting" + "key": "hard drive", + "value": "optical", + "namespace": "parsing" }, { - "key": "bandwidth", - "value": "multi-byte", + "key": "alarm", + "value": "virtual", "namespace": "bypassing" }, { - "key": "monitor", - "value": "primary", - "namespace": "copying" + "key": "matrix", + "value": "wireless", + "namespace": "indexing" }, { - "key": "transmitter", - "value": "bluetooth", - "namespace": "backing up" + "key": "feed", + "value": "mobile", + "namespace": "copying" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "bd09b1b9-59ed-45dd-a417-18f380dfbc1f", - "security_guide_version": "100.99.6" + "system_id": "4d6ad9ce-fc2f-485c-af4e-562ba6794e2a", + "security_guide_version": "100.100.39" }, { - "id": "e72c84c5-56ff-4ed9-8102-39cfb06ea202", - "end_time": "2024-09-03T05:55:08.317Z", + "id": "5c0d9624-1430-4fd6-a178-cd21fcad341b", + "end_time": "2024-09-03T07:23:49.668Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "will-walsh.test", + "display_name": "stokes.example", "groups": [], "tags": [ { - "key": "system", - "value": "mobile", - "namespace": "parsing" + "key": "driver", + "value": "redundant", + "namespace": "backing up" }, { - "key": "pixel", - "value": "1080p", - "namespace": "quantifying" + "key": "system", + "value": "bluetooth", + "namespace": "backing up" }, { - "key": "array", + "key": "monitor", "value": "neural", - "namespace": "compressing" + "namespace": "hacking" }, { - "key": "protocol", - "value": "back-end", - "namespace": "compressing" + "key": "panel", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "bus", - "value": "online", - "namespace": "calculating" + "key": "interface", + "value": "redundant", + "namespace": "connecting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "d28b9411-8575-4b73-a7ac-3b1f571a785c", - "security_guide_version": "100.99.6" + "system_id": "ca7b918d-cab4-4edd-af2d-af714ca9efd8", + "security_guide_version": "100.100.39" }, { - "id": "1c5aa1f6-c494-428d-b8bb-221d63085726", - "end_time": "2024-09-03T05:55:08.387Z", + "id": "c057ceb2-bafc-4a67-a747-b4b3f3a0fb8c", + "end_time": "2024-09-03T07:23:49.567Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "hauck.test", + "display_name": "cassin.test", "groups": [], "tags": [ { - "key": "driver", - "value": "open-source", - "namespace": "copying" + "key": "alarm", + "value": "optical", + "namespace": "calculating" }, { - "key": "application", - "value": "solid state", - "namespace": "copying" + "key": "feed", + "value": "cross-platform", + "namespace": "hacking" }, { - "key": "system", + "key": "driver", "value": "haptic", "namespace": "compressing" }, { - "key": "card", - "value": "mobile", - "namespace": "backing up" + "key": "system", + "value": "primary", + "namespace": "indexing" }, { - "key": "panel", - "value": "mobile", - "namespace": "copying" + "key": "feed", + "value": "optical", + "namespace": "hacking" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "45804cb9-97dc-41f0-82e4-b09ef1c069b3", - "security_guide_version": "100.99.6" + "system_id": "678a3169-8708-4579-88f2-b32d55b5ee9a", + "security_guide_version": "100.100.39" }, { - "id": "7aa65817-a753-489b-aa72-940394d94478", - "end_time": "2024-09-03T05:55:08.274Z", + "id": "a9bba0df-3a35-4836-bccc-dfde4d94e25d", + "end_time": "2024-09-03T07:23:49.637Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "bernhard-bartell.example", + "display_name": "weimann-borer.example", "groups": [], "tags": [ { - "key": "circuit", - "value": "wireless", - "namespace": "calculating" + "key": "matrix", + "value": "multi-byte", + "namespace": "quantifying" }, { - "key": "transmitter", - "value": "cross-platform", - "namespace": "transmitting" + "key": "pixel", + "value": "open-source", + "namespace": "compressing" }, { - "key": "application", + "key": "array", "value": "wireless", - "namespace": "synthesizing" + "namespace": "generating" }, { - "key": "interface", - "value": "online", - "namespace": "overriding" + "key": "matrix", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "driver", - "value": "redundant", - "namespace": "connecting" + "key": "firewall", + "value": "wireless", + "namespace": "bypassing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "31aee4c4-6555-4faf-a691-164c4381e2e8", - "security_guide_version": "100.99.6" + "system_id": "eb145d7b-ff66-46cb-8fcf-4c376240b4a3", + "security_guide_version": "100.100.39" }, { - "id": "7f068e61-8570-42df-bf3f-1dc648d8f6c8", - "end_time": "2024-09-03T05:55:08.331Z", + "id": "6f7a27ce-76e0-4986-9ee2-52bd5617bfd3", + "end_time": "2024-09-03T07:23:49.647Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "harber.example", + "display_name": "marquardt.test", "groups": [], "tags": [ { - "key": "sensor", - "value": "haptic", - "namespace": "quantifying" + "key": "array", + "value": "digital", + "namespace": "connecting" }, { - "key": "firewall", - "value": "online", - "namespace": "copying" + "key": "system", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "capacitor", - "value": "multi-byte", - "namespace": "overriding" + "key": "port", + "value": "solid state", + "namespace": "programming" }, { - "key": "panel", - "value": "mobile", - "namespace": "synthesizing" + "key": "driver", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "pixel", - "value": "digital", - "namespace": "overriding" + "key": "hard drive", + "value": "cross-platform", + "namespace": "backing up" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "6b06ed05-d12b-4b31-9f37-881c6a8091fd", - "security_guide_version": "100.99.6" + "system_id": "7330f5a1-5c08-46cd-9c55-30babcaf6963", + "security_guide_version": "100.100.39" }, { - "id": "c376073a-6498-473e-bb20-3695e9390f5c", - "end_time": "2024-09-03T05:55:08.290Z", + "id": "4a074dc6-24de-4aa3-8678-5dad10d014f7", + "end_time": "2024-09-03T07:23:49.690Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "bergstrom.example", + "display_name": "lueilwitz.example", "groups": [], "tags": [ { - "key": "microchip", - "value": "online", - "namespace": "indexing" + "key": "firewall", + "value": "back-end", + "namespace": "parsing" }, { - "key": "feed", - "value": "auxiliary", - "namespace": "connecting" + "key": "card", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "capacitor", - "value": "virtual", - "namespace": "hacking" + "key": "port", + "value": "neural", + "namespace": "copying" }, { - "key": "bandwidth", - "value": "haptic", - "namespace": "overriding" + "key": "transmitter", + "value": "bluetooth", + "namespace": "transmitting" }, { - "key": "pixel", - "value": "redundant", - "namespace": "overriding" + "key": "feed", + "value": "digital", + "namespace": "generating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "cfb4e2f9-557b-4d51-ba14-d4669f5f3057", - "security_guide_version": "100.99.6" + "system_id": "2afd42d0-b2fa-43d4-abf7-0744519e519c", + "security_guide_version": "100.100.39" }, { - "id": "edb64a12-40fd-4fc2-88b3-f94922ab54db", - "end_time": "2024-09-03T05:55:08.301Z", + "id": "fb84020a-b611-43df-864b-6b42f7ce0495", + "end_time": "2024-09-03T07:23:49.642Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "kohler-dare.test", + "display_name": "hauck.example", "groups": [], "tags": [ { - "key": "sensor", - "value": "auxiliary", + "key": "feed", + "value": "wireless", "namespace": "connecting" }, { - "key": "matrix", - "value": "1080p", - "namespace": "compressing" + "key": "port", + "value": "redundant", + "namespace": "backing up" }, { "key": "system", - "value": "1080p", - "namespace": "compressing" + "value": "auxiliary", + "namespace": "synthesizing" }, { - "key": "monitor", - "value": "virtual", - "namespace": "programming" + "key": "system", + "value": "back-end", + "namespace": "parsing" }, { - "key": "transmitter", - "value": "online", - "namespace": "transmitting" + "key": "capacitor", + "value": "primary", + "namespace": "generating" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "39c65584-b89a-41ba-b781-605edeffaf84", - "security_guide_version": "100.99.6" + "system_id": "c11f1b82-1ee2-4e2d-b881-4453d10fb3bb", + "security_guide_version": "100.100.39" }, { - "id": "6e54d628-871e-4dc8-b02b-0ade0035321e", - "end_time": "2024-09-03T05:55:08.399Z", + "id": "8837e299-b175-4fe3-b611-5ee1849983f7", + "end_time": "2024-09-03T07:23:49.620Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "larson-witting.test", + "display_name": "heidenreich.test", "groups": [], "tags": [ { - "key": "application", - "value": "1080p", - "namespace": "generating" + "key": "circuit", + "value": "mobile", + "namespace": "overriding" }, { - "key": "bandwidth", - "value": "redundant", - "namespace": "calculating" + "key": "circuit", + "value": "cross-platform", + "namespace": "navigating" }, { - "key": "feed", + "key": "firewall", "value": "auxiliary", - "namespace": "copying" + "namespace": "hacking" }, { - "key": "transmitter", - "value": "mobile", - "namespace": "overriding" + "key": "bandwidth", + "value": "virtual", + "namespace": "copying" }, { - "key": "protocol", - "value": "back-end", - "namespace": "overriding" + "key": "transmitter", + "value": "1080p", + "namespace": "bypassing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "f274c95b-7e7f-465c-a535-8cd8fa0f2467", - "security_guide_version": "100.99.6" + "system_id": "9f8aa413-3190-4abb-8d54-e723a53898ac", + "security_guide_version": "100.100.39" }, { - "id": "295c72af-ca3c-410f-bf68-9a0ece1dad9e", - "end_time": "2024-09-03T05:55:08.312Z", + "id": "ff7a2261-7d0a-41c1-b080-247667061383", + "end_time": "2024-09-03T07:23:49.683Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "turner.test", + "display_name": "goyette.test", "groups": [], "tags": [ { - "key": "interface", - "value": "online", - "namespace": "indexing" + "key": "capacitor", + "value": "cross-platform", + "namespace": "programming" }, { - "key": "hard drive", - "value": "bluetooth", - "namespace": "synthesizing" + "key": "firewall", + "value": "wireless", + "namespace": "navigating" }, { - "key": "hard drive", + "key": "feed", "value": "mobile", - "namespace": "quantifying" + "namespace": "synthesizing" }, { - "key": "circuit", - "value": "back-end", - "namespace": "connecting" + "key": "hard drive", + "value": "solid state", + "namespace": "synthesizing" }, { - "key": "hard drive", - "value": "1080p", - "namespace": "hacking" + "key": "circuit", + "value": "auxiliary", + "namespace": "parsing" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "b9fac906-4702-42b8-9cc1-71ed4aa3a18a", - "security_guide_version": "100.99.6" + "system_id": "f6ce30cd-a9aa-4ef9-bdf2-8d32debf98c4", + "security_guide_version": "100.100.39" } ], "meta": { @@ -14373,9 +14358,9 @@ "sort_by": "score" }, "links": { - "first": "/api/compliance/v2/reports/b174fc75-7ab7-40d3-aa73-ad2c71404ecc/test_results?limit=10&offset=0&sort_by=score", - "last": "/api/compliance/v2/reports/b174fc75-7ab7-40d3-aa73-ad2c71404ecc/test_results?limit=10&offset=20&sort_by=score", - "next": "/api/compliance/v2/reports/b174fc75-7ab7-40d3-aa73-ad2c71404ecc/test_results?limit=10&offset=10&sort_by=score" + "first": "/api/compliance/v2/reports/91500dcc-d9c4-48f1-b412-3ad6b54c0b46/test_results?limit=10&offset=0&sort_by=score", + "last": "/api/compliance/v2/reports/91500dcc-d9c4-48f1-b412-3ad6b54c0b46/test_results?limit=10&offset=20&sort_by=score", + "next": "/api/compliance/v2/reports/91500dcc-d9c4-48f1-b412-3ad6b54c0b46/test_results?limit=10&offset=10&sort_by=score" } }, "summary": "", @@ -14391,8 +14376,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/reports/d5e89725-bcb1-47a4-8f5f-bd68cd6ce183/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0", - "last": "/api/compliance/v2/reports/d5e89725-bcb1-47a4-8f5f-bd68cd6ce183/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0" + "first": "/api/compliance/v2/reports/21418813-f8f9-4978-96b2-f892c0fa164a/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0", + "last": "/api/compliance/v2/reports/21418813-f8f9-4978-96b2-f892c0fa164a/test_results?filter=%28os_minor_version%3D8%29&limit=10&offset=0" } }, "summary": "", @@ -14561,45 +14546,45 @@ "Returns a Test Result under a Report": { "value": { "data": { - "id": "80d41b54-11e6-4264-8462-54c768ab71f4", - "end_time": "2024-09-03T05:55:10.207Z", + "id": "0aa26681-2969-48df-9422-924d419ac71f", + "end_time": "2024-09-03T07:23:51.292Z", "failed_rule_count": 0, "supported": true, "type": "test_result", - "display_name": "corkery-daugherty.test", + "display_name": "hauck.example", "groups": [], "tags": [ { - "key": "alarm", - "value": "neural", - "namespace": "bypassing" + "key": "transmitter", + "value": "bluetooth", + "namespace": "connecting" }, { - "key": "protocol", - "value": "optical", - "namespace": "navigating" + "key": "alarm", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "bandwidth", - "value": "neural", - "namespace": "calculating" + "key": "circuit", + "value": "optical", + "namespace": "connecting" }, { - "key": "port", - "value": "cross-platform", - "namespace": "synthesizing" + "key": "sensor", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "alarm", - "value": "cross-platform", - "namespace": "copying" + "key": "transmitter", + "value": "wireless", + "namespace": "transmitting" } ], "os_major_version": 8, "os_minor_version": 0, "compliant": false, - "system_id": "6c8b2c95-7f4c-44d5-b9eb-f9ae35be31ef", - "security_guide_version": "100.105.26" + "system_id": "8cd07330-0996-464b-a4a7-8e8cea4687bf", + "security_guide_version": "100.106.43" } }, "summary": "", @@ -14630,7 +14615,7 @@ "Description of an error when requesting a non-existing Test Result": { "value": { "errors": [ - "V2::TestResult not found with ID 2d687b5d-8b26-4fda-b591-78b2fbdce42c" + "V2::TestResult not found with ID 7b042309-5bb3-47d9-95c6-f34edfb46e7f" ] }, "summary": "", @@ -14730,93 +14715,93 @@ "value": { "data": [ { - "id": "00dcee67-dc5f-4a89-80fa-9484a9570d0b", - "ref_id": "foo_value_ddffe920-0bf9-4015-a669-eaf9fe4fe133", - "title": "Non sit et non.", - "description": "Voluptatibus quae sed. Quas saepe assumenda. Illo soluta aut.", + "id": "03b819b5-bd97-4e22-aac0-031e1f2a8b00", + "ref_id": "foo_value_38c592fd-46ac-4af1-9344-f3994e73019d", + "title": "Ut nisi magnam alias.", + "description": "Harum aut illo. Qui eaque aliquam. Repellat vitae nihil.", "value_type": "number", - "default_value": "0.8066346450683531", + "default_value": "0.4217047037217496", "type": "value_definition" }, { - "id": "07086c90-b265-4828-8070-061b38e01710", - "ref_id": "foo_value_3ac0d790-ffbd-4767-94d3-b8370d8b3332", - "title": "Quaerat ipsa ipsum et.", - "description": "Vero nobis minus. Architecto sunt nihil. Accusantium in quis.", + "id": "1245a2dd-73c7-4a63-85ea-a3edde1dbc0a", + "ref_id": "foo_value_afdd0b52-e246-4d98-b1aa-a805a58c85c1", + "title": "Est et saepe molestias.", + "description": "Suscipit sit labore. Quidem est quia. Laudantium quia suscipit.", "value_type": "number", - "default_value": "0.7760700707354685", + "default_value": "0.4307534434615915", "type": "value_definition" }, { - "id": "1f81013f-2f6e-49fb-8c4a-948e9ce92b23", - "ref_id": "foo_value_15d82f37-028e-4cc3-98f2-d475d15133e0", - "title": "Cum id sint aliquid.", - "description": "Quidem harum aspernatur. Quasi in et. Temporibus consectetur quam.", + "id": "1cf8ddee-7105-4d90-bff0-ee0b6b54928f", + "ref_id": "foo_value_14713486-28e4-489f-b9df-df43be56c5ad", + "title": "Sint praesentium aspernatur aut.", + "description": "Doloremque aspernatur unde. Distinctio iste voluptatem. Harum sed exercitationem.", "value_type": "number", - "default_value": "0.7102927233995171", + "default_value": "0.7181928873573532", "type": "value_definition" }, { - "id": "22fca19d-54f7-4ccf-a920-09af7de70b0b", - "ref_id": "foo_value_f7860dcf-1991-47a7-99a9-ad8550ae2214", - "title": "Repellendus laudantium aut labore.", - "description": "Quae sunt aut. Ducimus soluta sunt. Aut soluta sit.", + "id": "200a694a-5034-4688-aadb-3ee6b4e7e902", + "ref_id": "foo_value_fa949663-1274-4126-aee7-6f48247f79c6", + "title": "Hic veniam dignissimos temporibus.", + "description": "Cum culpa dignissimos. Quia porro vel. Est vel voluptatem.", "value_type": "number", - "default_value": "0.31250998394049123", + "default_value": "0.3716595855849416", "type": "value_definition" }, { - "id": "2eae1b3b-e626-4a63-ab9f-1aa990c968ef", - "ref_id": "foo_value_8c91cd8a-c474-446f-9857-663ebf6c63ce", - "title": "Molestiae iure reiciendis hic.", - "description": "Repellat odio cupiditate. Fugiat repellat eveniet. Magni molestiae sunt.", + "id": "2489a32d-207a-47ec-82bd-973c4ccf48e2", + "ref_id": "foo_value_f61fc117-6621-4f38-b73c-8734b5973f5b", + "title": "Voluptatem eos qui sunt.", + "description": "Iure placeat et. Minima culpa officiis. Laborum deserunt repudiandae.", "value_type": "number", - "default_value": "0.2166275366513042", + "default_value": "0.46759348752564567", "type": "value_definition" }, { - "id": "33b079f9-98ea-4b36-87e0-f4722ce3c38b", - "ref_id": "foo_value_5352ed37-92cf-4bf3-bb22-b72cafd3de01", - "title": "Eius magnam unde quo.", - "description": "Impedit et animi. Incidunt debitis quia. Maxime aut dolor.", + "id": "2c51eedd-9e12-4ccf-98aa-2f78aa7e8ea1", + "ref_id": "foo_value_79638b00-2e6b-40dd-8145-ee2eeedbe9a9", + "title": "Eos labore nisi autem.", + "description": "Et voluptatum sint. Illo molestiae alias. Non quo aspernatur.", "value_type": "number", - "default_value": "0.17866808353166097", + "default_value": "0.5274997635328362", "type": "value_definition" }, { - "id": "35248a15-3291-4004-9464-870428f14beb", - "ref_id": "foo_value_adb303d5-9a18-4c3b-9a54-85a067b8b999", - "title": "Est possimus quo fugiat.", - "description": "Id a minus. Aspernatur mollitia ipsum. Modi est eius.", + "id": "2e3619dc-0c8c-46ee-a68b-224e18f0e1f7", + "ref_id": "foo_value_1d821f30-3c72-4cd3-b6f1-911777cf0632", + "title": "Sunt quia sequi eligendi.", + "description": "Doloribus reiciendis ad. Nam pariatur id. Veritatis necessitatibus odit.", "value_type": "number", - "default_value": "0.5553626791099139", + "default_value": "0.7915463709340297", "type": "value_definition" }, { - "id": "362317a7-86c1-4345-a7b6-fe35dfc84668", - "ref_id": "foo_value_36429734-9f64-4eea-b92d-53d489cf1daa", - "title": "Corporis est dolores praesentium.", - "description": "Hic blanditiis quod. Soluta deserunt et. Ea atque culpa.", + "id": "2efa105b-3bc6-4ea6-bdde-15fd7b9d1bf2", + "ref_id": "foo_value_c7800c92-fd7e-4e29-abf1-a96ba9a9be2c", + "title": "Modi repudiandae at voluptatum.", + "description": "Eius et officia. Sunt architecto voluptatem. Facere nihil doloribus.", "value_type": "number", - "default_value": "0.7306755378256738", + "default_value": "0.5594431696914046", "type": "value_definition" }, { - "id": "453898f1-5580-493d-a1a6-7935fceeb83f", - "ref_id": "foo_value_305726a6-431b-45fb-9223-d1bee7af417f", - "title": "Assumenda accusantium ullam possimus.", - "description": "Natus animi minus. Laudantium voluptas quisquam. Et commodi odit.", + "id": "317ea63e-f5f9-4f96-a9a2-d655389b8c62", + "ref_id": "foo_value_aa40a413-a399-4bf4-8e49-324e3e62f8db", + "title": "Vero et consequatur id.", + "description": "Tenetur ipsam consequuntur. Libero commodi quia. Est sunt non.", "value_type": "number", - "default_value": "0.20672152142419375", + "default_value": "0.9700832663151938", "type": "value_definition" }, { - "id": "729e926d-f9e7-4cec-a4ee-f817da2cf044", - "ref_id": "foo_value_ccdf485a-d2bb-4423-887a-556d8b25a313", - "title": "Quis accusantium numquam eum.", - "description": "Autem totam exercitationem. Est provident ullam. Amet dicta quibusdam.", + "id": "3dfcfbd6-6b44-4724-863b-22230fd1a117", + "ref_id": "foo_value_e3aefba1-c570-4bdc-b5a4-970c759fa684", + "title": "Omnis animi sit a.", + "description": "Voluptas dolorem dolor. Eum quam quis. Atque eius excepturi.", "value_type": "number", - "default_value": "0.7897050331420629", + "default_value": "0.5290374657861493", "type": "value_definition" } ], @@ -14826,9 +14811,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/0ec63628-da85-4dae-8725-e927d06e0434/value_definitions?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/0ec63628-da85-4dae-8725-e927d06e0434/value_definitions?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/0ec63628-da85-4dae-8725-e927d06e0434/value_definitions?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/7af34aeb-fd8a-4a8e-8e72-3353911242af/value_definitions?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/7af34aeb-fd8a-4a8e-8e72-3353911242af/value_definitions?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/7af34aeb-fd8a-4a8e-8e72-3353911242af/value_definitions?limit=10&offset=10" } }, "summary": "", @@ -14838,93 +14823,93 @@ "value": { "data": [ { - "id": "90f23488-bc38-4cce-b1e0-f6f729ca9219", - "ref_id": "foo_value_ec9980a9-7833-4af7-86b8-1b5e39f809c6", - "title": "Accusamus ipsam laborum voluptas.", - "description": "Blanditiis enim velit. Exercitationem provident corporis. Ut nostrum sunt.", + "id": "47302046-83c6-4a48-befb-e200725a39c7", + "ref_id": "foo_value_598c07e1-103e-4e8f-8bb9-dac3a8059494", + "title": "Aperiam reiciendis voluptatum quae.", + "description": "Minus labore dignissimos. Quia provident quos. Aut assumenda aut.", "value_type": "number", - "default_value": "0.3280336402341243", + "default_value": "0.5025093105043862", "type": "value_definition" }, { - "id": "b6fba854-44d0-472c-a498-392cf64fd78f", - "ref_id": "foo_value_20aa056e-3998-4490-af59-c00e454b64d8", - "title": "Atque possimus soluta qui.", - "description": "Est eius dolores. Et consequuntur dolor. Vitae sed porro.", + "id": "587760d4-6cc7-4be4-a1b0-f638d745e671", + "ref_id": "foo_value_079603e4-471a-4db0-b6c8-0edb45d34aea", + "title": "Consectetur tenetur dolor totam.", + "description": "Sunt architecto placeat. Aut ut dolorum. Accusantium beatae sint.", "value_type": "number", - "default_value": "0.59905603034573", + "default_value": "0.29654532138687895", "type": "value_definition" }, { - "id": "90fd3927-df7d-4bee-a139-9f617c4a944a", - "ref_id": "foo_value_c08cb7da-6f33-4fb7-aa87-67065ec8c585", - "title": "Blanditiis nemo dolores sunt.", - "description": "Architecto magni id. Mollitia sit esse. Recusandae et quibusdam.", + "id": "760166eb-9d31-4676-96c2-a6c7fa337194", + "ref_id": "foo_value_7b6b6827-d5cf-4377-ab3c-a55d0ac49a1f", + "title": "Consequatur quae perferendis quo.", + "description": "Veritatis consequuntur itaque. Incidunt non nemo. Delectus consequuntur nemo.", "value_type": "number", - "default_value": "0.9016537492606826", + "default_value": "0.9413940875454356", "type": "value_definition" }, { - "id": "c6a39e51-56fb-48b7-9c5b-d35c4b7e11e7", - "ref_id": "foo_value_db215058-3032-4d38-9036-be2b5056a94a", - "title": "Dolor numquam voluptas sunt.", - "description": "Atque rerum laborum. Beatae libero sint. Deleniti dicta id.", + "id": "12cbd7a1-70e4-473d-8c12-b1322442cbd2", + "ref_id": "foo_value_a1d92d63-abe5-4c83-8949-325a39732566", + "title": "Distinctio voluptates ullam sint.", + "description": "Officia fugiat qui. Maxime repudiandae voluptas. Voluptatem id sed.", "value_type": "number", - "default_value": "0.5340371124884712", + "default_value": "0.9484317086029805", "type": "value_definition" }, { - "id": "1cfa3f62-a14d-4d4c-8fab-2b3f3b5bc1d1", - "ref_id": "foo_value_171eaec7-c156-482b-870d-b0dc42c9ea0e", - "title": "Eaque sed sit accusantium.", - "description": "Aut quibusdam doloremque. Voluptatem totam suscipit. Voluptatem molestiae qui.", + "id": "b94187c5-ed08-4c2d-94de-d66ad1fc6562", + "ref_id": "foo_value_de96fa5c-9e7d-4166-9d82-b046a5bb9472", + "title": "Dolorem aspernatur ut saepe.", + "description": "Reprehenderit vel animi. Quis deserunt asperiores. Earum labore vitae.", "value_type": "number", - "default_value": "0.6669594995737013", + "default_value": "0.37275159164894967", "type": "value_definition" }, { - "id": "185655f2-5163-4eab-92ce-1445d0126b38", - "ref_id": "foo_value_9e7dff51-6135-4156-869e-1cb00de203fb", - "title": "Est fugit eum dolorem.", - "description": "Eum minus cumque. Aut dolores rerum. Ut eos praesentium.", + "id": "361688e6-12ca-4157-a0c6-3526c0104cb1", + "ref_id": "foo_value_0b59a83a-2e32-4bfe-8beb-34c4b389ba92", + "title": "Dolores possimus qui officia.", + "description": "Qui minus est. Sit deserunt dolorem. Quasi aliquid exercitationem.", "value_type": "number", - "default_value": "0.6409179477750478", + "default_value": "0.8234611534805486", "type": "value_definition" }, { - "id": "16f91c33-79cd-4bdd-bd10-ff9c5c1a4457", - "ref_id": "foo_value_701e0a67-2244-4bf8-9037-a65e6d09bd64", - "title": "Et beatae ut commodi.", - "description": "Voluptates harum rerum. Eius ut debitis. Est iste itaque.", + "id": "bdf835e1-7e6c-4ba0-8b30-6416cf570ae5", + "ref_id": "foo_value_1b8d46c3-0f4e-4342-bf6d-204052cdbe2d", + "title": "Ea harum quasi nulla.", + "description": "Praesentium accusamus eius. A eum modi. Ut dolores tenetur.", "value_type": "number", - "default_value": "0.08956285813731535", + "default_value": "0.5600989029097151", "type": "value_definition" }, { - "id": "e81c2aec-a051-4462-8d39-b230d8ec66b4", - "ref_id": "foo_value_c4c49c48-a6bf-4be1-8757-c0a16de4f589", - "title": "Et mollitia quasi sunt.", - "description": "Rerum voluptas asperiores. Minus voluptatem harum. Atque occaecati modi.", + "id": "efd79fab-b95c-4cc9-9773-45c2992e527e", + "ref_id": "foo_value_666b9c6f-11ef-49e6-929d-1eca37f14ffd", + "title": "Enim error quaerat nemo.", + "description": "Ea sit sit. Dolorum similique impedit. Magni nobis qui.", "value_type": "number", - "default_value": "0.9362811160995655", + "default_value": "0.6247861226696854", "type": "value_definition" }, { - "id": "1048643c-3fad-4849-8bf5-3a3c9c72fce3", - "ref_id": "foo_value_5c286b77-e181-4abb-8351-c93ede7656a4", - "title": "Eum veniam quasi voluptatem.", - "description": "Vero ipsam tempore. Voluptas maiores et. Eaque inventore et.", + "id": "97f16652-6168-4e60-a2a0-3eca0cbfc3d4", + "ref_id": "foo_value_2cd3b3f9-5c19-45ac-a8d3-e5f8fe8bcf23", + "title": "Exercitationem quia rem nostrum.", + "description": "Hic eos ut. Ut culpa explicabo. Unde ut occaecati.", "value_type": "number", - "default_value": "0.8803358120116067", + "default_value": "0.8754260045938714", "type": "value_definition" }, { - "id": "ba2288e8-da9f-4750-9cf5-932b3f7ab879", - "ref_id": "foo_value_d6d40f93-5ec0-41f1-b293-28ac149fd1b7", - "title": "Facere ut et quia.", - "description": "Voluptatem ipsam odio. Aliquid fuga est. Nulla dolorum aut.", + "id": "023787b0-7978-46bc-ad0f-63ad044a13bd", + "ref_id": "foo_value_8b7e51f9-f705-4ba9-a84a-2583a4899c11", + "title": "Fugiat sit cupiditate sapiente.", + "description": "Occaecati et dolorum. In et enim. Deserunt veritatis laborum.", "value_type": "number", - "default_value": "0.9970470647470687", + "default_value": "0.05428187273602092", "type": "value_definition" } ], @@ -14935,36 +14920,36 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/b25f5330-7369-4986-afaf-c48515adb0f1/value_definitions?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/b25f5330-7369-4986-afaf-c48515adb0f1/value_definitions?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/b25f5330-7369-4986-afaf-c48515adb0f1/value_definitions?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/4b3d89c2-b76a-4f69-b417-0b13ea7be492/value_definitions?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/4b3d89c2-b76a-4f69-b417-0b13ea7be492/value_definitions?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/4b3d89c2-b76a-4f69-b417-0b13ea7be492/value_definitions?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Value Definitions filtered by '(title=Soluta odio incidunt et.)'": { + "List of Value Definitions filtered by '(title=Quidem quasi voluptatem sunt.)'": { "value": { "data": [ { - "id": "03ff7796-aa13-4687-85de-20de72908d70", - "ref_id": "foo_value_b8e3c945-f57f-4bec-9887-aebe2769a583", - "title": "Soluta odio incidunt et.", - "description": "Ut qui laboriosam. Vero magnam quia. Aut aut placeat.", + "id": "00708709-e7b6-4fb3-8b66-d30fa79da7d3", + "ref_id": "foo_value_0f3ce175-18ba-49ee-99de-2068a90f434e", + "title": "Quidem quasi voluptatem sunt.", + "description": "Laudantium inventore nihil. Et dolores tenetur. A qui reprehenderit.", "value_type": "number", - "default_value": "0.8879805172760331", + "default_value": "0.8984275793000561", "type": "value_definition" } ], "meta": { "total": 1, - "filter": "(title=\"Soluta odio incidunt et.\")", + "filter": "(title=\"Quidem quasi voluptatem sunt.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/a9e33ea1-9858-403c-97e1-9ac58bb1ba68/value_definitions?filter=%28title%3D%22Soluta+odio+incidunt+et.%22%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/a9e33ea1-9858-403c-97e1-9ac58bb1ba68/value_definitions?filter=%28title%3D%22Soluta+odio+incidunt+et.%22%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/3f8dd59b-9840-4094-aa08-30d7770e31a4/value_definitions?filter=%28title%3D%22Quidem+quasi+voluptatem+sunt.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/3f8dd59b-9840-4094-aa08-30d7770e31a4/value_definitions?filter=%28title%3D%22Quidem+quasi+voluptatem+sunt.%22%29&limit=10&offset=0" } }, "summary": "", @@ -15071,12 +15056,12 @@ "Returns a Value Definition": { "value": { "data": { - "id": "18bc3e21-1a1c-4f07-a6b9-c523af250143", - "ref_id": "foo_value_37f22ff8-0ace-424c-878e-c274a0caf90d", - "title": "Autem quaerat maiores voluptatem.", - "description": "Non voluptate sint. Optio ut quia. Similique aut ut.", + "id": "d22a5730-637e-4c34-b9d5-c1278f27b8fe", + "ref_id": "foo_value_30e1e746-92b5-4ea2-b1b6-639bc016df70", + "title": "Atque odio minima consequatur.", + "description": "Dicta autem temporibus. Sint modi qui. Aperiam illo rerum.", "value_type": "number", - "default_value": "0.3179495378661934", + "default_value": "0.3567836267453861", "type": "value_definition" } }, @@ -15108,7 +15093,7 @@ "Description of an error when requesting a non-existing Value Definition": { "value": { "errors": [ - "V2::ValueDefinition not found with ID fd0dac6b-c235-44a3-be74-61a3292d55de" + "V2::ValueDefinition not found with ID 693353e2-e64e-4658-9448-cf20e5576eb2" ] }, "summary": "", @@ -16156,9 +16141,9 @@ "description": "Pair of keys and values for Value Definition customizations", "examples": [ { - "9867e741-c240-4508-bbff-b0814e737f40": "foo", - "8f7cefa6-63f0-4200-b5fd-3779419cf750": "123", - "e58a0c7c-4226-4e83-abeb-14e237071aa3": "false" + "8684be03-dca4-4714-a671-1db63db45108": "foo", + "ae945cc9-2af2-4f35-bc5c-675508c7b662": "123", + "16512988-4d0b-49b1-ba76-fccca53f91da": "false" } ] }