From 816ff3a7f051ce0317ce96a11c463cadbbb15490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Hal=C3=A1sz?= Date: Tue, 23 Apr 2024 14:32:12 +0200 Subject: [PATCH] feat(APIv2): RHINENG-8970 implemented missing fields on rules --- app/serializers/v2/rule_serializer.rb | 3 +- db/functions/v2_rules_delete_v01.sql | 9 + db/functions/v2_rules_insert_v01.sql | 44 + db/functions/v2_rules_update_v01.sql | 26 + ...0423093616_update_v2_rules_to_version_2.rb | 6 + ...3105337_create_function_v2_rules_insert.rb | 5 + ...3110153_create_function_v2_rules_update.rb | 5 + ...3110737_create_function_v2_rules_delete.rb | 5 + ...23111001_create_trigger_v2_rules_insert.rb | 5 + ...23111009_create_trigger_v2_rules_update.rb | 5 + ...23111013_create_trigger_v2_rules_delete.rb | 5 + db/schema.rb | 150 +- db/triggers/v2_rules_delete_v01.sql | 2 + db/triggers/v2_rules_insert_v01.sql | 2 + db/triggers/v2_rules_update_v01.sql | 2 + db/views/v2_rules_v02.sql | 18 + spec/controllers/v2/rules_controller_spec.rb | 10 +- spec/factories/rule.rb | 4 + swagger/v2/openapi.json | 6152 ++++++++++------- 19 files changed, 3826 insertions(+), 2632 deletions(-) create mode 100644 db/functions/v2_rules_delete_v01.sql create mode 100644 db/functions/v2_rules_insert_v01.sql create mode 100644 db/functions/v2_rules_update_v01.sql create mode 100644 db/migrate/20240423093616_update_v2_rules_to_version_2.rb create mode 100644 db/migrate/20240423105337_create_function_v2_rules_insert.rb create mode 100644 db/migrate/20240423110153_create_function_v2_rules_update.rb create mode 100644 db/migrate/20240423110737_create_function_v2_rules_delete.rb create mode 100644 db/migrate/20240423111001_create_trigger_v2_rules_insert.rb create mode 100644 db/migrate/20240423111009_create_trigger_v2_rules_update.rb create mode 100644 db/migrate/20240423111013_create_trigger_v2_rules_delete.rb create mode 100644 db/triggers/v2_rules_delete_v01.sql create mode 100644 db/triggers/v2_rules_insert_v01.sql create mode 100644 db/triggers/v2_rules_update_v01.sql create mode 100644 db/views/v2_rules_v02.sql diff --git a/app/serializers/v2/rule_serializer.rb b/app/serializers/v2/rule_serializer.rb index 4deb4d238..25d0286c4 100644 --- a/app/serializers/v2/rule_serializer.rb +++ b/app/serializers/v2/rule_serializer.rb @@ -3,7 +3,8 @@ module V2 # JSON serialization for an OpenSCAP Rule class RuleSerializer < V2::ApplicationSerializer - attributes :ref_id, :title, :rationale, :description, :severity, :precedence + attributes :ref_id, :title, :rationale, :description, :severity, + :precedence, :identifier, :references, :value_checks derived_attribute :remediation_issue_id, :remediation_available, profiles: [:ref_id], security_guide: [:ref_id] end diff --git a/db/functions/v2_rules_delete_v01.sql b/db/functions/v2_rules_delete_v01.sql new file mode 100644 index 000000000..446fad825 --- /dev/null +++ b/db/functions/v2_rules_delete_v01.sql @@ -0,0 +1,9 @@ +CREATE OR REPLACE FUNCTION v2_rules_delete() RETURNS trigger LANGUAGE plpgsql AS +$func$ +BEGIN + -- Delete the rule reference record separately + DELETE FROM "rule_references_containers" WHERE "rule_id" = OLD."id"; + DELETE FROM "rules" WHERE "id" = OLD."id"; +RETURN OLD; +END +$func$; diff --git a/db/functions/v2_rules_insert_v01.sql b/db/functions/v2_rules_insert_v01.sql new file mode 100644 index 000000000..7f4f0ec64 --- /dev/null +++ b/db/functions/v2_rules_insert_v01.sql @@ -0,0 +1,44 @@ +CREATE OR REPLACE FUNCTION v2_rules_insert() RETURNS trigger LANGUAGE plpgsql AS +$func$ +DECLARE result_id uuid; +BEGIN + INSERT INTO "rules" ( + "ref_id", + "title", + "severity", + "description", + "rationale", + "created_at", + "updated_at", + "remediation_available", + "benchmark_id", + "upstream", + "precedence", + "rule_group_id", + "value_checks", + "identifier" + ) VALUES ( + NEW."ref_id", + NEW."title", + NEW."severity", + NEW."description", + NEW."rationale", + NEW."created_at", + NEW."updated_at", + NEW."remediation_available", + NEW."security_guide_id", + NEW."upstream", + NEW."precedence", + NEW."rule_group_id", + NEW."value_checks", + NEW."identifier" + ) RETURNING "id" INTO "result_id"; + + -- Insert a new rule reference record separately + INSERT INTO "rule_references_containers" ("rule_references", "rule_id", "created_at", "updated_at") + SELECT NEW."references", "result_id", NOW(), NOW(); + + NEW."id" := "result_id"; + RETURN NEW; +END +$func$; diff --git a/db/functions/v2_rules_update_v01.sql b/db/functions/v2_rules_update_v01.sql new file mode 100644 index 000000000..499e7b4bf --- /dev/null +++ b/db/functions/v2_rules_update_v01.sql @@ -0,0 +1,26 @@ +CREATE OR REPLACE FUNCTION v2_rules_update() RETURNS trigger LANGUAGE plpgsql AS +$func$ +BEGIN + -- Update the rule reference record separately + UPDATE "rule_references_container" SET "rule_references" = NEW."references" WHERE "rule_id" = OLD."id"; + + UPDATE "rules" SET + "ref_id" = NEW."ref_id", + "title" = NEW."title", + "severity" = NEW."severity", + "description" = NEW."description", + "rationale" = NEW."rationale", + "created_at" = NEW."created_at", + "updated_at" = NEW."updated_at", + "remediation_available" = NEW."remediation_available", + "benchmark_id" = NEW."security_guide_id", + "upstream" = NEW."upstream", + "precedence" = NEW."precedence", + "rule_group_id" = NEW."rule_group_id", + "value_checks" = NEW."value_checks", + "identifier" = NEW."identifier" + WHERE "id" = OLD."id"; + + RETURN NEW; +END +$func$; diff --git a/db/migrate/20240423093616_update_v2_rules_to_version_2.rb b/db/migrate/20240423093616_update_v2_rules_to_version_2.rb new file mode 100644 index 000000000..16404472c --- /dev/null +++ b/db/migrate/20240423093616_update_v2_rules_to_version_2.rb @@ -0,0 +1,6 @@ +class UpdateV2RulesToVersion2 < ActiveRecord::Migration[7.1] + def change + + update_view :v2_rules, version: 2, revert_to_version: 1 + end +end diff --git a/db/migrate/20240423105337_create_function_v2_rules_insert.rb b/db/migrate/20240423105337_create_function_v2_rules_insert.rb new file mode 100644 index 000000000..dff0dbaa9 --- /dev/null +++ b/db/migrate/20240423105337_create_function_v2_rules_insert.rb @@ -0,0 +1,5 @@ +class CreateFunctionV2RulesInsert < ActiveRecord::Migration[7.1] + def change + create_function :v2_rules_insert + end +end diff --git a/db/migrate/20240423110153_create_function_v2_rules_update.rb b/db/migrate/20240423110153_create_function_v2_rules_update.rb new file mode 100644 index 000000000..8ab51dfd1 --- /dev/null +++ b/db/migrate/20240423110153_create_function_v2_rules_update.rb @@ -0,0 +1,5 @@ +class CreateFunctionV2RulesUpdate < ActiveRecord::Migration[7.1] + def change + create_function :v2_rules_update + end +end diff --git a/db/migrate/20240423110737_create_function_v2_rules_delete.rb b/db/migrate/20240423110737_create_function_v2_rules_delete.rb new file mode 100644 index 000000000..f31554f53 --- /dev/null +++ b/db/migrate/20240423110737_create_function_v2_rules_delete.rb @@ -0,0 +1,5 @@ +class CreateFunctionV2RulesDelete < ActiveRecord::Migration[7.1] + def change + create_function :v2_rules_delete + end +end diff --git a/db/migrate/20240423111001_create_trigger_v2_rules_insert.rb b/db/migrate/20240423111001_create_trigger_v2_rules_insert.rb new file mode 100644 index 000000000..65c840070 --- /dev/null +++ b/db/migrate/20240423111001_create_trigger_v2_rules_insert.rb @@ -0,0 +1,5 @@ +class CreateTriggerV2RulesInsert < ActiveRecord::Migration[7.1] + def change + create_trigger :v2_rules_insert, on: :v2_rules + end +end diff --git a/db/migrate/20240423111009_create_trigger_v2_rules_update.rb b/db/migrate/20240423111009_create_trigger_v2_rules_update.rb new file mode 100644 index 000000000..b6a6e56a1 --- /dev/null +++ b/db/migrate/20240423111009_create_trigger_v2_rules_update.rb @@ -0,0 +1,5 @@ +class CreateTriggerV2RulesUpdate < ActiveRecord::Migration[7.1] + def change + create_trigger :v2_rules_update, on: :v2_rules + end +end diff --git a/db/migrate/20240423111013_create_trigger_v2_rules_delete.rb b/db/migrate/20240423111013_create_trigger_v2_rules_delete.rb new file mode 100644 index 000000000..867cee2d1 --- /dev/null +++ b/db/migrate/20240423111013_create_trigger_v2_rules_delete.rb @@ -0,0 +1,5 @@ +class CreateTriggerV2RulesDelete < ActiveRecord::Migration[7.1] + def change + create_trigger :v2_rules_delete, on: :v2_rules + end +end diff --git a/db/schema.rb b/db/schema.rb index 835309d42..31755dcf5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2024_04_09_085523) do +ActiveRecord::Schema[7.1].define(version: 2024_04_23_111013) do create_schema "inventory" # These are extensions that must be enabled in order to support this database @@ -290,26 +290,6 @@ value_definitions.benchmark_id AS security_guide_id FROM value_definitions; SQL - create_view "v2_rules", sql_definition: <<-SQL - SELECT rules.id, - rules.ref_id, - rules.supported, - rules.title, - rules.severity, - rules.description, - rules.rationale, - rules.created_at, - rules.updated_at, - rules.slug, - rules.remediation_available, - rules.benchmark_id AS security_guide_id, - rules.upstream, - rules.precedence, - rules.rule_group_id, - rules.value_checks, - rules.identifier - FROM rules; - SQL create_view "tailorings", sql_definition: <<-SQL SELECT profiles.id, profiles.policy_id, @@ -411,6 +391,26 @@ test_results.updated_at FROM test_results; SQL + create_view "v2_rules", sql_definition: <<-SQL + SELECT rules.id, + rules.ref_id, + rules.title, + rules.severity, + rules.description, + rules.rationale, + rules.created_at, + rules.updated_at, + rules.remediation_available, + rules.benchmark_id AS security_guide_id, + rules.upstream, + rules.precedence, + rules.rule_group_id, + rules.value_checks, + rules.identifier, + rule_references_containers.rule_references AS "references" + FROM (rules + LEFT JOIN rule_references_containers ON ((rule_references_containers.rule_id = rules.id))); + SQL create_function :v2_policies_insert, sql_definition: <<-'SQL' CREATE OR REPLACE FUNCTION public.v2_policies_insert() RETURNS trigger @@ -540,18 +540,118 @@ END $function$ SQL + create_function :v2_rules_insert, sql_definition: <<-'SQL' + CREATE OR REPLACE FUNCTION public.v2_rules_insert() + RETURNS trigger + LANGUAGE plpgsql + AS $function$ + DECLARE result_id uuid; + BEGIN + INSERT INTO "rules" ( + "ref_id", + "title", + "severity", + "description", + "rationale", + "created_at", + "updated_at", + "remediation_available", + "benchmark_id", + "upstream", + "precedence", + "rule_group_id", + "value_checks", + "identifier" + ) VALUES ( + NEW."ref_id", + NEW."title", + NEW."severity", + NEW."description", + NEW."rationale", + NEW."created_at", + NEW."updated_at", + NEW."remediation_available", + NEW."security_guide_id", + NEW."upstream", + NEW."precedence", + NEW."rule_group_id", + NEW."value_checks", + NEW."identifier" + ) RETURNING "id" INTO "result_id"; + + -- Insert a new rule reference record separately + INSERT INTO "rule_references_containers" ("rule_references", "rule_id", "created_at", "updated_at") + SELECT NEW."references", "result_id", NOW(), NOW(); + + NEW."id" := "result_id"; + RETURN NEW; + END + $function$ + SQL + create_function :v2_rules_update, sql_definition: <<-'SQL' + CREATE OR REPLACE FUNCTION public.v2_rules_update() + RETURNS trigger + LANGUAGE plpgsql + AS $function$ + BEGIN + -- Update the rule reference record separately + UPDATE "rule_references_container" SET "rule_references" = NEW."references" WHERE "rule_id" = OLD."id"; + + UPDATE "rules" SET + "ref_id" = NEW."ref_id", + "title" = NEW."title", + "severity" = NEW."severity", + "description" = NEW."description", + "rationale" = NEW."rationale", + "created_at" = NEW."created_at", + "updated_at" = NEW."updated_at", + "remediation_available" = NEW."remediation_available", + "benchmark_id" = NEW."security_guide_id", + "upstream" = NEW."upstream", + "precedence" = NEW."precedence", + "rule_group_id" = NEW."rule_group_id", + "value_checks" = NEW."value_checks", + "identifier" = NEW."identifier" + WHERE "id" = OLD."id"; + + RETURN NEW; + END + $function$ + SQL + create_function :v2_rules_delete, sql_definition: <<-'SQL' + CREATE OR REPLACE FUNCTION public.v2_rules_delete() + RETURNS trigger + LANGUAGE plpgsql + AS $function$ + BEGIN + -- Delete the rule reference record separately + DELETE FROM "rule_references_containers" WHERE "rule_id" = OLD."id"; + DELETE FROM "rules" WHERE "id" = OLD."id"; + RETURN OLD; + END + $function$ + SQL create_trigger :tailorings_insert, sql_definition: <<-SQL CREATE TRIGGER tailorings_insert INSTEAD OF INSERT ON public.tailorings FOR EACH ROW EXECUTE FUNCTION tailorings_insert() SQL - create_trigger :v2_policies_update, sql_definition: <<-SQL - CREATE TRIGGER v2_policies_update INSTEAD OF UPDATE ON public.v2_policies FOR EACH ROW EXECUTE FUNCTION v2_policies_update() + create_trigger :v2_policies_insert, sql_definition: <<-SQL + CREATE TRIGGER v2_policies_insert INSTEAD OF INSERT ON public.v2_policies FOR EACH ROW EXECUTE FUNCTION v2_policies_insert() SQL create_trigger :v2_policies_delete, sql_definition: <<-SQL CREATE TRIGGER v2_policies_delete INSTEAD OF DELETE ON public.v2_policies FOR EACH ROW EXECUTE FUNCTION v2_policies_delete() SQL - create_trigger :v2_policies_insert, sql_definition: <<-SQL - CREATE TRIGGER v2_policies_insert INSTEAD OF INSERT ON public.v2_policies FOR EACH ROW EXECUTE FUNCTION v2_policies_insert() + create_trigger :v2_policies_update, sql_definition: <<-SQL + CREATE TRIGGER v2_policies_update INSTEAD OF UPDATE ON public.v2_policies FOR EACH ROW EXECUTE FUNCTION v2_policies_update() + SQL + create_trigger :v2_rules_update, sql_definition: <<-SQL + CREATE TRIGGER v2_rules_update INSTEAD OF UPDATE ON public.v2_rules FOR EACH ROW EXECUTE FUNCTION v2_rules_update() + SQL + create_trigger :v2_rules_insert, sql_definition: <<-SQL + CREATE TRIGGER v2_rules_insert INSTEAD OF INSERT ON public.v2_rules FOR EACH ROW EXECUTE FUNCTION v2_rules_insert() + SQL + create_trigger :v2_rules_delete, sql_definition: <<-SQL + CREATE TRIGGER v2_rules_delete INSTEAD OF DELETE ON public.v2_rules FOR EACH ROW EXECUTE FUNCTION v2_rules_delete() SQL end diff --git a/db/triggers/v2_rules_delete_v01.sql b/db/triggers/v2_rules_delete_v01.sql new file mode 100644 index 000000000..160dd2a09 --- /dev/null +++ b/db/triggers/v2_rules_delete_v01.sql @@ -0,0 +1,2 @@ +CREATE TRIGGER "v2_rules_delete" INSTEAD OF DELETE ON "v2_rules" +FOR EACH ROW EXECUTE FUNCTION v2_rules_delete(); diff --git a/db/triggers/v2_rules_insert_v01.sql b/db/triggers/v2_rules_insert_v01.sql new file mode 100644 index 000000000..3730a22be --- /dev/null +++ b/db/triggers/v2_rules_insert_v01.sql @@ -0,0 +1,2 @@ +CREATE TRIGGER "v2_rules_insert" INSTEAD OF INSERT ON "v2_rules" +FOR EACH ROW EXECUTE FUNCTION v2_rules_insert(); diff --git a/db/triggers/v2_rules_update_v01.sql b/db/triggers/v2_rules_update_v01.sql new file mode 100644 index 000000000..9637dbecb --- /dev/null +++ b/db/triggers/v2_rules_update_v01.sql @@ -0,0 +1,2 @@ +CREATE TRIGGER "v2_rules_update" INSTEAD OF UPDATE ON "v2_rules" +FOR EACH ROW EXECUTE FUNCTION v2_rules_update(); diff --git a/db/views/v2_rules_v02.sql b/db/views/v2_rules_v02.sql new file mode 100644 index 000000000..27b781138 --- /dev/null +++ b/db/views/v2_rules_v02.sql @@ -0,0 +1,18 @@ +SELECT + "rules"."id", + "rules"."ref_id", + "rules"."title", + "rules"."severity", + "rules"."description", + "rules"."rationale", + "rules"."created_at", + "rules"."updated_at", + "rules"."remediation_available", + "rules"."benchmark_id" AS "security_guide_id", + "rules"."upstream", + "rules"."precedence", + "rules"."rule_group_id", + "rules"."value_checks", + "rules"."identifier", + "rule_references_containers"."rule_references" AS "references" +FROM "rules" LEFT OUTER JOIN "rule_references_containers" ON "rule_references_containers"."rule_id" = "rules"."id"; diff --git a/spec/controllers/v2/rules_controller_spec.rb b/spec/controllers/v2/rules_controller_spec.rb index 354affc73..c9bf5f219 100644 --- a/spec/controllers/v2/rules_controller_spec.rb +++ b/spec/controllers/v2/rules_controller_spec.rb @@ -10,7 +10,10 @@ rationale: :rationale, description: :description, severity: :severity, - precedence: :precedence + precedence: :precedence, + references: :references, + identifier: :identifier, + value_checks: :value_checks } end @@ -63,7 +66,10 @@ description: :description, severity: :severity, remediation_issue_id: :remediation_issue_id, - precedence: :precedence + precedence: :precedence, + references: :references, + identifier: :identifier, + value_checks: :value_checks } end diff --git a/spec/factories/rule.rb b/spec/factories/rule.rb index 96b04c522..9f0e1bb16 100644 --- a/spec/factories/rule.rb +++ b/spec/factories/rule.rb @@ -8,6 +8,10 @@ description { Faker::Lorem.paragraph } severity { %w[low medium high].sample } precedence { Faker::Number.between(from: 1, to: 9999) } + identifier { { label: Faker::Fantasy::Tolkien.character, href: Faker::Internet.url } } + references { rand(0..5).times.map { { label: Faker::Fantasy::Tolkien.character, href: Faker::Internet.url } } } + remediation_available { false } + upstream { false } security_guide do if profile_id diff --git a/swagger/v2/openapi.json b/swagger/v2/openapi.json index be166f945..1689e6f4c 100644 --- a/swagger/v2/openapi.json +++ b/swagger/v2/openapi.json @@ -104,124 +104,124 @@ "value": { "data": [ { - "id": "37e01a43-8fdc-48d1-99d2-29187714df99", - "title": "Error debitis dolores necessitatibus.", - "description": "Placeat explicabo qui. Quaerat consectetur iste. Perspiciatis quas aut.", + "id": "01374c7f-7b92-4354-b30a-8cb406cf6629", + "title": "Deserunt aut quo rerum.", + "description": "Quo fugiat veritatis. Fuga explicabo accusantium. Dicta ratione rerum.", "business_objective": null, - "compliance_threshold": 15.0, + "compliance_threshold": 69.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ad ut sit voluptas.", - "ref_id": "xccdf_org.ssgproject.content_profile_bfec39779753f3af8a5a5b49cb4538f2" + "profile_title": "Voluptates quam quo pariatur.", + "ref_id": "xccdf_org.ssgproject.content_profile_0f3f2ceadf9829f275ae51293ec280d9" }, { - "id": "4273e9e1-e8f1-4324-878b-cb37e07a522a", - "title": "Et qui temporibus dignissimos.", - "description": "Qui sapiente velit. Et ipsa velit. Quod hic suscipit.", + "id": "08dff522-469e-4e5a-b30a-eabce36598c4", + "title": "Sunt aut modi exercitationem.", + "description": "Numquam quaerat repellendus. Voluptatem id fugit. Delectus officiis pariatur.", "business_objective": null, - "compliance_threshold": 20.0, + "compliance_threshold": 96.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Molestiae ut perspiciatis iure.", - "ref_id": "xccdf_org.ssgproject.content_profile_4c929f40b6d77e6a206cde48447c63de" + "profile_title": "Tenetur quae eveniet consectetur.", + "ref_id": "xccdf_org.ssgproject.content_profile_aa4e7469bd2c26302a70b1880104e11e" }, { - "id": "474108ee-83b0-4f18-b6a0-c2500812b8fc", - "title": "Ea mollitia nobis soluta.", - "description": "Blanditiis repellendus rerum. Nesciunt vitae dolorem. Enim ut quia.", + "id": "0a87d021-8ef0-4af5-ab34-c3171a31d94c", + "title": "Ullam dolores est dolorum.", + "description": "Consequatur porro dolorem. Est quod distinctio. Sed enim eum.", "business_objective": null, - "compliance_threshold": 4.0, + "compliance_threshold": 56.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Voluptatum nesciunt enim tenetur.", - "ref_id": "xccdf_org.ssgproject.content_profile_567213ab4b50a1db08326f1543635cb8" + "profile_title": "Dolores quo sed consectetur.", + "ref_id": "xccdf_org.ssgproject.content_profile_3dd4053f6170c0355f38ccc2294c5ac4" }, { - "id": "4aedbc92-eff2-4fcc-a1e4-c44324a381d5", - "title": "Nostrum laudantium necessitatibus qui.", - "description": "Blanditiis accusantium eius. Non aliquam praesentium. Earum similique consequatur.", + "id": "3648cc59-2f70-43df-9447-414dfa037029", + "title": "Placeat qui facere quam.", + "description": "Impedit quaerat ut. Quasi minus deserunt. Similique quos non.", "business_objective": null, - "compliance_threshold": 65.0, + "compliance_threshold": 55.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Non dolor necessitatibus iure.", - "ref_id": "xccdf_org.ssgproject.content_profile_8ffaeafb089a84814c8b9429d5190e9d" + "profile_title": "Quis eum deserunt explicabo.", + "ref_id": "xccdf_org.ssgproject.content_profile_c2719ff542880ac05c1137d8a7bd471c" }, { - "id": "4c335852-9456-447b-b227-e2c08eca986c", - "title": "Omnis nemo eum est.", - "description": "Doloremque et adipisci. Et placeat omnis. Consequuntur totam voluptatem.", + "id": "39103693-26e8-4fa4-9924-be7736333c17", + "title": "Nostrum fugit enim qui.", + "description": "Consequatur totam aliquam. Ad omnis ut. Aliquid aut facilis.", "business_objective": null, - "compliance_threshold": 2.0, + "compliance_threshold": 24.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Quaerat minus vero consectetur.", - "ref_id": "xccdf_org.ssgproject.content_profile_c5fed79254cce4d9d2074fcdf30f2632" + "profile_title": "Ut vero iste laudantium.", + "ref_id": "xccdf_org.ssgproject.content_profile_25301460b38b9409faa17fc035e9bb25" }, { - "id": "5e8ac36e-1156-4c0b-be61-46f8870185ef", - "title": "Aliquid at exercitationem eos.", - "description": "Odio praesentium dignissimos. Non sed et. Voluptatem dolore voluptates.", + "id": "42e6dd4a-d05d-4f92-8dd0-385f3964b8a7", + "title": "Fugiat nihil qui in.", + "description": "Quia enim ducimus. Beatae exercitationem aut. Reiciendis et necessitatibus.", "business_objective": null, - "compliance_threshold": 77.0, + "compliance_threshold": 35.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Facilis velit qui rerum.", - "ref_id": "xccdf_org.ssgproject.content_profile_14b0730dfd575148d3b759bc5da09c7d" + "profile_title": "Distinctio nisi animi fugiat.", + "ref_id": "xccdf_org.ssgproject.content_profile_28c516064bd03e7ade3d42193e1d4775" }, { - "id": "7f1b3c1c-8d40-44d6-b851-c872cc120d9a", - "title": "Ex et eius voluptate.", - "description": "Cum ipsam sed. Tempora temporibus deserunt. Corrupti id ut.", + "id": "4d9bf2b4-d9de-44c5-8c46-b4ebde7376df", + "title": "Fugiat voluptas animi sunt.", + "description": "Nam rerum explicabo. Totam hic sit. Ut aut autem.", "business_objective": null, - "compliance_threshold": 64.0, + "compliance_threshold": 21.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Soluta est doloremque fugit.", - "ref_id": "xccdf_org.ssgproject.content_profile_1760cbd722bd4c7de5782c086fab1edc" + "profile_title": "Sed nam sit consectetur.", + "ref_id": "xccdf_org.ssgproject.content_profile_5835e828635625c589d5083625c7f47e" }, { - "id": "8273bc0a-957b-404d-8852-adf8ce8abbd4", - "title": "Sed non vel placeat.", - "description": "Id itaque nulla. Non non vero. Quos aliquam tempore.", + "id": "62edf2a4-5dc0-4bc3-b81a-095319e81966", + "title": "At itaque exercitationem veniam.", + "description": "Fuga totam alias. Assumenda et velit. Delectus alias cupiditate.", "business_objective": null, - "compliance_threshold": 35.0, + "compliance_threshold": 13.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Exercitationem qui eos vel.", - "ref_id": "xccdf_org.ssgproject.content_profile_d04c7620d31e6254767ecd9691474025" + "profile_title": "Id non sint ducimus.", + "ref_id": "xccdf_org.ssgproject.content_profile_270f97e8ff443292bac57af8053011fa" }, { - "id": "84268bf5-84ae-402c-9cfc-a29a4966ef23", - "title": "Eum unde natus et.", - "description": "Qui et omnis. Voluptatem dolorem aliquid. Aut at architecto.", + "id": "71a92d99-4048-4927-bed1-f50a40df4a33", + "title": "At dolores consequuntur est.", + "description": "Aut hic et. Ipsa aspernatur eos. Culpa aut ut.", "business_objective": null, - "compliance_threshold": 59.0, + "compliance_threshold": 68.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ea ipsum mollitia odit.", - "ref_id": "xccdf_org.ssgproject.content_profile_2a4f5170735b9b0fa908366c191b1b83" + "profile_title": "Similique esse adipisci quia.", + "ref_id": "xccdf_org.ssgproject.content_profile_063c6e3ed06281883ae53a3a9911ba4f" }, { - "id": "852a8a84-fd1c-43cc-98e2-65bbfa173646", - "title": "Velit doloremque sapiente minima.", - "description": "Aliquid tempora et. Nulla sit exercitationem. Enim magni eaque.", + "id": "7cb80241-7993-435d-8568-171e0784528d", + "title": "Sint numquam nam minus.", + "description": "Adipisci porro voluptate. Earum quasi ipsam. Est quaerat rerum.", "business_objective": null, - "compliance_threshold": 79.0, + "compliance_threshold": 91.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Sunt ab iure itaque.", - "ref_id": "xccdf_org.ssgproject.content_profile_260c14dff3820d617983f2c663d85d57" + "profile_title": "Consequatur non molestias nobis.", + "ref_id": "xccdf_org.ssgproject.content_profile_f1617d9b43e8501dee552f842a1722e8" } ], "meta": { @@ -242,124 +242,124 @@ "value": { "data": [ { - "id": "08c41311-fa42-4811-b5f5-e0375b542316", - "title": "Autem quasi porro et.", - "description": "Totam neque illo. Cum voluptate aut. Error quis expedita.", + "id": "00d659e6-2b13-48a0-b347-aa72b073f20e", + "title": "Iusto et est sit.", + "description": "Ut ut doloribus. Nihil alias unde. Illo assumenda maiores.", "business_objective": null, - "compliance_threshold": 37.0, + "compliance_threshold": 23.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Accusamus quod nihil velit.", - "ref_id": "xccdf_org.ssgproject.content_profile_9c6ff83616603fd7ff559a41d50e7043" + "profile_title": "Doloribus et minus facilis.", + "ref_id": "xccdf_org.ssgproject.content_profile_f00c9e8c72b78727a928e09fe87515fc" }, { - "id": "08df4f3b-c3c8-4a8e-99ac-0da238a29589", - "title": "Quidem repudiandae a voluptatem.", - "description": "Et voluptatum ut. Sed et est. Et voluptatem consequatur.", + "id": "0c80d95a-fd33-4bff-8c90-8b5e26029a67", + "title": "Molestias fuga praesentium omnis.", + "description": "Dolor saepe aut. Dolor mollitia assumenda. Mollitia velit non.", "business_objective": null, - "compliance_threshold": 65.0, + "compliance_threshold": 31.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Et ratione consequatur itaque.", - "ref_id": "xccdf_org.ssgproject.content_profile_d10ec0e238b5a8cdb5bcd373629267e7" + "profile_title": "Accusamus vero blanditiis nisi.", + "ref_id": "xccdf_org.ssgproject.content_profile_6257a03b939544fa0becbf7004048c76" }, { - "id": "0e4ec5e9-63b0-4aed-8282-f98fce8bc56b", - "title": "Voluptatem distinctio quis omnis.", - "description": "Iusto est fuga. Quas eum distinctio. Est odio laborum.", + "id": "2a8d8e6f-4c21-445e-aa62-6369243c9873", + "title": "Ratione recusandae omnis sint.", + "description": "Officiis eaque odio. Facilis doloremque nisi. Necessitatibus illo cum.", "business_objective": null, - "compliance_threshold": 71.0, + "compliance_threshold": 96.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Provident aut sit dolores.", - "ref_id": "xccdf_org.ssgproject.content_profile_538d793379cc7fe200d463798e12b69d" + "profile_title": "Eos aut aut sint.", + "ref_id": "xccdf_org.ssgproject.content_profile_97719c2454c6660220b06597970c35fb" }, { - "id": "1b9aeb27-b8cd-453c-8463-b379b400b771", - "title": "Voluptas et consectetur quia.", - "description": "Itaque adipisci tenetur. Qui commodi voluptas. Molestiae aliquid officiis.", + "id": "337583f7-0b19-4ca6-b12f-feb9a863cf31", + "title": "Ratione ea numquam et.", + "description": "Et molestiae consectetur. Veniam odio placeat. Sint voluptas dignissimos.", "business_objective": null, - "compliance_threshold": 22.0, + "compliance_threshold": 39.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Ea eos nam et.", - "ref_id": "xccdf_org.ssgproject.content_profile_e63d2184b3a41c088fb19c91f8fef196" + "profile_title": "Sed dolores aperiam quo.", + "ref_id": "xccdf_org.ssgproject.content_profile_0b996f252b8605f40398c672830d8306" }, { - "id": "2687658c-ecd8-4040-9bd3-43b9ab29a6f5", - "title": "Aut non molestiae sit.", - "description": "Dolorem atque quidem. Ad minus sunt. Qui neque autem.", + "id": "37ed8db3-c974-42d0-8b6a-344e2f64c92d", + "title": "Eligendi qui facere consectetur.", + "description": "Non excepturi voluptas. Minima doloremque ad. Ut dicta quia.", "business_objective": null, - "compliance_threshold": 76.0, + "compliance_threshold": 74.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Aspernatur rem ut porro.", - "ref_id": "xccdf_org.ssgproject.content_profile_3697579a4f122d1b805d0b5897626fad" + "profile_title": "Labore porro soluta dignissimos.", + "ref_id": "xccdf_org.ssgproject.content_profile_ede86d7315596adc9018815874f88e31" }, { - "id": "297452c4-ba03-4dc5-b907-e634b21f88f4", - "title": "Et ad voluptatibus laboriosam.", - "description": "Deleniti illo culpa. Repellendus et neque. Nisi suscipit aliquid.", + "id": "3b315be3-4687-4bcd-86d8-e0980b770a41", + "title": "Voluptate sint voluptatem vel.", + "description": "Ut qui sit. Quia cum mollitia. Nemo qui ut.", "business_objective": null, - "compliance_threshold": 58.0, + "compliance_threshold": 99.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Aut et consequatur in.", - "ref_id": "xccdf_org.ssgproject.content_profile_42131e543a051de3738ba36b0e752048" + "profile_title": "Dolor facilis sint saepe.", + "ref_id": "xccdf_org.ssgproject.content_profile_a327a0d5d62f856667123fcbce158b27" }, { - "id": "2da3fe17-2c44-4a97-9833-b76de78ea68b", - "title": "Nemo sit ducimus magni.", - "description": "Vel fugit eaque. Dignissimos et et. Autem eos voluptas.", + "id": "45ecaf16-a80d-45d6-b4ff-257b3d519a76", + "title": "Quasi eos accusantium quidem.", + "description": "Quo sit dolorem. Sint sint illo. Est consequuntur similique.", "business_objective": null, - "compliance_threshold": 34.0, + "compliance_threshold": 9.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Nihil rem sint et.", - "ref_id": "xccdf_org.ssgproject.content_profile_7ca9e57b6e571d6018e18f4d0846799d" + "profile_title": "Aut corrupti ab ex.", + "ref_id": "xccdf_org.ssgproject.content_profile_8df3f72f705d5c193787e8cb082c015d" }, { - "id": "3b33a450-7387-4c0a-a593-00b4238110a6", - "title": "Omnis dolor et expedita.", - "description": "Earum enim quisquam. Esse tempore accusamus. Sit sit asperiores.", + "id": "4863d2b1-fbb9-4681-935c-374710dfa6e0", + "title": "Ex in doloribus eos.", + "description": "Deserunt repellat aut. Non et totam. Reprehenderit aut eos.", "business_objective": null, - "compliance_threshold": 62.0, + "compliance_threshold": 86.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Sunt adipisci molestiae quidem.", - "ref_id": "xccdf_org.ssgproject.content_profile_030cf9f178d01ac0da358edcfb028312" + "profile_title": "Debitis blanditiis quia et.", + "ref_id": "xccdf_org.ssgproject.content_profile_12bf1ec1094d80e349f66d8f12a09eef" }, { - "id": "40516518-db43-4573-b3fa-97c7add4c4a8", - "title": "Error aliquid dicta animi.", - "description": "Et dolorem et. Esse possimus natus. Corrupti culpa est.", + "id": "4f86ab2a-510c-429f-ad94-775cd0c86a87", + "title": "Repellendus fugiat temporibus commodi.", + "description": "Ut maxime ut. Aut adipisci est. Rerum ad fugiat.", "business_objective": null, - "compliance_threshold": 39.0, + "compliance_threshold": 93.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Iste impedit natus optio.", - "ref_id": "xccdf_org.ssgproject.content_profile_eff55c76f76478375034f0d6f70881a2" + "profile_title": "Voluptates et vitae quam.", + "ref_id": "xccdf_org.ssgproject.content_profile_a57b41c91f34382ccd47bb3f70fefba7" }, { - "id": "4408ecea-0e79-49f8-9eb9-3c4f00c8ae80", - "title": "Qui omnis voluptatem numquam.", - "description": "Ipsa alias suscipit. Molestiae consequatur aut. In ut porro.", + "id": "5d12107d-65f9-4b90-a288-d60eab1edd01", + "title": "Autem omnis voluptate id.", + "description": "Voluptas ad et. Quia qui et. Aut et delectus.", "business_objective": null, - "compliance_threshold": 10.0, + "compliance_threshold": 63.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Dolorem voluptas cumque sapiente.", - "ref_id": "xccdf_org.ssgproject.content_profile_fb97bf9c31a8b8eb602eb4b81ab86219" + "profile_title": "Quaerat hic officia veniam.", + "ref_id": "xccdf_org.ssgproject.content_profile_e9dec468a0c9b2407c1bbf85167b5a3c" } ], "meta": { @@ -477,7 +477,7 @@ "Response example": { "value": { "data": { - "id": "26b5199d-a85b-4971-81db-381d70fd6e12", + "id": "a5c04aab-f953-4030-971e-bf013ebdd394", "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": "Non veritatis molestiae nam.", - "ref_id": "xccdf_org.ssgproject.content_profile_6faf199bee47e3326ad7adab1c64ee74" + "profile_title": "Sit et voluptatem voluptatem.", + "ref_id": "xccdf_org.ssgproject.content_profile_a5dd883d1bb61dbf17ca12877dd4529c" } }, "summary": "", @@ -556,16 +556,16 @@ "Returns a Policy": { "value": { "data": { - "id": "b4110a9f-4b91-4a41-890e-81ed58392d1f", - "title": "Hic voluptatum quibusdam ratione.", - "description": "Temporibus aut ab. Sunt quia eveniet. Natus nam ipsa.", + "id": "c56f9d75-7a5e-4208-8ff3-fa87f5da2e94", + "title": "Ex delectus et quos.", + "description": "Velit dolores reprehenderit. Et dolore numquam. Totam eos aut.", "business_objective": null, - "compliance_threshold": 56.0, + "compliance_threshold": 16.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Reiciendis nisi quae consequatur.", - "ref_id": "xccdf_org.ssgproject.content_profile_1cfda7a9f2d3c00019afd1d2f3d14e1f" + "profile_title": "Fugiat qui placeat quia.", + "ref_id": "xccdf_org.ssgproject.content_profile_3cbd6197484fec1d4c96b8c7a90bc80b" } }, "summary": "", @@ -596,7 +596,7 @@ "Description of an error when requesting a non-existing Policy": { "value": { "errors": [ - "V2::Policy not found with ID cae2dba4-9cb7-438f-80ad-000ead91f990" + "V2::Policy not found with ID a1779d3a-d77d-43d8-957b-5b1e7089838f" ] }, "summary": "", @@ -645,16 +645,16 @@ "Returns the updated Policy": { "value": { "data": { - "id": "13f7b8ab-1075-4d5b-8edf-421194414789", - "title": "Fuga et et praesentium.", - "description": "Quibusdam doloremque expedita. Sunt et repellat. Commodi nobis reprehenderit.", + "id": "4829806f-c9e2-4504-a532-8d0c6904e387", + "title": "Consequatur necessitatibus occaecati enim.", + "description": "Animi a recusandae. Perferendis consequatur ipsam. Rerum et aut.", "business_objective": null, "compliance_threshold": 100.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Architecto at occaecati et.", - "ref_id": "xccdf_org.ssgproject.content_profile_431e77bc051dc8cd5083450f361590b7" + "profile_title": "Officiis consectetur dolorem quibusdam.", + "ref_id": "xccdf_org.ssgproject.content_profile_83f599fe70d216ffffea6831f85b2667" } }, "summary": "", @@ -722,16 +722,16 @@ "Deletes a Policy": { "value": { "data": { - "id": "1225495b-39dd-4e2e-a759-062980a5ae18", - "title": "In labore rerum quidem.", - "description": "Quas consequatur alias. Magni possimus reiciendis. Et natus inventore.", + "id": "7b663271-ae95-404f-bf0b-68e9423019e9", + "title": "Blanditiis ab expedita quos.", + "description": "Quos qui laboriosam. Quis distinctio totam. Velit nulla quis.", "business_objective": null, - "compliance_threshold": 70.0, + "compliance_threshold": 23.0, "total_system_count": 0, "type": "policy", "os_major_version": 7, - "profile_title": "Similique eveniet nobis qui.", - "ref_id": "xccdf_org.ssgproject.content_profile_bcf93b339f07dc7a5d88163a15b8c55e" + "profile_title": "Illo minima sed dignissimos.", + "ref_id": "xccdf_org.ssgproject.content_profile_130d094c6ea27d2e7406184b0fa93c37" } }, "summary": "", @@ -853,124 +853,124 @@ "value": { "data": [ { - "id": "060a3fa7-a8d5-48c5-8ada-b4285726cdf2", - "title": "Eius beatae sit rerum.", - "description": "Quod nesciunt aliquam. Vero aliquam omnis. Repellat atque odit.", + "id": "07fda18a-8c7d-40bb-a1f9-78ac31c85f97", + "title": "Animi velit asperiores eos.", + "description": "Aut velit nisi. Non consequatur rerum. Et illum non.", "business_objective": null, - "compliance_threshold": 45.0, + "compliance_threshold": 84.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Fugit nulla molestiae accusamus.", - "ref_id": "xccdf_org.ssgproject.content_profile_4704048c45bbb75303867c50de569345" + "profile_title": "Sunt occaecati ut veritatis.", + "ref_id": "xccdf_org.ssgproject.content_profile_8df61290eee5975a75b67491e52cf279" }, { - "id": "11fca7a0-c508-483e-aab3-d425ce32d7cf", - "title": "Dolorum explicabo dolorem nulla.", - "description": "Voluptate ipsum neque. Maiores incidunt dignissimos. Molestiae itaque quidem.", + "id": "12a0e3c3-555c-4981-9104-7b21f8994198", + "title": "Quae similique nobis earum.", + "description": "Sunt non natus. Dolorem rerum voluptatum. Est animi qui.", "business_objective": null, - "compliance_threshold": 88.0, + "compliance_threshold": 5.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Explicabo eum et reprehenderit.", - "ref_id": "xccdf_org.ssgproject.content_profile_7eda94845ba0ceea2c7bbe1c6c836301" + "profile_title": "Non enim labore ullam.", + "ref_id": "xccdf_org.ssgproject.content_profile_24c0407b3dc31cc79ab208e236e5e08f" }, { - "id": "1ecc872a-aa34-465b-95f8-ec652b01ec12", - "title": "Non nobis rerum et.", - "description": "Tempore odit repellendus. Quidem iure dolorem. Vero qui totam.", + "id": "17d32352-44c4-4a80-8ace-887c03f16b2b", + "title": "Corporis consequatur qui perferendis.", + "description": "Eos sint recusandae. Culpa voluptatem ut. Vero ea facilis.", "business_objective": null, - "compliance_threshold": 13.0, + "compliance_threshold": 67.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Rerum consequatur harum soluta.", - "ref_id": "xccdf_org.ssgproject.content_profile_272bc51db4d22e236248b58651eab046" + "profile_title": "Animi alias in dolorem.", + "ref_id": "xccdf_org.ssgproject.content_profile_806b3c07bd4b53a052b17fd437265ede" }, { - "id": "25278d91-7788-49ae-a3f9-39e18bf48e67", - "title": "Enim autem quo amet.", - "description": "Dolor et iure. Dolorem iure recusandae. Corrupti eos perferendis.", + "id": "39d9dca5-ec0a-4e04-88c1-bcad20c040c0", + "title": "Quisquam voluptatum deserunt fugit.", + "description": "Qui nobis nostrum. Magni placeat distinctio. Hic et neque.", "business_objective": null, - "compliance_threshold": 24.0, + "compliance_threshold": 89.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Quia necessitatibus aut asperiores.", - "ref_id": "xccdf_org.ssgproject.content_profile_cf261551df6aa63e520fa845d846c13f" + "profile_title": "Ut sit nobis repellat.", + "ref_id": "xccdf_org.ssgproject.content_profile_d5a19b12aea5fa796a0ee97b8656c79e" }, { - "id": "2be44e31-a0ba-4128-aea8-55daecd411d1", - "title": "Quis aliquid nisi provident.", - "description": "Voluptatibus architecto vel. Aliquam accusamus est. In quo cum.", + "id": "3cf163d3-64a9-4af8-9dfa-f01dad0ba62b", + "title": "Hic alias cumque culpa.", + "description": "Voluptatem dignissimos soluta. Fugit odio quae. Ut esse molestiae.", "business_objective": null, - "compliance_threshold": 86.0, + "compliance_threshold": 8.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Facere accusantium dolorem unde.", - "ref_id": "xccdf_org.ssgproject.content_profile_d2088c0d0b3c443f3d8a76020b43a2ae" + "profile_title": "Repellendus esse ut omnis.", + "ref_id": "xccdf_org.ssgproject.content_profile_077964a3a5dc3ea81c5cbed6a9f04bdc" }, { - "id": "2ef7ac32-b948-4571-8d93-cfb51e8e8888", - "title": "Et minus sit a.", - "description": "Quia facere soluta. Eum consequuntur reiciendis. Odit qui maxime.", + "id": "3ea8791a-701e-406e-a64b-bf6aba64a11c", + "title": "Debitis labore vitae velit.", + "description": "Asperiores ut suscipit. Sed dicta sed. Sed et occaecati.", "business_objective": null, - "compliance_threshold": 10.0, + "compliance_threshold": 78.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Nobis earum doloribus pariatur.", - "ref_id": "xccdf_org.ssgproject.content_profile_bc5b0f409605431b4022ff09bebf0f07" + "profile_title": "Quo doloribus delectus aut.", + "ref_id": "xccdf_org.ssgproject.content_profile_4427ced319642443e68e19ab70bacf5c" }, { - "id": "32d26483-ebdc-431d-9dfe-1b99e9ce0332", - "title": "Doloribus et ut vitae.", - "description": "Et consequatur quaerat. Qui tempore omnis. Iusto aut nisi.", + "id": "4620cc75-ebf4-4021-9e54-bd24c15454e7", + "title": "Numquam unde ipsum nisi.", + "description": "Rerum libero at. Sint ut eos. Vel expedita eum.", "business_objective": null, - "compliance_threshold": 55.0, + "compliance_threshold": 45.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Aut consectetur veritatis ut.", - "ref_id": "xccdf_org.ssgproject.content_profile_101a6cddcffffee7a2ad3f1bb19de31b" + "profile_title": "Ut rerum quia aperiam.", + "ref_id": "xccdf_org.ssgproject.content_profile_6ae2e86826606ab8c8c589f051de86d1" }, { - "id": "373e2238-1bb9-4289-9b70-a27c393c4a6f", - "title": "Voluptatum iusto iste tenetur.", - "description": "Libero ex occaecati. Est deleniti cumque. Qui dolor voluptatum.", + "id": "5604351c-2a92-4ece-be57-85c26183a644", + "title": "Aut facilis beatae itaque.", + "description": "Et quae veniam. Rerum nobis est. Dolorem pariatur illum.", "business_objective": null, - "compliance_threshold": 35.0, + "compliance_threshold": 62.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Soluta quos reprehenderit dicta.", - "ref_id": "xccdf_org.ssgproject.content_profile_3cea33fd01fb262c03acd7822c6bdf58" + "profile_title": "Sunt aut est quia.", + "ref_id": "xccdf_org.ssgproject.content_profile_8a52695ac6bd6cc2b2a989dd4382a591" }, { - "id": "49d074a4-dde6-4dfa-a23a-0d227f51ba71", - "title": "Aliquam quos est laboriosam.", - "description": "Ab explicabo architecto. Nihil enim cum. Modi qui maiores.", + "id": "594fc1e4-a060-4a11-a129-e976a9e4faeb", + "title": "Earum illum maiores et.", + "description": "Minus consequatur qui. Eos et ut. Minus id ipsam.", "business_objective": null, - "compliance_threshold": 30.0, + "compliance_threshold": 81.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Labore reprehenderit blanditiis molestias.", - "ref_id": "xccdf_org.ssgproject.content_profile_f0df6eb89e599eab777cbbf409abd399" + "profile_title": "Ut eum maxime ullam.", + "ref_id": "xccdf_org.ssgproject.content_profile_06fec52827e0781df416fdd9bd05d482" }, { - "id": "54f0035b-7ff6-4cca-b398-2d0f724b5463", - "title": "Qui rem tempora ea.", - "description": "Vitae in fugiat. Velit aspernatur et. Aliquid autem exercitationem.", + "id": "59c9d5ae-8242-41cd-a38b-659c490f7537", + "title": "Nisi sapiente vel ipsum.", + "description": "Cum minus quae. Nulla maiores deleniti. Corporis sed est.", "business_objective": null, - "compliance_threshold": 77.0, + "compliance_threshold": 56.0, "total_system_count": 1, "type": "policy", "os_major_version": 7, - "profile_title": "Maxime sit qui inventore.", - "ref_id": "xccdf_org.ssgproject.content_profile_f1d54c2024602e284c59484a9797348a" + "profile_title": "Laborum eaque laboriosam consequatur.", + "ref_id": "xccdf_org.ssgproject.content_profile_de00644d76fa374eb9afca8dee519e4f" } ], "meta": { @@ -979,9 +979,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/systems/44cf73a8-a3f1-43e2-8434-9a6883b18b13/policies?limit=10&offset=0", - "last": "/api/compliance/v2/systems/44cf73a8-a3f1-43e2-8434-9a6883b18b13/policies?limit=10&offset=20", - "next": "/api/compliance/v2/systems/44cf73a8-a3f1-43e2-8434-9a6883b18b13/policies?limit=10&offset=10" + "first": "/api/compliance/v2/systems/57f8f285-a56f-47ec-9ab0-702de6db8ec4/policies?limit=10&offset=0", + "last": "/api/compliance/v2/systems/57f8f285-a56f-47ec-9ab0-702de6db8ec4/policies?limit=10&offset=20", + "next": "/api/compliance/v2/systems/57f8f285-a56f-47ec-9ab0-702de6db8ec4/policies?limit=10&offset=10" } }, "summary": "", @@ -1099,82 +1099,82 @@ "value": { "data": [ { - "id": "073b262b-2dd4-4698-83f1-96d7e4971336", - "ref_id": "xccdf_org.ssgproject.content_profile_fd0b2ec66f7d863c4d3e4efa0ce7c17f", - "title": "Soluta quisquam facilis optio.", - "description": "Quisquam quia cum. Adipisci rerum est. Nisi saepe laboriosam.", + "id": "08e5b527-c7ab-40af-9b95-05c98be65c6a", + "ref_id": "xccdf_org.ssgproject.content_profile_2a643874f2660eb89a31063966210e94", + "title": "Similique et non enim.", + "description": "Sint iusto itaque. Natus architecto inventore. Iste et possimus.", "value_overrides": {}, "type": "profile" }, { - "id": "2073bc12-a56c-4e86-a114-17e6070df48d", - "ref_id": "xccdf_org.ssgproject.content_profile_8c3e66bdafed0e0cac98d0d29bd113de", - "title": "Earum modi occaecati sint.", - "description": "Omnis similique qui. Quis sed odio. Officiis qui eos.", + "id": "1023b376-8f3d-4a7b-aa51-eedfdbc34f27", + "ref_id": "xccdf_org.ssgproject.content_profile_10aed26355bb45fdf11799a464f237a6", + "title": "Excepturi maxime quae aliquid.", + "description": "Doloremque odit soluta. Et ad est. Qui ut est.", "value_overrides": {}, "type": "profile" }, { - "id": "42d4017c-5fab-4d36-b587-2d5474dd58f1", - "ref_id": "xccdf_org.ssgproject.content_profile_bcb1d927a201b9efab18c4ced31512a2", - "title": "Autem accusamus ut vero.", - "description": "Distinctio non error. Accusamus tempore autem. Accusantium quo accusamus.", + "id": "282e7c5e-c55d-44a5-8f04-ee8b7c808c5f", + "ref_id": "xccdf_org.ssgproject.content_profile_18d74552c8a8988f0e22e38bd05c54f6", + "title": "Corporis pariatur harum soluta.", + "description": "Quas molestiae quod. Accusantium amet similique. Maiores quia rerum.", "value_overrides": {}, "type": "profile" }, { - "id": "45c15aa6-43a3-4245-90da-7dd692ae676e", - "ref_id": "xccdf_org.ssgproject.content_profile_7db7d99c29f9489ec22d68a25694b0bb", - "title": "Accusantium aut excepturi voluptatibus.", - "description": "Ut odio dicta. Aut ad suscipit. Dolorum enim sed.", + "id": "39907192-5228-4f5f-b170-7b4576fb7da8", + "ref_id": "xccdf_org.ssgproject.content_profile_b5b75e43b570e298efcb8a7f709d81ac", + "title": "Facere eos ut voluptatem.", + "description": "Molestiae eos nulla. Praesentium dolores ut. Ipsa ut modi.", "value_overrides": {}, "type": "profile" }, { - "id": "463cf59f-441a-4257-9675-7a187f9df5e7", - "ref_id": "xccdf_org.ssgproject.content_profile_cd1194d1cb6c6f84fde47b68f5d7c896", - "title": "Est molestiae ipsum iusto.", - "description": "Et possimus ut. Culpa maiores voluptatibus. Quis quia eaque.", + "id": "532aea0f-e100-4907-b55b-c078708cf616", + "ref_id": "xccdf_org.ssgproject.content_profile_078594776aef2873218759be97f63aff", + "title": "Fugit quia qui optio.", + "description": "Enim excepturi modi. Minima architecto expedita. Enim numquam asperiores.", "value_overrides": {}, "type": "profile" }, { - "id": "562f6af3-279c-4190-97ee-088d04687abd", - "ref_id": "xccdf_org.ssgproject.content_profile_ca0f58e2c6ad0312c5d41cd6cab407d0", - "title": "Temporibus eos eum cumque.", - "description": "Ut reiciendis corrupti. Labore accusamus aliquid. Exercitationem blanditiis consequatur.", + "id": "6458abc4-ed35-4fb2-a91d-87f6f8292ed1", + "ref_id": "xccdf_org.ssgproject.content_profile_95d5e05d5a76b395f1ecb7f5f17754d3", + "title": "Voluptatibus dicta qui dignissimos.", + "description": "Voluptatibus quibusdam molestiae. At aliquid ea. Quos nisi voluptas.", "value_overrides": {}, "type": "profile" }, { - "id": "57fe0a01-fed4-4dee-9281-094d3c7fc689", - "ref_id": "xccdf_org.ssgproject.content_profile_3cc73aad15c48ef74041e213a16c89de", - "title": "Praesentium est labore non.", - "description": "Dignissimos rerum voluptatem. Voluptate enim eum. Inventore voluptatem ab.", + "id": "680a0cf6-e920-4e64-a96c-56ff9e99dce4", + "ref_id": "xccdf_org.ssgproject.content_profile_df83cecc542658a80ddebbcb876d33d9", + "title": "Amet dolorum perspiciatis unde.", + "description": "Veniam mollitia sit. Officia eligendi itaque. Omnis atque id.", "value_overrides": {}, "type": "profile" }, { - "id": "5a5c9ec0-56b6-4b65-b4de-3cc60dfae2ec", - "ref_id": "xccdf_org.ssgproject.content_profile_d9b548eda700189bc9f50aa053321639", - "title": "Vero provident nihil accusantium.", - "description": "In autem vel. Sint ipsa repellat. Quisquam nihil optio.", + "id": "687c2026-1a30-480a-9653-95ae7d7be8a1", + "ref_id": "xccdf_org.ssgproject.content_profile_9992d73a08d1afca1abf898d6d6907a6", + "title": "Quae dolor officia hic.", + "description": "Quo quis soluta. Dolor consequuntur autem. Est perspiciatis dolor.", "value_overrides": {}, "type": "profile" }, { - "id": "5af508c6-fbd6-4921-aef6-0afe37ef864e", - "ref_id": "xccdf_org.ssgproject.content_profile_316586d59ef760c01069a442ccb439be", - "title": "Quia eum mollitia dolorum.", - "description": "Sequi nemo voluptate. Commodi cumque accusamus. Earum vero voluptatem.", + "id": "7d4cc4df-949c-4fd8-bfec-c120562132c8", + "ref_id": "xccdf_org.ssgproject.content_profile_663bc1e0b07a87b7a9a7cf5d85151b67", + "title": "Totam modi suscipit ipsum.", + "description": "Ducimus et voluptas. Animi quia at. Id reprehenderit quisquam.", "value_overrides": {}, "type": "profile" }, { - "id": "5d981866-7a01-4e37-af81-0b056a26acac", - "ref_id": "xccdf_org.ssgproject.content_profile_34c611ec595e69623dffe9f793deb5bd", - "title": "Excepturi et eum amet.", - "description": "Fugiat omnis ipsa. Quo inventore laborum. Rerum quisquam aliquam.", + "id": "869365af-3065-4483-ae07-d9d926e778dc", + "ref_id": "xccdf_org.ssgproject.content_profile_c4ca4f176a2349f5266b70d161706bbd", + "title": "Reiciendis illo accusantium aut.", + "description": "Ut et culpa. Temporibus corrupti aliquam. Consequatur id dolorem.", "value_overrides": {}, "type": "profile" } @@ -1185,9 +1185,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/ea0fcca8-ffac-40e0-8f1f-744f8043c8fe/profiles?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/ea0fcca8-ffac-40e0-8f1f-744f8043c8fe/profiles?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/ea0fcca8-ffac-40e0-8f1f-744f8043c8fe/profiles?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/1d5de0ac-6803-4984-a270-16f25007e1bf/profiles?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/1d5de0ac-6803-4984-a270-16f25007e1bf/profiles?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/1d5de0ac-6803-4984-a270-16f25007e1bf/profiles?limit=10&offset=10" } }, "summary": "", @@ -1197,82 +1197,82 @@ "value": { "data": [ { - "id": "ed0b791a-1356-4daa-ae35-c1012208d964", - "ref_id": "xccdf_org.ssgproject.content_profile_0491e7705aa433de0ca4f16a187bacbc", - "title": "Accusantium nulla fuga pariatur.", - "description": "Ut vel et. Voluptates et nostrum. Enim voluptatem explicabo.", + "id": "1a23c49b-48f1-4791-b9da-d9d3bf51ec63", + "ref_id": "xccdf_org.ssgproject.content_profile_beb5b7285db62fba26001f6073751059", + "title": "Aut ab hic aperiam.", + "description": "Sunt fugit voluptatibus. Est totam ducimus. Reiciendis ut aut.", "value_overrides": {}, "type": "profile" }, { - "id": "a7a02af9-1466-48ce-aad3-3b734ddf6ccd", - "ref_id": "xccdf_org.ssgproject.content_profile_14a50cf3676195eeabbc8ebb985014b4", - "title": "Alias quibusdam natus dicta.", - "description": "Qui eos nesciunt. Rem eos libero. Est deserunt repudiandae.", + "id": "6301c770-010e-4229-9f6a-11b141c0591e", + "ref_id": "xccdf_org.ssgproject.content_profile_756de0a4b596688bede140590b0f67f7", + "title": "Aut ipsa illo omnis.", + "description": "Hic et nulla. Qui repudiandae consequatur. Ad repudiandae quis.", "value_overrides": {}, "type": "profile" }, { - "id": "32e8068c-1b09-4b7c-ba5c-5d151efad1c8", - "ref_id": "xccdf_org.ssgproject.content_profile_f1c721899d90923575086c7de86f368a", - "title": "Architecto harum vel rem.", - "description": "Veritatis eaque ea. Impedit consequatur dicta. Harum vel consectetur.", + "id": "650a0c12-6d71-4723-adce-3cb4110b3ccf", + "ref_id": "xccdf_org.ssgproject.content_profile_a0a6feee65ad74c65fbf1b8250258395", + "title": "Consequuntur amet sit qui.", + "description": "Non animi corrupti. Quod omnis rerum. Nam iste culpa.", "value_overrides": {}, "type": "profile" }, { - "id": "57ebf010-6c50-46b4-b5f6-8fefb3c2d321", - "ref_id": "xccdf_org.ssgproject.content_profile_6cdb09870d48c9673ec4af94cde0406b", - "title": "Atque ut ipsum sequi.", - "description": "Vitae maxime et. Nihil debitis voluptates. Voluptatem ut qui.", + "id": "b9f779bf-c0a4-4b22-b80b-b7d8769bd465", + "ref_id": "xccdf_org.ssgproject.content_profile_c48cef5ff8c1ce6516889d228f402783", + "title": "Corrupti est cumque maxime.", + "description": "Excepturi et reiciendis. Aliquid consequatur earum. Et ea ad.", "value_overrides": {}, "type": "profile" }, { - "id": "de028b73-109b-4201-b4ff-ccf1cad7356d", - "ref_id": "xccdf_org.ssgproject.content_profile_40ab9a19f47e0267ff6c7cb3422b46cd", - "title": "Aut cupiditate eum suscipit.", - "description": "Temporibus dolorum minus. Hic aut sed. Illum voluptatem et.", + "id": "c08e5083-2fdc-4e72-9f97-e23fd1b4493d", + "ref_id": "xccdf_org.ssgproject.content_profile_8786387ab3396a42c2c119cc0b5a382a", + "title": "Cum ut vitae omnis.", + "description": "Incidunt rerum a. Dicta est esse. Accusamus commodi autem.", "value_overrides": {}, "type": "profile" }, { - "id": "d890631c-1fe8-4a05-80e1-2cb50ffc7add", - "ref_id": "xccdf_org.ssgproject.content_profile_d5b97c1785028c884f9249e69dfddbcc", - "title": "Autem dolores exercitationem accusantium.", - "description": "Quisquam sapiente omnis. Et et ullam. Eos possimus natus.", + "id": "38fb475d-9c7b-4b1b-9620-169ccf69f051", + "ref_id": "xccdf_org.ssgproject.content_profile_e7b52539f45bb7b6c7a471c0033a3bbd", + "title": "Debitis blanditiis sit voluptatem.", + "description": "Excepturi voluptatem et. Praesentium aut provident. Et quam quod.", "value_overrides": {}, "type": "profile" }, { - "id": "be17401b-5cdd-4660-aab1-6e95bcc36f65", - "ref_id": "xccdf_org.ssgproject.content_profile_73f21011f413f3c9a52ebd5a5feb9f4c", - "title": "Corrupti quia tempore et.", - "description": "Sed laborum quis. Quasi ut ex. Sit quaerat eligendi.", + "id": "7805c665-00e3-4737-84ae-e64aba6fc222", + "ref_id": "xccdf_org.ssgproject.content_profile_69ee20f32cfcfb9ff195ac5f35742791", + "title": "Dolor consequatur cum illo.", + "description": "Dolorem voluptas magni. Eos rem quia. Ipsum rerum id.", "value_overrides": {}, "type": "profile" }, { - "id": "b7f438cf-82c4-48d8-80c4-7db7b137b69c", - "ref_id": "xccdf_org.ssgproject.content_profile_823ee753c94c0fec4c8df40da00f1235", - "title": "Dolores quisquam eum ducimus.", - "description": "Officiis suscipit corrupti. Perspiciatis et sed. Fugit maxime debitis.", + "id": "726d56fd-3016-4c65-83d7-70ae887be6ab", + "ref_id": "xccdf_org.ssgproject.content_profile_d67c5a7ac758d5eb4343a3302343d436", + "title": "Dolor illo beatae ut.", + "description": "Autem explicabo rerum. Aut iusto quis. Fugit ab harum.", "value_overrides": {}, "type": "profile" }, { - "id": "52918501-fdff-49e0-a6d4-809d98b9310f", - "ref_id": "xccdf_org.ssgproject.content_profile_f4cc8c8711f6b04f699807dd9b58f576", - "title": "Eos aut perferendis eum.", - "description": "Ducimus non est. Praesentium hic doloribus. At hic esse.", + "id": "7e26101c-497f-4a1c-80e8-25b41f5447cd", + "ref_id": "xccdf_org.ssgproject.content_profile_845ac13ddbed1b6de7f889bbda48a31f", + "title": "Et voluptatem dolores ex.", + "description": "Fuga culpa quis. Labore voluptatem dignissimos. Cumque non tempore.", "value_overrides": {}, "type": "profile" }, { - "id": "54ebda09-cf8b-4365-81df-243dac3cabb6", - "ref_id": "xccdf_org.ssgproject.content_profile_0c5c3bbb0bb04b7be977641f31a3a6b5", - "title": "Est optio veritatis numquam.", - "description": "Quia dolores incidunt. Laboriosam sit ducimus. Blanditiis dolorem sint.", + "id": "966bc2f5-be7e-472d-af50-0096c6f21622", + "ref_id": "xccdf_org.ssgproject.content_profile_e7fc7a62b279c493cc0a4696111edc93", + "title": "Exercitationem accusantium ut soluta.", + "description": "Ea expedita adipisci. Cum ut eius. Doloribus et sequi.", "value_overrides": {}, "type": "profile" } @@ -1284,26 +1284,35 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/bd62a7ed-7f17-4818-a4ff-e18f421a78b2/profiles?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/bd62a7ed-7f17-4818-a4ff-e18f421a78b2/profiles?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/bd62a7ed-7f17-4818-a4ff-e18f421a78b2/profiles?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/6186284c-39a2-401e-8d8f-3b26d46d1163/profiles?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/6186284c-39a2-401e-8d8f-3b26d46d1163/profiles?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/6186284c-39a2-401e-8d8f-3b26d46d1163/profiles?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Profiles filtered by '(title=Tenetur omnis porro consectetur.)'": { + "List of Profiles filtered by '(title=Voluptate nihil saepe quo.)'": { "value": { - "data": [], + "data": [ + { + "id": "01cf5b27-5df8-4122-9433-bcf239d81eef", + "ref_id": "xccdf_org.ssgproject.content_profile_02ad1207731fa7dc720fc289cc440b01", + "title": "Voluptate nihil saepe quo.", + "description": "Nulla ut perspiciatis. Ipsum recusandae quia. Eos et nulla.", + "value_overrides": {}, + "type": "profile" + } + ], "meta": { - "total": 0, - "filter": "(title='Tenetur omnis porro consectetur.')", + "total": 1, + "filter": "(title=\"Voluptate nihil saepe quo.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/f92d8cc4-f904-4fcd-b144-6c9abc6183dd/profiles?filter=%28title%3D%27Tenetur+omnis+porro+consectetur.%27%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/f92d8cc4-f904-4fcd-b144-6c9abc6183dd/profiles?filter=%28title%3D%27Tenetur+omnis+porro+consectetur.%27%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/8fd97bb1-aba8-4ca8-a973-f1a6be3f3fd0/profiles?filter=%28title%3D%22Voluptate+nihil+saepe+quo.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/8fd97bb1-aba8-4ca8-a973-f1a6be3f3fd0/profiles?filter=%28title%3D%22Voluptate+nihil+saepe+quo.%22%29&limit=10&offset=0" } }, "summary": "", @@ -1410,10 +1419,10 @@ "Returns a Profile": { "value": { "data": { - "id": "6ed60158-462f-450c-874f-ced1f372ce81", - "ref_id": "xccdf_org.ssgproject.content_profile_5cd722404e0fa96499151e86b5d54edf", - "title": "Nisi quo ratione tempora.", - "description": "Ad quisquam suscipit. Placeat quia qui. Minima blanditiis quisquam.", + "id": "e82cd572-408c-4955-916f-b91c6489f5ec", + "ref_id": "xccdf_org.ssgproject.content_profile_5e726a34c1c560f5f30e54d57a495c0d", + "title": "Consequatur harum et aspernatur.", + "description": "Ex omnis eveniet. Voluptate in ad. Quae libero numquam.", "value_overrides": {}, "type": "profile" } @@ -1446,7 +1455,7 @@ "Description of an error when requesting a non-existing Profile": { "value": { "errors": [ - "V2::Profile not found with ID f0fbcfdf-fe8c-4a1a-8142-e803157f5363" + "V2::Profile not found with ID 655dd18b-541b-4a93-acd1-5ba8ac7e9fe4" ] }, "summary": "", @@ -1546,92 +1555,92 @@ "value": { "data": [ { - "id": "0956e68e-1c20-48a9-aeed-76caf57fe599", - "ref_id": "xccdf_org.ssgproject.content_rule_group_77400760989c501bf87d5c0836d3b8d7", - "title": "Illo harum voluptatem quae.", - "rationale": "Et sunt est. Beatae est est. Impedit aut nostrum.", - "description": "Quasi ut laudantium. Est aperiam et. Sint ut optio.", + "id": "01e06c36-9e19-4082-adb8-d81b5b19ab7c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_98a921c2855db49524b092981c4fe3a5", + "title": "Sapiente qui dolorem exercitationem.", + "rationale": "Qui non iure. Aut voluptates quod. Ipsum neque non.", + "description": "Occaecati qui atque. Vel a dolor. Natus pariatur quam.", "precedence": null, "type": "rule_group" }, { - "id": "0aa8c45a-738c-4e62-893f-d4c050e5731b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_8a56ddbbbb5855ec825f5f2eca0c395e", - "title": "Sit aliquid et ut.", - "rationale": "Voluptatibus eos voluptatem. Quo doloribus quae. Quidem deleniti dolores.", - "description": "Delectus necessitatibus omnis. Dolorem vitae porro. Mollitia tenetur autem.", + "id": "0e0a93bd-d8a3-4af6-94cb-9572304086a6", + "ref_id": "xccdf_org.ssgproject.content_rule_group_a144bab1881b9a7639bf75ac6e05419c", + "title": "Recusandae nostrum et facere.", + "rationale": "Quod ipsam non. Modi hic ab. Officiis tenetur cum.", + "description": "Quis hic ut. Et quisquam qui. Necessitatibus perspiciatis at.", "precedence": null, "type": "rule_group" }, { - "id": "1e1316a2-af42-4ea5-8cdd-09046781a3ad", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e2090480f9d4d6f720b1f1ff15ffaf5e", - "title": "Quis vero repellat et.", - "rationale": "Quae eius neque. Eum aliquid mollitia. Eius vel deserunt.", - "description": "Autem molestiae veniam. Laboriosam nam similique. Accusantium explicabo assumenda.", + "id": "10a4e1bc-c5d1-4304-96c6-3f554f0436c6", + "ref_id": "xccdf_org.ssgproject.content_rule_group_09d1fd57de035337e049dd99093ba17f", + "title": "Enim accusamus quidem et.", + "rationale": "Pariatur voluptatem architecto. Ut et nihil. Saepe voluptatibus temporibus.", + "description": "Iusto officia quae. Maxime ut totam. Et ipsam error.", "precedence": null, "type": "rule_group" }, { - "id": "2a0722cb-a9e2-46d0-8751-dbfa674ce12f", - "ref_id": "xccdf_org.ssgproject.content_rule_group_21103e0537c3671ea1c07a563192b8f7", - "title": "Ducimus facilis soluta quam.", - "rationale": "Dolorum et quo. Nobis soluta qui. Esse inventore accusamus.", - "description": "Aut qui ullam. Praesentium exercitationem enim. Cum libero ullam.", + "id": "16518684-548f-4ca0-b6a6-9df8b2ba69ad", + "ref_id": "xccdf_org.ssgproject.content_rule_group_04acfb01c0bbb9af6df7f1b4caeeb2fa", + "title": "Minima est occaecati aut.", + "rationale": "Quia ea quos. Et tempora voluptatem. Ut vero sed.", + "description": "Voluptatem quidem sint. Aspernatur eum laboriosam. Corporis qui aut.", "precedence": null, "type": "rule_group" }, { - "id": "2d0e6441-a3e0-4dd2-85fe-a29a2f8fe2dc", - "ref_id": "xccdf_org.ssgproject.content_rule_group_9da7306b775261d426ac97a30a1e4780", - "title": "Eos deserunt libero et.", - "rationale": "Error autem rerum. Natus at et. Quia possimus iure.", - "description": "Exercitationem quia et. Et doloribus minus. Voluptatem aliquid autem.", + "id": "1c042c51-5df3-48df-a387-eacb484b028e", + "ref_id": "xccdf_org.ssgproject.content_rule_group_8af4d8d34998fbadc33ca0100d1236ec", + "title": "Placeat consectetur est delectus.", + "rationale": "Porro quia iste. Alias excepturi odio. Adipisci facilis corporis.", + "description": "Explicabo et vitae. Neque rerum voluptates. Dicta impedit quae.", "precedence": null, "type": "rule_group" }, { - "id": "2e5335ab-e523-4271-a856-58d43203185b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_6f975dd324e2d6c680db195fbb35a8e8", - "title": "Ullam et odit itaque.", - "rationale": "Ad dolore optio. Qui rerum at. Fugit ut ex.", - "description": "Aut nobis minima. Vero unde corrupti. Voluptas eius ut.", + "id": "1feacc13-8b10-4167-8a62-6aa817c65b26", + "ref_id": "xccdf_org.ssgproject.content_rule_group_5a320bf7d22cc9510f25d52606e35b92", + "title": "Quas et autem distinctio.", + "rationale": "Qui corporis beatae. Non qui non. Porro sed et.", + "description": "Qui veritatis explicabo. Error sint id. Adipisci ipsum velit.", "precedence": null, "type": "rule_group" }, { - "id": "39e62f57-96cf-4d93-8efe-195476f8c86a", - "ref_id": "xccdf_org.ssgproject.content_rule_group_530b6e68206c27d4c9ce66d4e6f422cc", - "title": "Ut in molestiae facilis.", - "rationale": "Fugit adipisci unde. Corrupti quia earum. Natus eos et.", - "description": "Vero accusamus ipsum. Recusandae tenetur sit. Eligendi mollitia voluptatum.", + "id": "39999617-ebaf-4618-a5f1-3a1aa6a393eb", + "ref_id": "xccdf_org.ssgproject.content_rule_group_b39af30abaa2d59e45f2d2d605eeae15", + "title": "Ut quidem occaecati fuga.", + "rationale": "Eum soluta repudiandae. Deserunt voluptatum est. Inventore et porro.", + "description": "Consequuntur est omnis. Occaecati qui dicta. Quidem et qui.", "precedence": null, "type": "rule_group" }, { - "id": "3b3de9e4-b6fe-4305-b4fa-e4445dc8e791", - "ref_id": "xccdf_org.ssgproject.content_rule_group_fa505ea1460296c58d3d3c1fbb870193", - "title": "Vel ea eaque voluptas.", - "rationale": "Cumque voluptatibus ex. Architecto voluptatem veritatis. Est quaerat quis.", - "description": "Quam non qui. Sed vitae atque. Nemo ex laboriosam.", + "id": "4d8292f3-4b96-45f0-b87b-ef4857d6c998", + "ref_id": "xccdf_org.ssgproject.content_rule_group_90cb0e00c1b28921e7f0347a9832bc58", + "title": "Fugit et mollitia dolores.", + "rationale": "Adipisci et ut. Commodi et iste. Quasi qui nihil.", + "description": "Iusto voluptas qui. Ea inventore ut. Et qui commodi.", "precedence": null, "type": "rule_group" }, { - "id": "3cbf77a2-2eae-4efa-af25-70f38201e2cd", - "ref_id": "xccdf_org.ssgproject.content_rule_group_013f40c819caacae687957d2a6684261", - "title": "Sit laudantium cumque animi.", - "rationale": "Laborum enim aliquid. Modi voluptates dolores. Eum omnis sequi.", - "description": "Et fuga voluptatem. Assumenda expedita ut. Harum beatae et.", + "id": "5179d621-5596-45f6-a219-6a29005153e2", + "ref_id": "xccdf_org.ssgproject.content_rule_group_055d04e5d123ad93c597ccf3a956563c", + "title": "Aliquid est nisi consequuntur.", + "rationale": "Maiores et ut. Assumenda et voluptatem. Architecto sed eos.", + "description": "Ad sequi accusantium. Fugit sint et. Quidem facere assumenda.", "precedence": null, "type": "rule_group" }, { - "id": "3eee3cb7-407a-4f52-8385-42acf4f44303", - "ref_id": "xccdf_org.ssgproject.content_rule_group_220ca8ed21fad666ffbfb55cfe4ff6d2", - "title": "Eius numquam qui est.", - "rationale": "Magni totam est. Itaque nihil debitis. Ratione in odio.", - "description": "Cupiditate voluptate iusto. Nihil consequatur fugiat. Quidem maxime nobis.", + "id": "58ae9054-8b10-41fe-a3ca-074f45cdc15b", + "ref_id": "xccdf_org.ssgproject.content_rule_group_61434afd0d2661616c58a38db4e434d0", + "title": "Eos ut illo et.", + "rationale": "Nam dolorum rerum. Dolorum sunt doloribus. Omnis dolore quos.", + "description": "Aliquid debitis quibusdam. Dolorem doloremque aliquam. Non qui consequatur.", "precedence": null, "type": "rule_group" } @@ -1642,9 +1651,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/e5c50c2a-12e2-4407-b758-80f29dfaf263/rule_groups?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/e5c50c2a-12e2-4407-b758-80f29dfaf263/rule_groups?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/e5c50c2a-12e2-4407-b758-80f29dfaf263/rule_groups?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/35e7d22c-7fe6-42f2-80e2-7a7e4eb673aa/rule_groups?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/35e7d22c-7fe6-42f2-80e2-7a7e4eb673aa/rule_groups?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/35e7d22c-7fe6-42f2-80e2-7a7e4eb673aa/rule_groups?limit=10&offset=10" } }, "summary": "", @@ -1654,92 +1663,92 @@ "value": { "data": [ { - "id": "1c5862bf-f4b9-4f60-8c33-5ebeb6e46ce6", - "ref_id": "xccdf_org.ssgproject.content_rule_group_c0269240d4f9be5dd0800ee2302680b2", - "title": "Corrupti est ea sapiente.", - "rationale": "Dolores ut et. Qui nobis iusto. Iusto amet sit.", - "description": "Error itaque dolores. Sequi in reprehenderit. Est architecto aliquid.", + "id": "0a5cb594-c240-47dc-8da9-79b707afad1d", + "ref_id": "xccdf_org.ssgproject.content_rule_group_bcc5cb8d7f994160b6f900012a04c1c1", + "title": "Aperiam recusandae totam error.", + "rationale": "Aut sint consequuntur. Mollitia reprehenderit illum. Deleniti quos mollitia.", + "description": "Perspiciatis rem ut. Eum cum vero. Fugit autem quia.", "precedence": null, "type": "rule_group" }, { - "id": "33ef30ac-5e02-48bd-a9f3-6bafcd014525", - "ref_id": "xccdf_org.ssgproject.content_rule_group_114ef16b3afec73b1d2434ecb4711dc7", - "title": "Aperiam ducimus sed nobis.", - "rationale": "Temporibus tempore sint. Accusantium omnis eligendi. Consequuntur perferendis nihil.", - "description": "Nostrum sed est. Voluptate assumenda voluptas. Repudiandae qui assumenda.", + "id": "0be45642-8c32-4ef9-ad23-fff5645858f2", + "ref_id": "xccdf_org.ssgproject.content_rule_group_c9ac1cc3504102726a12a3da605372a1", + "title": "Laboriosam assumenda animi temporibus.", + "rationale": "Illo vel quia. Perspiciatis minima adipisci. Culpa illo hic.", + "description": "Sint et repellendus. Suscipit ea iste. Delectus et quos.", "precedence": null, "type": "rule_group" }, { - "id": "3d5f4bb3-e5d0-4568-87cd-5116aaa8145c", - "ref_id": "xccdf_org.ssgproject.content_rule_group_7bee2fc4d8cdb8745adf5a19b6696470", - "title": "Quia dolorem perspiciatis consequatur.", - "rationale": "Fuga ab et. In fugit consectetur. Et ut labore.", - "description": "Pariatur atque et. Sunt quisquam iste. Aspernatur magnam omnis.", + "id": "0e1ddf5f-7d64-4bbd-b9dc-add91ecf22e9", + "ref_id": "xccdf_org.ssgproject.content_rule_group_f14bdfe4c15cbe2c1992856679ae01a0", + "title": "Dolore assumenda et corporis.", + "rationale": "Quia tenetur delectus. Inventore sed et. Ratione ut expedita.", + "description": "Et officiis ut. Laborum aut pariatur. Eaque voluptatum beatae.", "precedence": null, "type": "rule_group" }, { - "id": "3f6df161-f097-44cd-9aae-0c263a6f61bf", - "ref_id": "xccdf_org.ssgproject.content_rule_group_526ca8a2e0d1c3b7613a63773eda58d1", - "title": "Dolor sit iusto ut.", - "rationale": "Ut sit officiis. Voluptate repellat reiciendis. Aspernatur sequi nostrum.", - "description": "Quibusdam in veritatis. Sapiente quod quisquam. Optio doloribus ut.", + "id": "0ecccb5d-90f7-440e-924f-cffbb77df16f", + "ref_id": "xccdf_org.ssgproject.content_rule_group_546287567ecc9ea71e6edc64844b29e6", + "title": "Unde officiis velit ad.", + "rationale": "Est nisi ipsa. Vel ut totam. Voluptatum est eum.", + "description": "Qui id natus. Enim ut quia. Ratione minus dolores.", "precedence": null, "type": "rule_group" }, { - "id": "4018452c-395a-4b9e-8f44-b096870f0dc3", - "ref_id": "xccdf_org.ssgproject.content_rule_group_e3285e1d89ac1b09758603a228680854", - "title": "Eos maiores perferendis tenetur.", - "rationale": "Sint et velit. Nesciunt voluptatibus cupiditate. Voluptatem recusandae quidem.", - "description": "Cupiditate quidem laudantium. Consequatur nisi porro. Itaque fugit qui.", + "id": "15d64376-3b1d-41e2-9697-af3f49946345", + "ref_id": "xccdf_org.ssgproject.content_rule_group_6e3e9e10ae582bef09227217de377bba", + "title": "Quod molestias qui culpa.", + "rationale": "Maiores aut sed. Numquam sit quia. Beatae delectus est.", + "description": "Sunt consequatur aut. Quia sapiente sequi. Enim sed ut.", "precedence": null, "type": "rule_group" }, { - "id": "45ed4138-2b89-4a24-a09d-b66268cff39b", - "ref_id": "xccdf_org.ssgproject.content_rule_group_3863e754777c90fffeaba24181c536f3", - "title": "Et sunt enim id.", - "rationale": "Laboriosam esse fugiat. Doloribus possimus iure. Exercitationem consequatur enim.", - "description": "Aliquam qui laudantium. Qui voluptatum error. Animi dolor deleniti.", + "id": "16bb9e8a-cccc-4784-8503-05d4b0d4d1a4", + "ref_id": "xccdf_org.ssgproject.content_rule_group_8a0f6189fbca5bd81cdc753b42cebb8e", + "title": "Quo dolore perferendis esse.", + "rationale": "Nisi ducimus odit. Dignissimos expedita sunt. Nemo id aut.", + "description": "Suscipit rerum accusamus. Veritatis pariatur voluptas. Vero et esse.", "precedence": null, "type": "rule_group" }, { - "id": "65ec550c-cead-44f2-befd-c488429211f9", - "ref_id": "xccdf_org.ssgproject.content_rule_group_55ec0a8e06b384f42db83601bba9297e", - "title": "Ratione accusamus consectetur reiciendis.", - "rationale": "Odit necessitatibus beatae. Eaque doloribus officia. Harum molestiae et.", - "description": "Hic impedit voluptatem. Natus sed libero. Placeat aspernatur sint.", + "id": "1fd88f21-f91c-4f86-8d56-652a7c21cf76", + "ref_id": "xccdf_org.ssgproject.content_rule_group_dcb3811a27e69f6586750ec0b36dae79", + "title": "Dolorem quae est ab.", + "rationale": "Rerum quam itaque. Beatae tempora eos. Accusantium dicta alias.", + "description": "Numquam quam saepe. Quaerat sit debitis. Modi reprehenderit sed.", "precedence": null, "type": "rule_group" }, { - "id": "6c767d2a-f88e-4870-86d8-c38942daf7b4", - "ref_id": "xccdf_org.ssgproject.content_rule_group_76d784605bc5d91ccfe8058ffbe946ff", - "title": "Velit deleniti dignissimos maxime.", - "rationale": "Est doloribus voluptatem. Et dolorem rerum. Dignissimos et id.", - "description": "Reiciendis natus reprehenderit. Inventore ipsum amet. Beatae dicta ea.", + "id": "36cf1078-c23a-43e2-b5e5-fe3e25c0ed6c", + "ref_id": "xccdf_org.ssgproject.content_rule_group_73f30a879c6763bd421092dbaf77acbe", + "title": "Nisi optio earum fugit.", + "rationale": "Quia eum deserunt. Laborum sint et. Cupiditate suscipit ullam.", + "description": "Quia repellat ipsum. Maiores adipisci sunt. Suscipit nesciunt et.", "precedence": null, "type": "rule_group" }, { - "id": "755395f1-7254-4b4d-b53b-a0c54261d92e", - "ref_id": "xccdf_org.ssgproject.content_rule_group_178eea87cb8d96965a91093b5d7fc8c8", - "title": "Vel blanditiis nam et.", - "rationale": "Exercitationem architecto cum. Sunt et voluptas. Recusandae itaque nobis.", - "description": "Omnis doloribus consequuntur. Atque et minima. Quia velit consequuntur.", + "id": "3ad5a4fb-bed4-4c43-81a5-6afb9b734b55", + "ref_id": "xccdf_org.ssgproject.content_rule_group_eff5374b0e286b117c584bba43557f1f", + "title": "Dolor veritatis nam minima.", + "rationale": "Corporis adipisci sed. Ut explicabo aut. Sit quo iure.", + "description": "Omnis et itaque. Exercitationem quia nam. Rerum laborum iusto.", "precedence": null, "type": "rule_group" }, { - "id": "7a8b85cb-5990-426b-ae73-a215a13dc6f2", - "ref_id": "xccdf_org.ssgproject.content_rule_group_ac3be11b7cf7bf2df6f1a6679b07b494", - "title": "Qui voluptatem et vitae.", - "rationale": "Et exercitationem ut. Debitis quia ipsa. Laudantium accusantium enim.", - "description": "Vel repellendus sit. Hic molestiae temporibus. Et dignissimos error.", + "id": "3b839281-3f81-4847-ac0f-935e06b10b98", + "ref_id": "xccdf_org.ssgproject.content_rule_group_9b510bc2e0ecf331fc56271cb54224e4", + "title": "Accusamus aut cum sed.", + "rationale": "Magnam dolor officiis. Dolorem ipsa delectus. Quidem fugiat labore.", + "description": "Qui ex voluptatum. Quis quis officiis. Quo enim eaque.", "precedence": null, "type": "rule_group" } @@ -1751,9 +1760,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/924f6626-b379-4def-8578-6ddb6e34542d/rule_groups?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/924f6626-b379-4def-8578-6ddb6e34542d/rule_groups?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/924f6626-b379-4def-8578-6ddb6e34542d/rule_groups?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/fe02f60f-d037-43ac-8cff-1d67ed6f2199/rule_groups?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/fe02f60f-d037-43ac-8cff-1d67ed6f2199/rule_groups?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/fe02f60f-d037-43ac-8cff-1d67ed6f2199/rule_groups?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -1860,11 +1869,11 @@ "Returns a Rule Group": { "value": { "data": { - "id": "8078fea2-1262-45e1-b0ef-6b36ff951b61", - "ref_id": "xccdf_org.ssgproject.content_rule_group_51904ca0d086c86740ec3b273c5c9eaf", - "title": "Explicabo non velit quae.", - "rationale": "Voluptatem numquam consequuntur. Vitae voluptatum ut. Cumque temporibus unde.", - "description": "Voluptas nihil inventore. Est accusamus autem. Voluptatem velit officia.", + "id": "0cab0ff2-29b8-44ea-bd8f-d0c96051e5a0", + "ref_id": "xccdf_org.ssgproject.content_rule_group_c1c7b46b81b9cbf7d604cafe007ec195", + "title": "Impedit nobis cupiditate suscipit.", + "rationale": "Corrupti doloribus placeat. Eius non voluptates. Voluptates voluptatem ipsum.", + "description": "Sit accusamus autem. Quo sit fugit. Et et aut.", "precedence": null, "type": "rule_group" } @@ -1897,7 +1906,7 @@ "Description of an error when requesting a non-existing Rule Group": { "value": { "errors": [ - "V2::RuleGroup not found with ID 0c13b1f5-aa3f-472f-8e5e-3ff86e6b776e" + "V2::RuleGroup not found with ID c2ef33cc-2032-4bcd-9654-1f2abbf05a11" ] }, "summary": "", @@ -2003,103 +2012,278 @@ "value": { "data": [ { - "id": "06e9af8f-87e4-4878-9b67-22fa5810df37", - "ref_id": "xccdf_org.ssgproject.content_rule_a776ae72709cf8bf0a624b0653da4efe", - "title": "Et totam deleniti et.", - "rationale": "Non voluptates esse. Consequatur esse sed. Recusandae repellendus omnis.", - "description": "Alias aut expedita. Excepturi nesciunt nostrum. Quis voluptatum excepturi.", + "id": "0172ad4c-7a2b-48bb-9bd9-8ab29544d4bd", + "ref_id": "xccdf_org.ssgproject.content_rule_b1c7c79b0b7f01716592d3907b53c4a9", + "title": "Ut perspiciatis quia sed.", + "rationale": "Et consequatur odit. Eum aut et. Aspernatur nisi quo.", + "description": "Illum similique minima. Laudantium vel esse. Tempore esse voluptates.", "severity": "low", - "precedence": 5670, + "precedence": 9877, + "identifier": { + "href": "http://schimmel.example/georgine", + "label": "Togo Goodbody" + }, + "references": [ + { + "href": "http://koelpin.test/mindy", + "label": "Pansy Baggins" + }, + { + "href": "http://smitham-kirlin.test/whitney_mueller", + "label": "Hunthor" + }, + { + "href": "http://walter.example/consuelo_morar", + "label": "Angamaitë" + }, + { + "href": "http://kessler.example/albertine.dickens", + "label": "Gilly Brownlock" + }, + { + "href": "http://hilpert-jacobs.example/daniela", + "label": "Forthwini" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "0ec986e7-d934-4eb2-805f-7746ebc321a2", - "ref_id": "xccdf_org.ssgproject.content_rule_621cc1ee26ab8d1da3bf891d4bfcb5a1", - "title": "Praesentium nostrum quaerat sit.", - "rationale": "Qui quia corrupti. Eum doloribus dolorem. Explicabo atque aut.", - "description": "Aut sed et. Modi consectetur sed. Ut odit commodi.", + "id": "078d831e-8db8-4bcc-8132-f899be6cbbd3", + "ref_id": "xccdf_org.ssgproject.content_rule_19fdc201f453cd7c2bae0e8c11d60053", + "title": "Ullam quia alias nemo.", + "rationale": "Veniam voluptas neque. Non qui ipsam. Doloremque numquam natus.", + "description": "Provident corrupti a. Dolorum commodi tempore. Fugit sed voluptatibus.", "severity": "low", - "precedence": 203, + "precedence": 3273, + "identifier": { + "href": "http://thompson.example/eloy_hane", + "label": "Erestor" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "148110fd-324a-4aac-a43d-dece8065d37a", - "ref_id": "xccdf_org.ssgproject.content_rule_1fd90a7ba69e15b3bc424a46399b9d4e", - "title": "Illum est exercitationem aut.", - "rationale": "In perspiciatis dolorum. Vel nihil ipsum. Ad amet expedita.", - "description": "Ipsam quia veniam. Voluptatibus est dolor. Et iste at.", - "severity": "low", - "precedence": 6163, + "id": "0eb2bbb7-b445-493b-8771-fdd76441f549", + "ref_id": "xccdf_org.ssgproject.content_rule_2da3e2c9f62b2868c6a8511b6676d42c", + "title": "Id velit vitae debitis.", + "rationale": "Illo explicabo ullam. Recusandae consequatur eius. Eos quisquam sed.", + "description": "Earum repellat autem. Et iste qui. Ad ex quisquam.", + "severity": "medium", + "precedence": 7624, + "identifier": { + "href": "http://thiel.test/grace.dare", + "label": "Tar-Telemmaitë" + }, + "references": [ + { + "href": "http://schumm.example/phil", + "label": "Estella Bolger" + }, + { + "href": "http://rutherford.test/long", + "label": "Bucca of the Marish" + }, + { + "href": "http://douglas.example/hector.bosco", + "label": "Belecthor" + }, + { + "href": "http://hermiston.example/tricia_gislason", + "label": "Voronwë" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "1c0515c6-1ffe-4864-9e4c-11bdd0763ae9", - "ref_id": "xccdf_org.ssgproject.content_rule_0423def2689cac835a833e330f21aa69", - "title": "Distinctio quis accusantium cupiditate.", - "rationale": "Totam quia in. Commodi eaque nemo. Iste necessitatibus in.", - "description": "Voluptas facere reprehenderit. Et temporibus amet. Adipisci itaque aut.", - "severity": "medium", - "precedence": 6482, + "id": "17dcfa41-93fe-490d-8c1f-a2881bcade14", + "ref_id": "xccdf_org.ssgproject.content_rule_6902df6b52dcedd743cfea3d42fea4e0", + "title": "Est nobis amet libero.", + "rationale": "Rerum consequuntur sit. Rerum laborum totam. Non distinctio quod.", + "description": "Accusamus eligendi quidem. Eveniet iste occaecati. Et soluta sunt.", + "severity": "low", + "precedence": 8191, + "identifier": { + "href": "http://halvorson-quitzon.test/claretha.lebsack", + "label": "Inzilbêth" + }, + "references": [ + { + "href": "http://schmitt.example/brandon_hills", + "label": "Thrór" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "20ad073f-7834-4e28-a993-c9f8daab00e0", - "ref_id": "xccdf_org.ssgproject.content_rule_b667a0a4dd3f68934026c31ffb43176c", - "title": "Quos nemo sit saepe.", - "rationale": "Esse inventore et. Esse qui laudantium. Facilis dolores nemo.", - "description": "Accusamus vitae facere. Porro ratione sapiente. Sunt quia accusantium.", - "severity": "high", - "precedence": 916, + "id": "24db549a-5fbd-4d06-b744-c444f6ba0f0a", + "ref_id": "xccdf_org.ssgproject.content_rule_4e53783d64b7d2a3f04ff4470d4e8eb8", + "title": "Et dolore adipisci porro.", + "rationale": "Voluptatum molestiae temporibus. Veritatis iusto sed. Est iste optio.", + "description": "Repellat enim libero. Vitae dignissimos saepe. Dolor repellendus autem.", + "severity": "low", + "precedence": 3433, + "identifier": { + "href": "http://reichert.test/clemente", + "label": "Saradoc Brandybuck" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "21822821-fd62-4dca-96fe-173cd2b59b0e", - "ref_id": "xccdf_org.ssgproject.content_rule_0f95d960676fdccea3c8f7574a5395c2", - "title": "Velit ut quis aliquam.", - "rationale": "Magnam sint nostrum. Et quo quisquam. Corporis quos vel.", - "description": "Rerum rerum culpa. Saepe rem aspernatur. Sed vero soluta.", - "severity": "medium", - "precedence": 6132, + "id": "264d8c4c-ee87-499e-adce-e8fc1e04891b", + "ref_id": "xccdf_org.ssgproject.content_rule_1690761a83a15e202997d5e581b2d2a7", + "title": "Laboriosam sunt qui at.", + "rationale": "Cum tempora eos. Ex dolor quis. Possimus ut minima.", + "description": "Expedita fuga et. Sit id et. Libero ab praesentium.", + "severity": "high", + "precedence": 3506, + "identifier": { + "href": "http://hilpert.example/brendon.bahringer", + "label": "Rosamunda Took" + }, + "references": [ + { + "href": "http://koepp.example/lincoln", + "label": "Andróg" + }, + { + "href": "http://marks.example/palmer_ryan", + "label": "Gothmog" + }, + { + "href": "http://schmeler-goldner.example/roderick.baumbach", + "label": "Laura Grubb" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "3e546255-3ed9-476b-926c-32a91609cda4", - "ref_id": "xccdf_org.ssgproject.content_rule_0e2153f09913558cc998a5ea565b1118", - "title": "Nostrum et saepe non.", - "rationale": "Mollitia consequatur voluptas. Numquam assumenda cum. Autem provident qui.", - "description": "Rerum vero praesentium. Molestiae quia laboriosam. Neque illum sit.", + "id": "31c504ed-2421-4fe1-834d-c132a7993d21", + "ref_id": "xccdf_org.ssgproject.content_rule_628f964999e0d3f6bf742606fb45b72b", + "title": "Animi aut sunt et.", + "rationale": "Corporis distinctio expedita. Exercitationem nostrum et. Officia et provident.", + "description": "Suscipit sit voluptatum. Rerum reiciendis aperiam. Saepe inventore velit.", "severity": "medium", - "precedence": 9042, + "precedence": 8076, + "identifier": { + "href": "http://hand-nader.test/ashton.parker", + "label": "Peregrin Took" + }, + "references": [ + { + "href": "http://hagenes.test/forrest", + "label": "Cotman" + }, + { + "href": "http://skiles-legros.example/andreas", + "label": "Erkenbrand" + }, + { + "href": "http://hintz.test/thomas", + "label": "Tar-Míriel" + }, + { + "href": "http://stiedemann-mayert.test/ike", + "label": "Oromendil" + }, + { + "href": "http://hirthe-zboncak.example/camie_wiegand", + "label": "Will Whitfoot" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "42ef431d-5fdd-4e8e-81d6-60732520d529", - "ref_id": "xccdf_org.ssgproject.content_rule_4c542db90a3617de7fe5c11ac33b39be", - "title": "Adipisci illum voluptatum neque.", - "rationale": "Ab aliquid illo. Rerum soluta ullam. Earum sapiente maiores.", - "description": "Voluptas autem hic. Dolores necessitatibus perferendis. Quisquam quaerat ea.", - "severity": "high", - "precedence": 9806, + "id": "39b9a2d7-6b3a-4c7d-9d98-6e725ddd26b0", + "ref_id": "xccdf_org.ssgproject.content_rule_52360f6171f7d78eca2c6befd2f132a6", + "title": "Quae qui voluptatem occaecati.", + "rationale": "Et accusantium dolores. Dolor id vel. Quaerat numquam commodi.", + "description": "Eos accusantium magni. Animi perferendis dolor. Nihil cupiditate temporibus.", + "severity": "medium", + "precedence": 2674, + "identifier": { + "href": "http://padberg.test/shenita.harber", + "label": "Merimas Brandybuck" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "5a14eba5-3c6b-4a7d-8dba-871ddb9372b7", - "ref_id": "xccdf_org.ssgproject.content_rule_3351d25d593ce11d09c705735f43c71f", - "title": "Voluptates dolores facilis non.", - "rationale": "Dolorem aut aliquid. Recusandae provident voluptates. Voluptate reiciendis ipsum.", - "description": "Similique aliquid in. Rerum nulla dolorem. Quia officia saepe.", - "severity": "high", - "precedence": 8407, + "id": "48009ec4-5f54-40c5-86ef-b31739e08fde", + "ref_id": "xccdf_org.ssgproject.content_rule_4ee80fc5f33c1baef7e66b0adb4c2c73", + "title": "Rerum quasi minus sit.", + "rationale": "Optio fugit molestias. Nesciunt omnis earum. Officiis rem ullam.", + "description": "Ut consequatur necessitatibus. Ducimus non molestias. Nisi voluptatem laboriosam.", + "severity": "medium", + "precedence": 2444, + "identifier": { + "href": "http://berge.example/demarcus_tromp", + "label": "Henderch" + }, + "references": [ + { + "href": "http://sauer.example/debbi_simonis", + "label": "Gilbarad" + }, + { + "href": "http://dach.example/brian", + "label": "Pervinca Took" + }, + { + "href": "http://dickens.example/janine.ruecker", + "label": "Balin" + }, + { + "href": "http://haag.test/bonita", + "label": "Great Eagle" + }, + { + "href": "http://hilll.example/shamika_schaden", + "label": "Belegund" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "679c69dd-1efc-46e8-8fc6-19b9027c1aed", - "ref_id": "xccdf_org.ssgproject.content_rule_600fa4fc24d514f1271720ca8a210d3e", - "title": "Reprehenderit veritatis quo dolor.", - "rationale": "Aut eos qui. Aliquid iste fugit. Quia tempore eos.", - "description": "Fugit repudiandae impedit. Cum quam ducimus. Non ut itaque.", - "severity": "high", - "precedence": 7166, + "id": "4a940f81-948a-4dc8-a3b3-5fa9b57a9df4", + "ref_id": "xccdf_org.ssgproject.content_rule_c5bc5066a700c2ca4aa17ab8adaa0e4b", + "title": "Eos architecto culpa accusantium.", + "rationale": "Excepturi et praesentium. Tempore suscipit repellat. Ipsam ut autem.", + "description": "Quasi facere similique. Aut eaque possimus. In minus et.", + "severity": "medium", + "precedence": 141, + "identifier": { + "href": "http://predovic.example/chung_kshlerin", + "label": "Boromir" + }, + "references": [ + { + "href": "http://konopelski.example/eliana", + "label": "Treebeard" + }, + { + "href": "http://lueilwitz-rolfson.test/weston.mueller", + "label": "Gilbarad" + }, + { + "href": "http://lehner.example/twana", + "label": "Mablung" + }, + { + "href": "http://bergstrom.test/lino", + "label": "Odovacar Bolger" + } + ], + "value_checks": null, "type": "rule" } ], @@ -2109,9 +2293,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/c000eb4d-a695-4269-95a6-7305aac43403/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/c000eb4d-a695-4269-95a6-7305aac43403/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/c000eb4d-a695-4269-95a6-7305aac43403/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/a0dd30ea-9b00-4bcc-abf5-80ce83f99996/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/a0dd30ea-9b00-4bcc-abf5-80ce83f99996/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/a0dd30ea-9b00-4bcc-abf5-80ce83f99996/rules?limit=10&offset=10" } }, "summary": "", @@ -2121,103 +2305,263 @@ "value": { "data": [ { - "id": "14667b71-e454-44ca-ae21-ed0a94fa220b", - "ref_id": "xccdf_org.ssgproject.content_rule_f08c9a26cdf2426e7acf44dc820fc014", - "title": "Odit nisi facere blanditiis.", - "rationale": "Et ipsum ut. Architecto atque qui. Voluptas occaecati voluptatum.", - "description": "Rem beatae voluptatem. Sit unde minima. Aut odit consequatur.", - "severity": "low", - "precedence": 355, + "id": "e50f6ba2-4d92-41c8-becd-6563211bd256", + "ref_id": "xccdf_org.ssgproject.content_rule_086db4e21fdc3c0201d4725ad87fbb01", + "title": "Placeat cupiditate velit veniam.", + "rationale": "Et tenetur ut. Sed magnam deleniti. Consequatur ipsam nobis.", + "description": "Qui asperiores quidem. Dolorem magni minus. Et dolor quis.", + "severity": "medium", + "precedence": 53, + "identifier": { + "href": "http://mccullough-west.test/grady", + "label": "Hallatan" + }, + "references": [ + { + "href": "http://wolf.test/dee", + "label": "Dáin Ironfoot" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "2b328509-8eca-4919-8c14-15cb2f498eaa", - "ref_id": "xccdf_org.ssgproject.content_rule_a32f4d8498ef38e2fd3984294580279d", - "title": "Alias fugit dolores tempora.", - "rationale": "Voluptates esse et. Commodi consectetur cumque. Consequatur impedit eum.", - "description": "Voluptate voluptatem numquam. Nesciunt voluptas velit. Neque assumenda enim.", - "severity": "high", - "precedence": 655, + "id": "7effe643-503c-423f-800d-b277cae8013e", + "ref_id": "xccdf_org.ssgproject.content_rule_124b4581f586745c9991f425de6b16fa", + "title": "Voluptas qui occaecati ut.", + "rationale": "Expedita doloremque consequatur. Placeat cum officiis. Id nihil assumenda.", + "description": "Error quam ducimus. Rerum aut aut. Ut minus id.", + "severity": "medium", + "precedence": 538, + "identifier": { + "href": "http://kautzer-lowe.example/judi_kemmer", + "label": "Ardamir" + }, + "references": [ + { + "href": "http://beahan-denesik.test/mollie", + "label": "Galadriel" + }, + { + "href": "http://green-gibson.test/burl", + "label": "Reginard Took" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "8f0d7d3b-db8e-4f9d-bc10-887e2aa2a7dd", - "ref_id": "xccdf_org.ssgproject.content_rule_844c1f5ef5a13dc2496e9d77122d9fe9", - "title": "Fuga ut earum quisquam.", - "rationale": "Porro repudiandae dolores. Commodi et iusto. Aspernatur ut quis.", - "description": "Dolores molestiae esse. Asperiores eum alias. Perspiciatis omnis sapiente.", - "severity": "high", - "precedence": 1637, + "id": "1f29578b-8c23-4630-b0a1-3306c046ed64", + "ref_id": "xccdf_org.ssgproject.content_rule_3718ea1533bebec001e1add98080b811", + "title": "Quasi odio suscipit tenetur.", + "rationale": "Odio ea modi. Aut aspernatur laborum. Quos architecto aut.", + "description": "Quo voluptatem blanditiis. Consequatur et et. Eligendi rerum in.", + "severity": "medium", + "precedence": 732, + "identifier": { + "href": "http://greenholt.test/maryjane", + "label": "Grithnir" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "9f41fca9-a7b3-424d-a31f-65e7f1fd7f3e", - "ref_id": "xccdf_org.ssgproject.content_rule_2a4613033c7359966692e4253229b69b", - "title": "Omnis impedit cum nihil.", - "rationale": "Exercitationem perferendis earum. Quis dolor quas. Enim et earum.", - "description": "Natus laboriosam in. Recusandae facilis inventore. Enim dolore vel.", + "id": "73621f7c-0353-494b-a268-54cb33d44f85", + "ref_id": "xccdf_org.ssgproject.content_rule_350a135c13bff8d8e4bf2ed7981916b1", + "title": "Dolorem cupiditate ut perferendis.", + "rationale": "Quod corrupti sit. Iste temporibus enim. Nam numquam modi.", + "description": "Sed qui non. Vel repellendus quia. Accusamus qui itaque.", "severity": "medium", - "precedence": 2607, + "precedence": 1841, + "identifier": { + "href": "http://littel-botsford.test/tori", + "label": "Egalmoth" + }, + "references": [ + { + "href": "http://kshlerin-hayes.test/leopoldo_treutel", + "label": "Poldor" + }, + { + "href": "http://emmerich.example/lane", + "label": "Finrod" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "fe13f4db-5603-4af7-a451-57c4c306f5a5", - "ref_id": "xccdf_org.ssgproject.content_rule_f3bdf0d8c3f3ea70859d6a2d87acb440", - "title": "Quo dolorem quia aliquid.", - "rationale": "Exercitationem odit aut. Fugiat odit est. Nihil tenetur optio.", - "description": "Fugit maxime et. Aut cum eum. Neque qui enim.", - "severity": "low", - "precedence": 2822, + "id": "0da7efbe-e0d4-4ec7-8b03-bdd3115b362e", + "ref_id": "xccdf_org.ssgproject.content_rule_7ce33eb636b1d259364efc222c25c639", + "title": "Et nobis voluptas vel.", + "rationale": "Dolorem rem sed. Explicabo eaque asperiores. Sunt architecto autem.", + "description": "Mollitia odit earum. Atque provident perspiciatis. Eum iure aliquam.", + "severity": "high", + "precedence": 2095, + "identifier": { + "href": "http://fritsch.test/errol_funk", + "label": "Nimrodel" + }, + "references": [ + { + "href": "http://effertz.test/fred.corwin", + "label": "Aldamir" + }, + { + "href": "http://medhurst.test/linsey_jacobi", + "label": "Dáin" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "4a31311d-887d-4add-9e54-9b8dca3a3122", - "ref_id": "xccdf_org.ssgproject.content_rule_4e297eb9cfba7e0f89801e257286ba52", - "title": "Nihil eos accusantium harum.", - "rationale": "Enim dolores voluptatem. Blanditiis voluptatibus ut. Laboriosam neque hic.", - "description": "Qui qui corporis. Tempore autem impedit. Fuga eaque quia.", + "id": "305d8f41-2895-4432-8efa-2db1c37c0f00", + "ref_id": "xccdf_org.ssgproject.content_rule_1b73abe9a0f2c5f19809f5eff3623ccc", + "title": "Eligendi qui minus accusamus.", + "rationale": "Doloribus cumque eos. Accusantium in et. Ut excepturi dolore.", + "description": "Nobis consequatur ut. Quibusdam qui non. Similique aliquam non.", "severity": "medium", - "precedence": 3719, + "precedence": 2800, + "identifier": { + "href": "http://schiller.test/cristin", + "label": "Witch-king" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "fdc9dd6a-80fd-4312-91d9-ba57a1bc2d37", - "ref_id": "xccdf_org.ssgproject.content_rule_4c57d18bd39e712ee3cff9fbeee15a3c", - "title": "Deleniti dolorem enim quod.", - "rationale": "Quod consequatur repudiandae. Sed nobis consequuntur. Amet illum saepe.", - "description": "Dicta vitae exercitationem. Non ab rem. Voluptatem saepe accusantium.", + "id": "1a749d35-2ab9-4c1c-8f78-f31775e6f5a4", + "ref_id": "xccdf_org.ssgproject.content_rule_9319805998cf2587acf2b35a15903207", + "title": "Qui qui tempora et.", + "rationale": "Itaque labore consequatur. Suscipit nihil excepturi. Totam expedita illo.", + "description": "Deleniti magni delectus. Quia quia possimus. Rem magnam deleniti.", "severity": "high", - "precedence": 3876, + "precedence": 3049, + "identifier": { + "href": "http://effertz.test/joy.rutherford", + "label": "Halfred of Overhill" + }, + "references": [ + { + "href": "http://boyle.example/iva", + "label": "Elendil" + }, + { + "href": "http://jaskolski.example/onita", + "label": "Gundolpho Bolger" + }, + { + "href": "http://lakin.test/manda.ondricka", + "label": "Mentha Brandybuck" + }, + { + "href": "http://mraz-renner.test/chung", + "label": "Eglantine Banks" + }, + { + "href": "http://bernhard.test/melonie", + "label": "Agathor" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "1e29c8db-b8ad-428b-a2d8-c4048ec126b3", - "ref_id": "xccdf_org.ssgproject.content_rule_4e852ad50518bf0df39789a3e5be2c79", - "title": "Ut impedit aspernatur eos.", - "rationale": "Optio vitae ratione. Reiciendis illum deserunt. Consequatur sint molestiae.", - "description": "Qui et ea. Laborum placeat praesentium. Ea aut minima.", - "severity": "low", - "precedence": 4122, + "id": "bb84f03f-3f59-4448-a03c-016e054b846d", + "ref_id": "xccdf_org.ssgproject.content_rule_ae10d0830384bef19d4a693621124ebf", + "title": "Accusamus quo animi pariatur.", + "rationale": "Amet est dolor. Dolorum ullam neque. Reiciendis dicta et.", + "description": "Ea quis voluptate. Eveniet ut voluptatem. Corporis repudiandae et.", + "severity": "high", + "precedence": 3652, + "identifier": { + "href": "http://quitzon-bernier.example/mose_wilkinson", + "label": "Galion" + }, + "references": [ + { + "href": "http://abshire.example/morgan_hansen", + "label": "Fíriel" + }, + { + "href": "http://pagac.test/blanca.schroeder", + "label": "Mungo Baggins" + }, + { + "href": "http://cummings.test/derick", + "label": "Elendil" + }, + { + "href": "http://willms.example/zackary_grimes", + "label": "Linda Baggins" + }, + { + "href": "http://osinski.test/colette_aufderhar", + "label": "Hildibrand Took" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "ca380035-778e-4d3f-9c86-23e22cc1d312", - "ref_id": "xccdf_org.ssgproject.content_rule_2cb19428833a3a0a72750b25224b7cd7", - "title": "Quibusdam dolor assumenda enim.", - "rationale": "Ex ab itaque. Nesciunt ea eum. Aliquam earum ut.", - "description": "Aut ut asperiores. Itaque aliquid veniam. Voluptas minima quisquam.", - "severity": "low", - "precedence": 4401, + "id": "3512d9b0-e6e0-44f8-a230-2a2be69a025f", + "ref_id": "xccdf_org.ssgproject.content_rule_dd8ded25353075a3dd4d93498297363d", + "title": "Sunt aut quibusdam iste.", + "rationale": "Sit non aut. Maiores dolore ut. Ut vitae id.", + "description": "Hic nesciunt minima. Eius porro iste. Nihil ea eos.", + "severity": "medium", + "precedence": 3664, + "identifier": { + "href": "http://bayer.test/tari.gleason", + "label": "Holfast Gardner" + }, + "references": [ + { + "href": "http://wilkinson-lowe.example/vena", + "label": "Gorlim" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "3a1d7e03-64fe-4e90-b007-221a3654556f", - "ref_id": "xccdf_org.ssgproject.content_rule_1d2db9b8e087dc6e07b89663b8aa2bb0", - "title": "Dicta labore illum adipisci.", - "rationale": "Et sunt perferendis. Enim aliquid neque. Sit commodi repudiandae.", - "description": "Et laborum dolor. Ipsum non sed. Esse animi perferendis.", - "severity": "low", - "precedence": 4531, + "id": "cc684b8e-eb7b-4066-b2ce-7893cd5996e3", + "ref_id": "xccdf_org.ssgproject.content_rule_2e539fd75a702bd2ce2dccd0b09c48ab", + "title": "Esse ipsum et voluptates.", + "rationale": "Asperiores rerum quas. Sint ullam eos. Vel voluptas temporibus.", + "description": "Nisi sed quas. Qui dolores hic. Qui consequatur nam.", + "severity": "medium", + "precedence": 3742, + "identifier": { + "href": "http://ratke.test/ocie.stracke", + "label": "Elphir" + }, + "references": [ + { + "href": "http://daugherty.example/benedict_bradtke", + "label": "Harding" + }, + { + "href": "http://wisozk.test/gerard_oberbrunner", + "label": "Tar-Ciryatan" + }, + { + "href": "http://nienow.test/ruthe_littel", + "label": "Beregar" + }, + { + "href": "http://emmerich.example/rosana.botsford", + "label": "Gildor" + }, + { + "href": "http://rice-boyer.test/frederic.hilll", + "label": "Paladin Took" + } + ], + "value_checks": null, "type": "rule" } ], @@ -2228,9 +2572,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/7b0a0dff-6f8f-435b-9138-d93811cec0cf/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/7b0a0dff-6f8f-435b-9138-d93811cec0cf/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/7b0a0dff-6f8f-435b-9138-d93811cec0cf/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/4e0547e4-a46a-4b9d-a8dd-632dee3fb366/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/4e0547e4-a46a-4b9d-a8dd-632dee3fb366/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/4e0547e4-a46a-4b9d-a8dd-632dee3fb366/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -2337,13 +2681,36 @@ "Returns a Rule": { "value": { "data": { - "id": "b98e634c-eae4-42e7-8032-780d5486daaa", - "ref_id": "xccdf_org.ssgproject.content_rule_3a71aa7a0b96421d6eb4aa5f9a5c5429", - "title": "Et unde ipsa dolorem.", - "rationale": "Animi cumque est. Cum in qui. Ad eligendi sed.", - "description": "Qui doloremque quo. Harum placeat sed. Quam eum eum.", + "id": "e1959dc5-6ede-4014-bdde-86316769fb7c", + "ref_id": "xccdf_org.ssgproject.content_rule_2355f6978b747687e908905d80ca379a", + "title": "Culpa vero qui dolores.", + "rationale": "Voluptas quia voluptatem. Nesciunt rerum quia. Est velit molestiae.", + "description": "Cum sunt vel. A quisquam quam. Magni voluptas ab.", "severity": "medium", - "precedence": 4863, + "precedence": 1633, + "identifier": { + "href": "http://corwin-jacobson.test/danille.nicolas", + "label": "Bill Ferny" + }, + "references": [ + { + "href": "http://waters-kihn.test/rema", + "label": "Saruman" + }, + { + "href": "http://stehr-hills.test/casie", + "label": "Tar-Ancalimë" + }, + { + "href": "http://waelchi-rath.example/eugenio", + "label": "Castamir" + }, + { + "href": "http://tremblay.example/ruthie", + "label": "Isilmo" + } + ], + "value_checks": null, "type": "rule" } }, @@ -2375,7 +2742,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 6b0e94ec-fd4b-4ad7-999a-b04f871bf33d" + "V2::Rule not found with ID 00783e4d-2644-4459-8dc5-4ea261819934" ] }, "summary": "", @@ -2489,125 +2856,260 @@ "value": { "data": [ { - "id": "044c34ee-a60d-40e0-ba9c-1e3de5b2e572", - "ref_id": "xccdf_org.ssgproject.content_rule_96e1f1ffeb1f95d1f9155ae213d6b3da", - "title": "Saepe quo consequatur consequatur.", - "rationale": "Rerum nulla iusto. Qui quas hic. Architecto labore veritatis.", - "description": "Et consequatur placeat. Consequatur officia consequatur. Cumque et possimus.", + "id": "0b066fc8-0a78-4faa-b996-afecd42d6153", + "ref_id": "xccdf_org.ssgproject.content_rule_8cea071b124a235708b5509ee5ad5927", + "title": "Sunt cum voluptatibus placeat.", + "rationale": "In praesentium velit. Tempore delectus maxime. Labore aperiam assumenda.", + "description": "Culpa dolor ipsa. Placeat quod dicta. Aliquam soluta eligendi.", "severity": "medium", - "precedence": 3175, - "type": "rule", - "remediation_issue_id": null - }, - { - "id": "16d2b1db-a078-43db-8f30-84e49330d1b8", - "ref_id": "xccdf_org.ssgproject.content_rule_1a7c01d6041d1e2f9802023319e47092", - "title": "Aliquam repudiandae unde quam.", - "rationale": "Iusto optio in. Nulla quos vel. Quae deleniti provident.", - "description": "Delectus sunt ut. Nam enim ut. Minima rerum eum.", - "severity": "high", - "precedence": 2918, + "precedence": 6098, + "identifier": { + "href": "http://schmeler.example/yu", + "label": "Fréawine" + }, + "references": [ + { + "href": "http://rice-feeney.example/lasonya_howe", + "label": "Celegorm" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "1e8f6262-325a-4fa6-a2a3-6f8eaca866e3", - "ref_id": "xccdf_org.ssgproject.content_rule_524c2e3eb908088672eed70191b56eae", - "title": "Dolorum exercitationem fugit soluta.", - "rationale": "Quis et qui. Excepturi nisi ut. Officia unde qui.", - "description": "Eveniet quas corporis. Sequi occaecati perferendis. Quo ut totam.", - "severity": "medium", - "precedence": 1325, + "id": "0b59f67a-8b4e-4897-8f98-d43ce0ec57c9", + "ref_id": "xccdf_org.ssgproject.content_rule_d2bd86e12abfeea3a5d302f6a495e4ef", + "title": "Vel commodi in quisquam.", + "rationale": "Non consectetur ipsam. Repellendus doloremque ullam. Unde natus aut.", + "description": "Asperiores eos a. Sint vel magnam. Et quibusdam dolorum.", + "severity": "low", + "precedence": 5479, + "identifier": { + "href": "http://bradtke.example/lorri", + "label": "Eärendur" + }, + "references": [ + { + "href": "http://klein.example/lenita_wisozk", + "label": "Durin's Bane" + }, + { + "href": "http://carter.test/gordon_weber", + "label": "Araphor" + }, + { + "href": "http://waelchi.test/penny", + "label": "Ingold" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "23c6187f-0993-4b60-8c69-6c35fb591c6a", - "ref_id": "xccdf_org.ssgproject.content_rule_244e56d03e055a681202daef09c2bb55", - "title": "Voluptas rerum neque necessitatibus.", - "rationale": "Sapiente voluptas non. Non ducimus doloribus. Itaque quae dolores.", - "description": "Quasi ea asperiores. Magni ea recusandae. Incidunt doloribus dolores.", - "severity": "medium", - "precedence": 4977, + "id": "0feadbf5-a14f-419b-902f-cf5ecead4337", + "ref_id": "xccdf_org.ssgproject.content_rule_e47fd0a57ab486d7c9aa56907dad243a", + "title": "Incidunt excepturi unde veritatis.", + "rationale": "Aliquid tempore quidem. Tempora voluptatibus quam. Omnis ut nihil.", + "description": "Ut earum consequatur. Voluptates aliquid architecto. At aliquid laudantium.", + "severity": "high", + "precedence": 5187, + "identifier": { + "href": "http://koelpin-schmidt.example/usha_mueller", + "label": "Glorfindel" + }, + "references": [], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "2e69e9a2-92d5-40eb-90ee-cab38460d97e", - "ref_id": "xccdf_org.ssgproject.content_rule_724049f136c7931d705c593c7757ca71", - "title": "Aliquam quia recusandae et.", - "rationale": "Itaque quo dolore. Qui dolor cumque. Dignissimos et ea.", - "description": "Aperiam mollitia magnam. Voluptatum qui nihil. Necessitatibus enim dolores.", + "id": "18cd9344-8526-4756-a4f0-c59e715474b3", + "ref_id": "xccdf_org.ssgproject.content_rule_3b406ff068245329b21d1d9a41d8504d", + "title": "Sunt est voluptatum dolorem.", + "rationale": "Quibusdam eaque est. Sapiente excepturi deserunt. Iure dolor nam.", + "description": "Iure odit ipsa. Recusandae explicabo quasi. Odio voluptates cupiditate.", "severity": "high", - "precedence": 8764, + "precedence": 1284, + "identifier": { + "href": "http://prosacco.example/devin", + "label": "Erkenbrand" + }, + "references": [], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "347e96bc-c22f-4a13-92e0-a533cdcd4a55", - "ref_id": "xccdf_org.ssgproject.content_rule_748632e54cdd422091ab03b7412191d8", - "title": "Beatae omnis voluptatem expedita.", - "rationale": "Ipsam modi ut. Ipsam velit nulla. Ullam deleniti eaque.", - "description": "Velit id porro. Adipisci et repellat. Ipsam veritatis culpa.", + "id": "1f523440-8652-4974-a0c4-eb34b5c1974b", + "ref_id": "xccdf_org.ssgproject.content_rule_11c3a95567425c0da7baee1b87e4b230", + "title": "Odit natus cum fuga.", + "rationale": "Omnis sint accusamus. Quisquam quod facilis. Corporis voluptates dolor.", + "description": "Nesciunt repellendus enim. Neque vero accusantium. Animi id omnis.", "severity": "high", - "precedence": 1755, + "precedence": 232, + "identifier": { + "href": "http://gerlach-bednar.example/shaun_luettgen", + "label": "Malach" + }, + "references": [], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "38948e82-2003-455e-a5bc-3406698500cd", - "ref_id": "xccdf_org.ssgproject.content_rule_e2f6baba5916da8f69c68064264460ec", - "title": "Maiores tempora vero at.", - "rationale": "Unde recusandae vel. Ut et rerum. Hic odio id.", - "description": "Et nisi rerum. Doloribus vitae exercitationem. Ea eos suscipit.", + "id": "2d580f2e-d455-448c-a64d-e83995a80812", + "ref_id": "xccdf_org.ssgproject.content_rule_ee80b6af5e2275ca2b21482fb52566b8", + "title": "Distinctio ducimus sit expedita.", + "rationale": "Quibusdam aut necessitatibus. Tempore necessitatibus qui. Necessitatibus quis ab.", + "description": "Itaque dolorem sunt. Maiores sunt laborum. Eaque est ut.", "severity": "medium", - "precedence": 5574, + "precedence": 9375, + "identifier": { + "href": "http://ryan.example/ollie", + "label": "Gormadoc Brandybuck" + }, + "references": [ + { + "href": "http://oberbrunner.example/lila.schultz", + "label": "Filibert Bolger" + }, + { + "href": "http://lind.test/sallie", + "label": "Borin" + }, + { + "href": "http://bartell.example/shavonda.runolfsdottir", + "label": "Arciryas" + }, + { + "href": "http://langosh.example/vennie", + "label": "Manwendil" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "4110f1d4-dffc-4acf-9b20-9e4ad26d3edd", - "ref_id": "xccdf_org.ssgproject.content_rule_65ee4272dfeeeb9707cb51bda848df64", - "title": "Quo excepturi aliquid error.", - "rationale": "Doloremque sit quos. Excepturi quia sequi. Ad omnis corporis.", - "description": "Aut porro consequatur. Doloribus quae quo. A voluptatum similique.", - "severity": "low", - "precedence": 7519, + "id": "473bccb8-a79f-4735-a48a-49f6f304c115", + "ref_id": "xccdf_org.ssgproject.content_rule_ce67b86011145c43f5e967b63b356366", + "title": "Optio dolores magni quis.", + "rationale": "Sit enim similique. Quis voluptatem voluptas. Autem molestiae saepe.", + "description": "Voluptatem deleniti magnam. Doloremque molestiae occaecati. Est rerum impedit.", + "severity": "medium", + "precedence": 9405, + "identifier": { + "href": "http://funk.test/anton_emmerich", + "label": "Hallas" + }, + "references": [ + { + "href": "http://kilback-zboncak.example/bella", + "label": "Tar-Palantir" + }, + { + "href": "http://dach-pfannerstill.example/kenda", + "label": "Gethron" + }, + { + "href": "http://rice-thiel.test/marshall.mcglynn", + "label": "Elrond" + }, + { + "href": "http://white.example/arnold", + "label": "Ruby Gardner" + }, + { + "href": "http://rau.example/josh_bernier", + "label": "Hardang" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "42bf5141-2236-44fa-83d5-4c256029c8ea", - "ref_id": "xccdf_org.ssgproject.content_rule_1bca62a93f1aaae88780960d1f512aba", - "title": "Id quo aperiam ex.", - "rationale": "Odio velit quae. Esse assumenda et. Dolor facere adipisci.", - "description": "Beatae error autem. Sed voluptatem ratione. Animi quae dolor.", + "id": "521c3743-cc86-46a7-91fd-e48ca598b391", + "ref_id": "xccdf_org.ssgproject.content_rule_6e55add6f1b60ccb865345df8bfc82af", + "title": "Natus molestiae dolores molestiae.", + "rationale": "Eaque aliquid quia. Omnis expedita necessitatibus. Qui perspiciatis neque.", + "description": "Sed eum vero. Expedita et neque. Molestias porro quasi.", "severity": "high", - "precedence": 3793, + "precedence": 5360, + "identifier": { + "href": "http://little.test/ngan.hickle", + "label": "Frerin" + }, + "references": [ + { + "href": "http://brekke.example/dagmar", + "label": "Bungo Baggins" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "46a0ca90-dbb9-46f1-b4d4-6752dcd75bf3", - "ref_id": "xccdf_org.ssgproject.content_rule_02e3b6c940b34c5020395840f9f36ccf", - "title": "Eaque ab fuga sit.", - "rationale": "Sit enim molestias. Minus ipsum laboriosam. Ut ipsum ducimus.", - "description": "Fuga consequatur accusantium. Voluptas omnis reprehenderit. Officia dolor magni.", - "severity": "medium", - "precedence": 6525, - "type": "rule", - "remediation_issue_id": null - } - ], + "id": "53bd4f21-a8a2-4a39-b0bc-a1335b7e0a91", + "ref_id": "xccdf_org.ssgproject.content_rule_bab88ccc3a9dcfbbf4770715b0629de0", + "title": "Soluta ipsa ab facere.", + "rationale": "Consequuntur nobis adipisci. Ullam perferendis deserunt. Incidunt at est.", + "description": "Earum magni natus. Animi assumenda eum. Ipsa sequi aut.", + "severity": "low", + "precedence": 332, + "identifier": { + "href": "http://kerluke-bednar.example/kali_emmerich", + "label": "Fosco Baggins" + }, + "references": [ + { + "href": "http://larkin-ritchie.example/cherilyn.wiegand", + "label": "Dairuin" + }, + { + "href": "http://harber.example/mariel", + "label": "Landroval" + } + ], + "value_checks": null, + "type": "rule", + "remediation_issue_id": null + }, + { + "id": "557941c7-ddf3-454e-8794-dfdf47656908", + "ref_id": "xccdf_org.ssgproject.content_rule_4c5006943084056bfe35d07cbf0c5a73", + "title": "Voluptatem ullam autem beatae.", + "rationale": "Vitae ab sed. Omnis perspiciatis ullam. Rerum quae voluptatem.", + "description": "Maiores totam odit. Eos aspernatur voluptatem. Consequatur dignissimos a.", + "severity": "high", + "precedence": 1465, + "identifier": { + "href": "http://waelchi.example/myra_nader", + "label": "Ingwë" + }, + "references": [ + { + "href": "http://herman-yost.example/lucio.heller", + "label": "Turgon" + } + ], + "value_checks": null, + "type": "rule", + "remediation_issue_id": null + } + ], "meta": { "total": 25, "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/9afbed49-9fcc-46c1-8d50-d0f1a25cf68e/profiles/3689a52f-c1f0-46ec-9633-dc6671501a80/rules?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/9afbed49-9fcc-46c1-8d50-d0f1a25cf68e/profiles/3689a52f-c1f0-46ec-9633-dc6671501a80/rules?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/9afbed49-9fcc-46c1-8d50-d0f1a25cf68e/profiles/3689a52f-c1f0-46ec-9633-dc6671501a80/rules?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/dad38b2f-cad1-4f48-8c49-a76c3dcab942/profiles/127e3b48-e832-4cf8-9c2a-f00d8bb62104/rules?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/dad38b2f-cad1-4f48-8c49-a76c3dcab942/profiles/127e3b48-e832-4cf8-9c2a-f00d8bb62104/rules?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/dad38b2f-cad1-4f48-8c49-a76c3dcab942/profiles/127e3b48-e832-4cf8-9c2a-f00d8bb62104/rules?limit=10&offset=10" } }, "summary": "", @@ -2617,112 +3119,320 @@ "value": { "data": [ { - "id": "dd97318c-6711-43f8-b177-b4232c782f30", - "ref_id": "xccdf_org.ssgproject.content_rule_21a0bcf3714d245b50127f8acc5b1f22", - "title": "Eum ipsa aspernatur id.", - "rationale": "Ipsam nulla iste. Laboriosam sint animi. Non quae qui.", - "description": "Ea dicta quasi. Explicabo ut et. Blanditiis autem enim.", + "id": "053caa7c-17ae-4e13-87e8-2feb27c0aa76", + "ref_id": "xccdf_org.ssgproject.content_rule_17fd5a87c2d5cc23eb04fee11937c3ad", + "title": "Et velit soluta est.", + "rationale": "Et aliquid omnis. Et sint fugit. Voluptatem saepe ipsa.", + "description": "Ratione consequatur accusantium. Rerum odio ea. Fugiat ipsa necessitatibus.", + "severity": "high", + "precedence": 254, + "identifier": { + "href": "http://funk.example/gene.senger", + "label": "Ondoher" + }, + "references": [ + { + "href": "http://leannon-erdman.test/tarra", + "label": "Dior" + }, + { + "href": "http://cummerata-koch.example/jasper", + "label": "Elfstan Fairbairn" + }, + { + "href": "http://olson.example/lashawna", + "label": "Durin's Bane" + }, + { + "href": "http://grimes.test/les", + "label": "Wilibald Bolger" + }, + { + "href": "http://monahan.example/cristina", + "label": "Donnamira Took" + } + ], + "value_checks": null, + "type": "rule", + "remediation_issue_id": null + }, + { + "id": "fecd6fed-e0ef-4931-a76e-5566134ae1d1", + "ref_id": "xccdf_org.ssgproject.content_rule_44af2954e644849fc14a74da48e0d4bc", + "title": "Sequi vitae ut ullam.", + "rationale": "Provident quo ratione. Unde iure non. Tenetur voluptas beatae.", + "description": "Voluptate eum et. Consequatur facere eum. Rerum eos ducimus.", "severity": "low", - "precedence": 43, + "precedence": 362, + "identifier": { + "href": "http://skiles.example/elijah_white", + "label": "Doderic Brandybuck" + }, + "references": [ + { + "href": "http://abbott.test/romeo_ratke", + "label": "Folca" + }, + { + "href": "http://lebsack.example/marcella", + "label": "Anardil" + }, + { + "href": "http://schmitt.example/frankie", + "label": "Willie Banks" + }, + { + "href": "http://batz-jakubowski.example/laurence", + "label": "Holman Cotton" + }, + { + "href": "http://quigley.test/jospeh.collier", + "label": "Elendur" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "0949bfae-3d48-466a-a395-8deb3174ed31", - "ref_id": "xccdf_org.ssgproject.content_rule_317e748fef9537e6ac7604c45a47c509", - "title": "Aspernatur consequatur aperiam illum.", - "rationale": "Rerum nisi error. Facere et totam. Magnam sequi in.", - "description": "Fugiat delectus odio. Quisquam sed nostrum. Aliquam et qui.", + "id": "e3129f2c-1b6c-46cb-8260-d1470c0151bb", + "ref_id": "xccdf_org.ssgproject.content_rule_021b89c9d5bca0939660df3ccdb9d9eb", + "title": "Laborum vel laudantium enim.", + "rationale": "Sint ea quis. Velit harum blanditiis. Enim quaerat aliquam.", + "description": "Voluptatem et amet. Quia non et. Ea aliquid ut.", "severity": "high", - "precedence": 126, + "precedence": 732, + "identifier": { + "href": "http://mosciski.example/bill", + "label": "Ingwë" + }, + "references": [], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "e1dc4cb6-b4cc-4fe5-8698-1c05001e7b59", - "ref_id": "xccdf_org.ssgproject.content_rule_c791e236be3d7944929a7a65756279dd", - "title": "Qui et a architecto.", - "rationale": "Voluptatem ipsum ullam. Dolor commodi natus. Consequuntur praesentium velit.", - "description": "Voluptatem qui harum. Quis voluptatum veritatis. Consequatur aut qui.", + "id": "1c095945-f042-4314-bf39-09afcd720580", + "ref_id": "xccdf_org.ssgproject.content_rule_d7ca9897368571a0528cb5d2e5ea4de3", + "title": "Aut vel necessitatibus velit.", + "rationale": "Deleniti molestiae maiores. Autem temporibus ducimus. Et ullam esse.", + "description": "Atque aut praesentium. Dignissimos quia dicta. Est facere est.", "severity": "medium", - "precedence": 154, + "precedence": 778, + "identifier": { + "href": "http://heaney-hermiston.example/jayne", + "label": "Eärendil" + }, + "references": [ + { + "href": "http://toy.example/elwood", + "label": "Celepharn" + }, + { + "href": "http://windler.test/matt_baumbach", + "label": "Hirgon" + }, + { + "href": "http://satterfield-kris.test/bret.wiza", + "label": "Fosco Baggins" + }, + { + "href": "http://paucek-hoppe.example/nestor_goyette", + "label": "Radagast" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "09efc492-3110-4500-acf8-f0f471139497", - "ref_id": "xccdf_org.ssgproject.content_rule_4a2f96c329a153b03c8131eb0a573436", - "title": "Rem modi corporis eos.", - "rationale": "Neque voluptatem nihil. Corporis eius et. Sit consequatur dolorum.", - "description": "Esse in atque. Possimus rerum ex. Sed reprehenderit qui.", + "id": "08b9b9b3-b7f2-41ce-b225-db7c66b1adbd", + "ref_id": "xccdf_org.ssgproject.content_rule_946fd6972b905e79e489be2c974f36e8", + "title": "Sequi eius commodi quo.", + "rationale": "Distinctio dicta facilis. Maiores sequi consequatur. Et commodi tempora.", + "description": "Beatae quis occaecati. Praesentium atque quos. Omnis tempora omnis.", "severity": "high", - "precedence": 541, + "precedence": 1052, + "identifier": { + "href": "http://kessler.example/dino.gutkowski", + "label": "Old Noakes" + }, + "references": [], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "2d0521ca-5464-4be1-b5fc-68414c74c1a8", - "ref_id": "xccdf_org.ssgproject.content_rule_5d3c431ff3f0037938a4356f26160bd6", - "title": "Vitae hic voluptatum dolor.", - "rationale": "Quam ipsa qui. Earum recusandae corporis. Repellendus ab ratione.", - "description": "Sit asperiores dolorum. Libero repudiandae expedita. Sed ipsum ad.", - "severity": "medium", - "precedence": 711, + "id": "2235699f-b76a-425e-89e3-bbe89e372060", + "ref_id": "xccdf_org.ssgproject.content_rule_30f887f2b20ce37400eca91dbcbede86", + "title": "Quis vel perspiciatis sequi.", + "rationale": "Ullam vel qui. Necessitatibus voluptatem illum. Quae quidem et.", + "description": "Voluptatem animi doloribus. Aut reprehenderit consequatur. Expedita repellat pariatur.", + "severity": "high", + "precedence": 1211, + "identifier": { + "href": "http://towne.test/mechelle_shanahan", + "label": "Silmariën" + }, + "references": [ + { + "href": "http://stamm.test/eldora", + "label": "Fastred of Greenholm" + }, + { + "href": "http://skiles-herzog.example/thad", + "label": "Bill Ferny" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "9f516480-50bb-4b5c-8c8a-b25101bfa7c5", - "ref_id": "xccdf_org.ssgproject.content_rule_41db46d047c0bd743146d50cf52606d2", - "title": "Qui blanditiis et nulla.", - "rationale": "Illum molestiae nihil. Sit quos natus. Incidunt voluptatem voluptatibus.", - "description": "Est voluptatem ipsa. Magnam corporis quibusdam. Fugiat inventore quas.", - "severity": "low", - "precedence": 815, + "id": "f6016817-3fd3-444f-aef3-9e06a1394696", + "ref_id": "xccdf_org.ssgproject.content_rule_92b580aded4dbf0843f2f51dcd18894a", + "title": "Neque voluptates eos quo.", + "rationale": "Est voluptas unde. Odit vel molestiae. Sed illo quis.", + "description": "Tempora sunt qui. Qui numquam aut. Suscipit non a.", + "severity": "medium", + "precedence": 1935, + "identifier": { + "href": "http://muller-schaden.test/wava_ohara", + "label": "Lenwë" + }, + "references": [ + { + "href": "http://koepp.example/alan.swaniawski", + "label": "Tatië" + }, + { + "href": "http://koss-mitchell.example/teofila", + "label": "Tindómiel" + }, + { + "href": "http://wintheiser.test/ruben", + "label": "Folca" + }, + { + "href": "http://haley.example/eloy.waters", + "label": "Frerin" + }, + { + "href": "http://muller-wintheiser.test/monte.rosenbaum", + "label": "Ar-Adûnakhôr" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "a525655a-739c-4a38-b3c6-40143c983989", - "ref_id": "xccdf_org.ssgproject.content_rule_d6b23c3e6f6b6df3fc2c4d9ae1f31ea5", - "title": "Alias id quo tenetur.", - "rationale": "Ipsam et aliquam. Excepturi similique autem. Sint qui dolor.", - "description": "Quod nihil autem. Incidunt et necessitatibus. Voluptate ullam dolores.", + "id": "27810e5f-28a7-4e20-9e1c-20c6ad876c86", + "ref_id": "xccdf_org.ssgproject.content_rule_d9651b2cf01bd17739d1c88ee33eec5e", + "title": "Eum sint atque corporis.", + "rationale": "Ut non dignissimos. Laborum repellat ut. Rerum eum labore.", + "description": "Qui corporis consequatur. Iure velit sed. Voluptatem dolores nesciunt.", "severity": "low", - "precedence": 1338, - "type": "rule", - "remediation_issue_id": null - }, - { - "id": "447e001a-1f20-499e-b013-3a2e62e96a6d", - "ref_id": "xccdf_org.ssgproject.content_rule_98d6471fef572b503e9ca27124dcd934", - "title": "At et amet repellat.", - "rationale": "Consequatur a debitis. Voluptatem nostrum minus. Aut culpa ducimus.", - "description": "Cupiditate velit officiis. Et aut doloremque. Enim vel perferendis.", - "severity": "medium", - "precedence": 1361, + "precedence": 2045, + "identifier": { + "href": "http://goyette-lockman.example/claudio.mraz", + "label": "Radbug" + }, + "references": [ + { + "href": "http://stokes.test/cassandra", + "label": "Grimbold" + }, + { + "href": "http://schinner-bogan.example/josue.franecki", + "label": "Watcher in the Water" + }, + { + "href": "http://huel-hartmann.test/demetrius_littel", + "label": "Ibun" + }, + { + "href": "http://bosco.example/lou.reilly", + "label": "Celegorm" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "fa06649d-66c0-44cd-b6e6-a294187b2243", - "ref_id": "xccdf_org.ssgproject.content_rule_f26b862aa535260ae818a811a19388a6", - "title": "Ut et voluptatum incidunt.", - "rationale": "Veniam tempora recusandae. Architecto quod officiis. Et doloremque iure.", - "description": "Sequi voluptatum eos. Autem ipsam minima. Accusantium quae explicabo.", + "id": "e2ee8c2c-2b6e-4f54-96b8-d9a0fae772c8", + "ref_id": "xccdf_org.ssgproject.content_rule_a9805cf349fa9ddfdf1f6be7caf56c65", + "title": "Quo consequatur rem sed.", + "rationale": "Laborum officia quo. Ipsam quaerat et. Ut repudiandae cum.", + "description": "Hic id magnam. Quo cum iusto. Voluptatem praesentium odio.", "severity": "high", - "precedence": 2144, + "precedence": 3075, + "identifier": { + "href": "http://swift.example/yoshiko_kemmer", + "label": "Hending" + }, + "references": [ + { + "href": "http://ratke.example/nannie", + "label": "Vëantur" + }, + { + "href": "http://kirlin-schinner.example/rochel_grady", + "label": "Ivriniel" + }, + { + "href": "http://dietrich.example/keisha", + "label": "Tar-Anducal" + }, + { + "href": "http://welch.test/earl_klein", + "label": "Rufus Burrows" + }, + { + "href": "http://vandervort-kertzmann.example/tandy", + "label": "Atanalcar" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null }, { - "id": "2facddbb-b631-48b4-94ed-a0e4c8408510", - "ref_id": "xccdf_org.ssgproject.content_rule_c8451c214316d145bf0d93135c71af33", - "title": "Quos et nobis at.", - "rationale": "Perspiciatis suscipit debitis. Nulla non quia. Officia qui ipsum.", - "description": "Impedit quidem autem. Sit magni qui. Recusandae nihil et.", - "severity": "low", - "precedence": 3294, + "id": "b68f392b-79c8-4444-b2ad-183dc4375b14", + "ref_id": "xccdf_org.ssgproject.content_rule_9544bfcb64333a8c87edda0eb4ac74d6", + "title": "Explicabo debitis consequatur et.", + "rationale": "Corporis aut amet. Velit voluptatem tempore. Voluptates vero voluptatem.", + "description": "Blanditiis rerum amet. Quo et sapiente. Aut consequatur aut.", + "severity": "high", + "precedence": 3217, + "identifier": { + "href": "http://bechtelar.test/darwin", + "label": "Nessanië" + }, + "references": [ + { + "href": "http://grimes-lesch.example/edith.dicki", + "label": "Hob Hayward" + }, + { + "href": "http://rath.example/desmond", + "label": "Legolas" + }, + { + "href": "http://rosenbaum-mills.example/hermina.marquardt", + "label": "Mimosa Bunce" + }, + { + "href": "http://champlin-hane.example/doloris.fay", + "label": "Snaga" + }, + { + "href": "http://raynor-schulist.example/omar", + "label": "Tar-Vanimeldë" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null } @@ -2734,9 +3444,9 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/security_guides/bb12cfb0-2c03-4ff7-bf7a-4e6a2fa4069f/profiles/30b43ae3-0e80-44d1-9db0-5dde496e447d/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/security_guides/bb12cfb0-2c03-4ff7-bf7a-4e6a2fa4069f/profiles/30b43ae3-0e80-44d1-9db0-5dde496e447d/rules?limit=10&offset=20&sort_by=precedence", - "next": "/api/compliance/v2/security_guides/bb12cfb0-2c03-4ff7-bf7a-4e6a2fa4069f/profiles/30b43ae3-0e80-44d1-9db0-5dde496e447d/rules?limit=10&offset=10&sort_by=precedence" + "first": "/api/compliance/v2/security_guides/822ae809-957b-448b-8790-82537c39bfd2/profiles/525766b6-91f1-411d-8a04-f749d65b74b8/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/security_guides/822ae809-957b-448b-8790-82537c39bfd2/profiles/525766b6-91f1-411d-8a04-f749d65b74b8/rules?limit=10&offset=20&sort_by=precedence", + "next": "/api/compliance/v2/security_guides/822ae809-957b-448b-8790-82537c39bfd2/profiles/525766b6-91f1-411d-8a04-f749d65b74b8/rules?limit=10&offset=10&sort_by=precedence" } }, "summary": "", @@ -2851,13 +3561,24 @@ "Returns a Rule": { "value": { "data": { - "id": "e5b55a66-5fb7-4503-9b39-a7eb13d7b3b2", - "ref_id": "xccdf_org.ssgproject.content_rule_6074c4467844ed7a9a50119eb7228b0f", - "title": "Corporis libero fuga ea.", - "rationale": "Et natus et. Quis aut voluptates. Animi quae unde.", - "description": "Quia consectetur quam. Voluptatem aut unde. Dolores adipisci velit.", - "severity": "high", - "precedence": 6512, + "id": "d1df85a8-9784-4fab-8e94-1e543a0cb99a", + "ref_id": "xccdf_org.ssgproject.content_rule_c6e6376232994abd922957d710486ce6", + "title": "Quidem iure sapiente ea.", + "rationale": "Ipsam earum laboriosam. Voluptas vel ea. Laboriosam sit rem.", + "description": "Magni aut aspernatur. Et modi aliquam. Alias ipsam et.", + "severity": "low", + "precedence": 5122, + "identifier": { + "href": "http://koch.test/sonya", + "label": "Dírhael" + }, + "references": [ + { + "href": "http://greenfelder-kassulke.example/lacey", + "label": "Azaghâl" + } + ], + "value_checks": null, "type": "rule", "remediation_issue_id": null } @@ -2890,7 +3611,7 @@ "Description of an error when requesting a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 9e884776-65da-4cd6-93b1-8d039b32d707" + "V2::Rule not found with ID e43582b6-a4dd-4a53-9fd8-329a0bf66cd6" ] }, "summary": "", @@ -3004,13 +3725,28 @@ "value": { "data": [ { - "id": "153dd56d-9d7d-45a0-91d9-96be99941580", - "ref_id": "xccdf_org.ssgproject.content_rule_1304f672e37959a796923eaef3b8c4ce", - "title": "Unde tempora in hic.", - "rationale": "Ut autem qui. Ut nihil aliquam. Reprehenderit minima animi.", - "description": "Quis quos repellat. Repellendus ut quia. Voluptas vel voluptatibus.", - "severity": "medium", - "precedence": 2803, + "id": "3bad4700-87bc-4d35-a528-4efdd88041b3", + "ref_id": "xccdf_org.ssgproject.content_rule_b25a4b6dcfbd0522a1a7f1234b521b3c", + "title": "Voluptatibus esse explicabo aperiam.", + "rationale": "Ipsam est harum. Perspiciatis ex eveniet. Vitae asperiores eos.", + "description": "Suscipit reiciendis voluptas. Perspiciatis consectetur tempora. Repellat minima sint.", + "severity": "low", + "precedence": 2430, + "identifier": { + "href": "http://roob.test/twila", + "label": "Mairen" + }, + "references": [ + { + "href": "http://hansen-weissnat.example/long_bruen", + "label": "Frumgar" + }, + { + "href": "http://brown-steuber.example/wiley", + "label": "Bodo Proudfoot" + } + ], + "value_checks": null, "type": "rule" } ], @@ -3020,8 +3756,8 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/e9c1a5e4-3175-4f5a-b50a-716e00a4f829/tailorings/0ffc8c93-e927-43c1-8935-bb4ff7092110/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/e9c1a5e4-3175-4f5a-b50a-716e00a4f829/tailorings/0ffc8c93-e927-43c1-8935-bb4ff7092110/rules?limit=10&offset=0" + "first": "/api/compliance/v2/policies/72fba6ee-b616-4fa9-a7e9-02d2178bf310/tailorings/be47b3bf-9dff-4097-9eb7-34582b8b7d2c/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/72fba6ee-b616-4fa9-a7e9-02d2178bf310/tailorings/be47b3bf-9dff-4097-9eb7-34582b8b7d2c/rules?limit=10&offset=0" } }, "summary": "", @@ -3031,13 +3767,32 @@ "value": { "data": [ { - "id": "145e8ff8-70d2-4013-93a2-c09a3a9720f0", - "ref_id": "xccdf_org.ssgproject.content_rule_28d11fb3ca596588f17313d79dae79ff", - "title": "Quae dicta consequatur nihil.", - "rationale": "Culpa qui quis. Quis non et. Quisquam asperiores eos.", - "description": "Perferendis sint officiis. Deserunt porro dolor. Ipsum sunt omnis.", + "id": "dc9d39a2-a713-43f7-83ba-0f29f7f94a60", + "ref_id": "xccdf_org.ssgproject.content_rule_c62c2906b8ca97ad80eb84908d428f5c", + "title": "Quidem illum blanditiis excepturi.", + "rationale": "Labore magni et. Ab et odit. Illo repudiandae earum.", + "description": "A dolor qui. Ut expedita aut. Tempore est reiciendis.", "severity": "high", - "precedence": 5535, + "precedence": 4435, + "identifier": { + "href": "http://ruecker.example/duane", + "label": "Helm" + }, + "references": [ + { + "href": "http://zulauf-conroy.example/brittney.bahringer", + "label": "Voronwë" + }, + { + "href": "http://bechtelar-rosenbaum.test/ezra", + "label": "Haldad" + }, + { + "href": "http://rogahn.example/magali", + "label": "Bain" + } + ], + "value_checks": null, "type": "rule" } ], @@ -3048,8 +3803,8 @@ "sort_by": "precedence" }, "links": { - "first": "/api/compliance/v2/policies/c18eab86-ee46-4fba-baff-0999fab980e7/tailorings/9056a421-e0fe-4905-b854-59465bbe1e2d/rules?limit=10&offset=0&sort_by=precedence", - "last": "/api/compliance/v2/policies/c18eab86-ee46-4fba-baff-0999fab980e7/tailorings/9056a421-e0fe-4905-b854-59465bbe1e2d/rules?limit=10&offset=0&sort_by=precedence" + "first": "/api/compliance/v2/policies/028ea6e6-4618-4f14-92bd-a1355e33588a/tailorings/62f520ad-2c49-492d-95a3-3f55b4b0d57d/rules?limit=10&offset=0&sort_by=precedence", + "last": "/api/compliance/v2/policies/028ea6e6-4618-4f14-92bd-a1355e33588a/tailorings/62f520ad-2c49-492d-95a3-3f55b4b0d57d/rules?limit=10&offset=0&sort_by=precedence" } }, "summary": "", @@ -3156,103 +3911,232 @@ "value": { "data": [ { - "id": "0511de1f-d34a-4f0c-9be4-93c6ec07f205", - "ref_id": "xccdf_org.ssgproject.content_rule_38709c7b67a24ac5948f234583a68f75", - "title": "Illo aut possimus nulla.", - "rationale": "At laboriosam praesentium. Adipisci dolorum aspernatur. Molestiae cum non.", - "description": "In reiciendis cumque. Ipsum velit facilis. Quae nihil facilis.", + "id": "00fcd493-39b7-499c-885f-29f1dd435d9d", + "ref_id": "xccdf_org.ssgproject.content_rule_3ea7d6a32543c03b1e35ad5a2fd3f6d3", + "title": "Et qui dolores asperiores.", + "rationale": "Quasi in provident. Enim quia excepturi. Et est atque.", + "description": "Sint facilis harum. Distinctio nemo veritatis. Quas doloremque maxime.", "severity": "high", - "precedence": 8203, + "precedence": 2688, + "identifier": { + "href": "http://baumbach.test/johnnie.langworth", + "label": "Elurín" + }, + "references": [ + { + "href": "http://keeling-bechtelar.test/lynn", + "label": "Pansy Baggins" + }, + { + "href": "http://kautzer.test/werner", + "label": "Muzgash" + }, + { + "href": "http://kassulke.test/clyde", + "label": "Amlach" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "0f35937d-cde0-46db-b450-f7201c0cd467", - "ref_id": "xccdf_org.ssgproject.content_rule_de6e7dd992fff8764e5a2f17cf545d07", - "title": "Dolor dicta quisquam consequatur.", - "rationale": "Ab eos tenetur. Est ex ratione. Illum ex ad.", - "description": "Expedita aut fugiat. Id molestias quia. Et non maiores.", - "severity": "low", - "precedence": 9678, + "id": "11994dc6-e370-45e0-972f-1e4a3bf83bbe", + "ref_id": "xccdf_org.ssgproject.content_rule_128ef63164f78fd53b6fdf320a91bfa0", + "title": "Dolorem sint quo quibusdam.", + "rationale": "Quia est odio. Eos nobis quia. Quia magni reprehenderit.", + "description": "Optio qui dolor. Officiis eligendi odio. Voluptas rerum voluptas.", + "severity": "medium", + "precedence": 9296, + "identifier": { + "href": "http://mayert.test/glenda_rempel", + "label": "Théodwyn" + }, + "references": [ + { + "href": "http://maggio.example/tory_wolff", + "label": "Celepharn" + }, + { + "href": "http://flatley-dickens.test/lawerence", + "label": "Lofar" + }, + { + "href": "http://oreilly-mueller.example/candace.dach", + "label": "Maglor" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "14f84922-ff8f-4b60-b6da-9959889c6b8e", - "ref_id": "xccdf_org.ssgproject.content_rule_42d5a9289a4195800887b8a4a121f379", - "title": "Suscipit error illo nobis.", - "rationale": "Deserunt quos dolore. Quis est sed. Sed voluptatem voluptatum.", - "description": "Quasi quos non. Et dolore sint. Corporis id assumenda.", - "severity": "high", - "precedence": 2636, + "id": "1c7b4acd-d734-4c50-a5ff-58a92e32de8b", + "ref_id": "xccdf_org.ssgproject.content_rule_cbf0e52b8ce8a9286c6d81fa9d064bcf", + "title": "Quos quasi et distinctio.", + "rationale": "Adipisci et repellendus. Voluptatem animi sunt. Est laborum facere.", + "description": "Quae et velit. Velit excepturi esse. Minima beatae iste.", + "severity": "medium", + "precedence": 6962, + "identifier": { + "href": "http://mertz.example/shenika_brakus", + "label": "Brand" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "197bb85a-3cbc-4fb2-a109-442dc388e027", - "ref_id": "xccdf_org.ssgproject.content_rule_19ed928b74f9cc2b89f8690c3b84d526", - "title": "Inventore sint laudantium eaque.", - "rationale": "Sapiente animi est. Fugit explicabo ipsam. Vel ducimus rerum.", - "description": "Ut aut dolor. Mollitia vel sit. Dolor repellendus dolorem.", + "id": "20992f45-4f9e-45b5-bc7e-b0369a4dd8e1", + "ref_id": "xccdf_org.ssgproject.content_rule_2f4d1a98d138c66124e9836840a919a3", + "title": "Voluptate accusamus temporibus nostrum.", + "rationale": "Velit quia corporis. Aliquam similique commodi. Repellat ad ipsa.", + "description": "Rerum et earum. Quaerat fuga tempora. Quia beatae est.", "severity": "high", - "precedence": 5306, + "precedence": 6241, + "identifier": { + "href": "http://friesen.test/everett_williamson", + "label": "Dodinas Brandybuck" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "1b59f8ce-aaa0-431c-a7c4-3815b55846db", - "ref_id": "xccdf_org.ssgproject.content_rule_3929e0e8e39df93aea55cf799023d76d", - "title": "Molestiae odit ad vel.", - "rationale": "Et quae et. Libero rem sit. Dolorem voluptas molestias.", - "description": "Non sit deserunt. Voluptas ut ratione. Qui dolor ea.", - "severity": "medium", - "precedence": 625, + "id": "22f4f759-714f-41a9-9456-a99f88a992e1", + "ref_id": "xccdf_org.ssgproject.content_rule_a39f1db495236d6715727e063f3dd4ab", + "title": "Sapiente qui sunt cum.", + "rationale": "Necessitatibus aut ullam. Qui sunt aut. Ea tempore labore.", + "description": "Dolor asperiores eaque. Et sit impedit. Explicabo optio occaecati.", + "severity": "low", + "precedence": 5325, + "identifier": { + "href": "http://koss-kuhn.example/lyman", + "label": "Bungo Baggins" + }, + "references": [ + { + "href": "http://greenholt-kling.example/creola", + "label": "Lindissë" + }, + { + "href": "http://johnston.example/fredrick.ernser", + "label": "Éomund" + }, + { + "href": "http://predovic.example/pricilla", + "label": "Olo Proudfoot" + }, + { + "href": "http://quigley-mills.test/cassidy.mckenzie", + "label": "Brodda" + }, + { + "href": "http://torphy.test/divina_murphy", + "label": "Frerin" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "25aeff4b-5c45-4278-9d99-20dca7e9b308", - "ref_id": "xccdf_org.ssgproject.content_rule_fc41037e93caa2fadc687ef8bc6a0a8b", - "title": "Nisi nostrum labore ullam.", - "rationale": "Officia sit est. Hic distinctio iure. Officiis eveniet reiciendis.", - "description": "Ipsam placeat sed. Minus aliquam nostrum. Pariatur dolor libero.", - "severity": "medium", - "precedence": 587, + "id": "2b5a07af-656d-4c2a-aaa9-f99686113cf6", + "ref_id": "xccdf_org.ssgproject.content_rule_bbb9fed3503714d6d1f5d5128ccc6a92", + "title": "Laboriosam ut beatae maxime.", + "rationale": "Et eveniet est. Possimus beatae porro. Consequuntur hic corporis.", + "description": "Earum labore quis. Neque et nostrum. Debitis et enim.", + "severity": "low", + "precedence": 558, + "identifier": { + "href": "http://wiegand-kertzmann.test/january.klocko", + "label": "Hildifons Took" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "2aae1f8b-8c6a-4c99-8462-c7d0cb0af54e", - "ref_id": "xccdf_org.ssgproject.content_rule_c9851d898538caabc06732e9b19f4ffa", - "title": "Dignissimos blanditiis eius odio.", - "rationale": "Quo deleniti amet. Vitae nihil et. Consectetur ipsa repellendus.", - "description": "Sint totam odit. Odio impedit dolor. Dolore eos est.", + "id": "352b210d-0134-476f-bce4-cd8832020bb6", + "ref_id": "xccdf_org.ssgproject.content_rule_c73fff38bb953b954a17ab0b56577f00", + "title": "Quia odit nobis enim.", + "rationale": "Maiores ut maxime. Autem ut et. Vero voluptatum error.", + "description": "Debitis consectetur eligendi. Iusto quidem dolorem. Et laboriosam voluptatem.", "severity": "low", - "precedence": 9757, + "precedence": 8198, + "identifier": { + "href": "http://aufderhar-swaniawski.test/malik", + "label": "Henderch" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "311ba5ee-d2d5-4bb5-89be-ec23414da893", - "ref_id": "xccdf_org.ssgproject.content_rule_a73870d319d7e7fd11f17d2dc22374e4", - "title": "Repellat molestias et aliquid.", - "rationale": "Consectetur assumenda laudantium. Et ut quis. Corrupti facilis ut.", - "description": "Omnis quam sit. Fugit exercitationem occaecati. Odio provident magnam.", - "severity": "high", - "precedence": 4382, + "id": "48124841-b146-4fc7-bf46-7ef31e306fea", + "ref_id": "xccdf_org.ssgproject.content_rule_18cb1dea829fbb66b2e160b3ba6ecc83", + "title": "Voluptatem at rerum hic.", + "rationale": "Explicabo optio suscipit. Voluptatum consequatur est. Nobis voluptatem porro.", + "description": "Asperiores autem sed. Eos laudantium est. Velit natus accusantium.", + "severity": "medium", + "precedence": 9901, + "identifier": { + "href": "http://schulist.test/claretha", + "label": "Gálmód" + }, + "references": [ + { + "href": "http://hilll.example/antonia_mayert", + "label": "Belba Baggins" + }, + { + "href": "http://schroeder.example/kathryne", + "label": "Elladan" + } + ], + "value_checks": null, "type": "rule" }, { - "id": "343fdacd-298b-48b0-a8d1-49a23a5bab68", - "ref_id": "xccdf_org.ssgproject.content_rule_99d8e10fd7e0de1de153ec0e0f7f5352", - "title": "Distinctio ratione aut a.", - "rationale": "Dolor impedit aperiam. Quia qui corporis. Non molestias eaque.", - "description": "Nihil laboriosam qui. Voluptas nobis veritatis. Hic quia pariatur.", - "severity": "medium", - "precedence": 9095, + "id": "521d8cd1-2a65-460a-a4ed-8e8873d9e2cf", + "ref_id": "xccdf_org.ssgproject.content_rule_ecf563509eae301163e7c433b3cb7f06", + "title": "Animi sequi iure consequatur.", + "rationale": "Pariatur ut qui. At quidem reprehenderit. Eum commodi et.", + "description": "In suscipit nostrum. Facere voluptas aut. Corporis ut et.", + "severity": "high", + "precedence": 9015, + "identifier": { + "href": "http://tremblay.test/milan", + "label": "Arathorn" + }, + "references": [], + "value_checks": null, "type": "rule" }, { - "id": "3e5c9574-9208-4897-bee2-12529d7bd54a", - "ref_id": "xccdf_org.ssgproject.content_rule_c8ff5d80c820951113dad14dc66f097f", - "title": "Iusto rem accusantium alias.", - "rationale": "Ut omnis eligendi. Nostrum sit blanditiis. Laboriosam autem recusandae.", - "description": "Doloremque quam explicabo. Sed ut debitis. Voluptatem dignissimos praesentium.", + "id": "5646c8c2-6aa2-4643-af92-31a5efad0149", + "ref_id": "xccdf_org.ssgproject.content_rule_a074ffd1ea5400719c0a4c201838191e", + "title": "Veniam omnis ab dolore.", + "rationale": "Aut doloribus voluptates. Aliquid voluptatem deserunt. Qui culpa laboriosam.", + "description": "Laborum et dolores. Et ad neque. Rerum dolor id.", "severity": "high", - "precedence": 3582, + "precedence": 4160, + "identifier": { + "href": "http://balistreri.example/hobert_bradtke", + "label": "Eluréd" + }, + "references": [ + { + "href": "http://torp.example/dallas", + "label": "Balin" + }, + { + "href": "http://dare.test/venice", + "label": "Longo Baggins" + }, + { + "href": "http://kozey.example/lianne", + "label": "Bregor" + } + ], + "value_checks": null, "type": "rule" } ], @@ -3262,9 +4146,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/f7734638-79d3-4954-8c8d-5a5a3f9730cb/tailorings/609f227e-ed97-46c6-a0a8-37e5be0f6dea/rules?limit=10&offset=0", - "last": "/api/compliance/v2/policies/f7734638-79d3-4954-8c8d-5a5a3f9730cb/tailorings/609f227e-ed97-46c6-a0a8-37e5be0f6dea/rules?limit=10&offset=20", - "next": "/api/compliance/v2/policies/f7734638-79d3-4954-8c8d-5a5a3f9730cb/tailorings/609f227e-ed97-46c6-a0a8-37e5be0f6dea/rules?limit=10&offset=10" + "first": "/api/compliance/v2/policies/af1404b0-0ab5-43f1-a7bf-221c1a9e086b/tailorings/b96e018f-081f-4ff0-86c4-1c272f0db540/rules?limit=10&offset=0", + "last": "/api/compliance/v2/policies/af1404b0-0ab5-43f1-a7bf-221c1a9e086b/tailorings/b96e018f-081f-4ff0-86c4-1c272f0db540/rules?limit=10&offset=20", + "next": "/api/compliance/v2/policies/af1404b0-0ab5-43f1-a7bf-221c1a9e086b/tailorings/b96e018f-081f-4ff0-86c4-1c272f0db540/rules?limit=10&offset=10" } }, "summary": "", @@ -3366,13 +4250,40 @@ "Assigns a Rule to a Tailoring": { "value": { "data": { - "id": "32979375-6291-4c54-a0f3-6cdb2d0634ec", - "ref_id": "xccdf_org.ssgproject.content_rule_f2ed53a7adacf53b19572ea7145ae912", - "title": "Est ipsam itaque enim.", - "rationale": "Repellendus aspernatur ipsam. Nam nemo voluptas. Deserunt nam qui.", - "description": "Voluptate tempora omnis. Quia odio dolores. Officiis repellat cumque.", + "id": "4a12f6ba-d8e0-41ec-ab5f-8c16bdab0829", + "ref_id": "xccdf_org.ssgproject.content_rule_41b0a10e67a67f7aaeaf1e2dff988652", + "title": "Provident qui ad esse.", + "rationale": "Odio sed sint. Tempora aspernatur non. Unde itaque dolorem.", + "description": "Voluptatem expedita et. Illum commodi qui. Dolorem ullam ut.", "severity": "medium", - "precedence": 471, + "precedence": 3927, + "identifier": { + "href": "http://kuhlman-koss.example/lina", + "label": "Anairë" + }, + "references": [ + { + "href": "http://kreiger.test/shanae", + "label": "Vëantur" + }, + { + "href": "http://schamberger.example/alfonso", + "label": "Balbo Baggins" + }, + { + "href": "http://kuphal-brown.example/mechelle_wolff", + "label": "Elros" + }, + { + "href": "http://herman.example/valentine_bradtke", + "label": "Shelob" + }, + { + "href": "http://cremin.example/agatha.bogisich", + "label": "Ingold" + } + ], + "value_checks": null, "type": "rule" } }, @@ -3391,7 +4302,7 @@ "Returns with Not found": { "value": { "errors": [ - "V2::Rule not found with ID 0ce91803-132b-4f1b-a6cc-02c0fd9da807" + "V2::Rule not found with ID dbd9d3cd-7f13-4871-9682-49503f541aa1" ] }, "summary": "", @@ -3453,13 +4364,36 @@ "Unassigns a Rule from a Tailoring": { "value": { "data": { - "id": "67809a13-58ac-48e4-895c-bf4f34c2eaf3", - "ref_id": "xccdf_org.ssgproject.content_rule_281ab184deab743a642978a7c02e6361", - "title": "Natus qui et ut.", - "rationale": "Nisi dolores molestiae. Repudiandae et iste. Et nihil dolorem.", - "description": "Eaque quas est. Dignissimos eveniet dicta. Rerum illum temporibus.", - "severity": "high", - "precedence": 848, + "id": "5b05da01-1ec8-43d9-84d6-b9c8b753b9bf", + "ref_id": "xccdf_org.ssgproject.content_rule_6146bda25a29705573599c3f51919d56", + "title": "Voluptatum minima libero doloremque.", + "rationale": "Fugiat aut et. Vel iure reprehenderit. Eos voluptatum exercitationem.", + "description": "Porro ex velit. Dolorem et omnis. Dolorem aut et.", + "severity": "medium", + "precedence": 9397, + "identifier": { + "href": "http://buckridge.test/royce_macgyver", + "label": "Fredegar Bolger" + }, + "references": [ + { + "href": "http://legros.example/stephen", + "label": "Legolas" + }, + { + "href": "http://bergnaum-treutel.test/allene", + "label": "Beregar" + }, + { + "href": "http://sipes.test/winfred_quitzon", + "label": "Hathaldir" + }, + { + "href": "http://dickens-larkin.example/tilda", + "label": "Galion" + } + ], + "value_checks": null, "type": "rule" } }, @@ -3478,7 +4412,7 @@ "Description of an error when unassigning a non-existing Rule": { "value": { "errors": [ - "V2::Rule not found with ID 6d15f359-207f-48f8-bdf2-1f4bb0a11978" + "V2::Rule not found with ID 76374fb7-62c3-4cbd-b9c5-2bf2f8c1ddd7" ] }, "summary": "", @@ -3573,92 +4507,92 @@ "value": { "data": [ { - "id": "05e8424e-d98c-470d-bd11-d10587ed5d3b", + "id": "0c70cf8c-11d5-4dd4-943d-8e3466f53efb", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Eaque similique ducimus quisquam.", - "version": "100.23.49", - "description": "Tempore tenetur quia. Sunt explicabo et. Blanditiis sapiente eos.", + "title": "Autem quia aperiam et.", + "version": "100.23.25", + "description": "Ut ratione sequi. Aut qui impedit. Totam perspiciatis non.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2d064265-e7da-4960-abf2-29f0338e737c", + "id": "1111d7fd-6679-4e6d-b17a-88f9404aaa3f", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Enim quia earum repellendus.", - "version": "100.23.34", - "description": "Aut et sit. Rem id illo. Aperiam et minus.", + "title": "Et pariatur similique aut.", + "version": "100.23.14", + "description": "Et corrupti nobis. Minima possimus quia. Sed tenetur voluptate.", "os_major_version": 7, "type": "security_guide" }, { - "id": "2f0441d1-ef86-4d68-a09b-38aca5f6219e", + "id": "28da2939-60c2-4e6d-a77a-a36c3cd1fb25", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Perspiciatis qui aut quo.", - "version": "100.23.35", - "description": "Sit quia et. Sed corrupti voluptate. Facere adipisci fugiat.", + "title": "Molestias autem molestiae enim.", + "version": "100.23.21", + "description": "Officia dolore officiis. Deleniti voluptas et. Aut quis officia.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3942ce29-5e1c-4fba-af86-107dc2781bc3", + "id": "2d67d478-55a6-429f-ba1d-4e54b1720dd3", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Alias qui qui omnis.", - "version": "100.23.42", - "description": "Et maxime non. Exercitationem occaecati qui. Ipsa recusandae et.", + "title": "Sed iure repudiandae tenetur.", + "version": "100.23.15", + "description": "Nihil modi aliquid. Harum sit est. Ad accusantium sit.", "os_major_version": 7, "type": "security_guide" }, { - "id": "3c569e24-3b8a-4ee5-8ea5-a231e89456d3", + "id": "41f30a2e-436f-4303-a711-2d2ce32962f0", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Ut numquam vero beatae.", - "version": "100.23.37", - "description": "Id ipsa et. Qui itaque in. Maxime architecto velit.", + "title": "Tempora aperiam praesentium architecto.", + "version": "100.23.17", + "description": "Recusandae iusto voluptas. Nulla debitis et. Et aspernatur dolorem.", "os_major_version": 7, "type": "security_guide" }, { - "id": "468bb8d3-4c2b-4a00-94aa-c9f792186adc", + "id": "44019b35-8923-4d1a-88e1-a5814fbc685e", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Non omnis ut excepturi.", - "version": "100.23.43", - "description": "Et totam et. Libero natus consequatur. Aut non qui.", + "title": "Veniam non porro est.", + "version": "100.23.31", + "description": "Velit voluptates qui. Quasi sed nostrum. Occaecati voluptatum ipsa.", "os_major_version": 7, "type": "security_guide" }, { - "id": "54a3e381-354b-4c9b-8f0d-59bb8c8b7aa1", + "id": "46565dde-6abb-400b-a008-2f946c693fcc", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Culpa quasi est recusandae.", - "version": "100.23.48", - "description": "Ducimus numquam temporibus. Et error hic. Voluptatem nisi nihil.", + "title": "Tempora quidem explicabo non.", + "version": "100.23.23", + "description": "Animi voluptatum et. Quis temporibus eum. Magnam eos vel.", "os_major_version": 7, "type": "security_guide" }, { - "id": "56ac4bcb-ab0d-40b0-87f1-0274d16afd25", + "id": "47a13fd1-3b63-457b-a86b-c488c32ee112", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Et voluptates ut sit.", - "version": "100.23.44", - "description": "Asperiores quis consectetur. Quibusdam velit laborum. Voluptas quia quod.", + "title": "Natus nihil quasi asperiores.", + "version": "100.23.16", + "description": "Quasi cupiditate et. Excepturi inventore cupiditate. Eum iusto sapiente.", "os_major_version": 7, "type": "security_guide" }, { - "id": "5ac2a33f-0537-4ebb-8f26-a2f9dfae2da8", + "id": "4c3143bb-986a-4e79-8eaf-7286b7029162", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Aut nostrum veritatis consequatur.", - "version": "100.24.1", - "description": "Fugit odit minus. Consequuntur qui fugiat. Perferendis earum eos.", + "title": "Laborum totam quidem aut.", + "version": "100.23.22", + "description": "Repudiandae cumque laboriosam. Architecto doloremque et. Et molestiae modi.", "os_major_version": 7, "type": "security_guide" }, { - "id": "5eb7932c-55ca-4adc-b0fd-006537fc4554", + "id": "4ed4ee75-0aeb-40fc-8547-5b69fe302e8f", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Distinctio doloribus tempora magnam.", - "version": "100.23.39", - "description": "Asperiores tempore numquam. Labore repudiandae placeat. Accusantium doloribus rerum.", + "title": "Ex repellendus sed sapiente.", + "version": "100.23.18", + "description": "Repudiandae est natus. Qui tempore ab. Est consequatur eos.", "os_major_version": 7, "type": "security_guide" } @@ -3681,92 +4615,92 @@ "value": { "data": [ { - "id": "29df275d-0e83-459f-bfc3-25b682d71c27", + "id": "00f300e9-a5d6-432d-9066-ad33d94c568a", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Dolor accusamus nisi est.", - "version": "100.24.16", - "description": "Quidem nesciunt blanditiis. Cupiditate quibusdam consequatur. Eum ipsum nihil.", + "title": "Quod quisquam eos quia.", + "version": "100.24.1", + "description": "Blanditiis omnis recusandae. Iste non optio. Eum eligendi quibusdam.", "os_major_version": 7, "type": "security_guide" }, { - "id": "64bc1475-d1a3-4472-b287-925429ff4e99", + "id": "08cd87e5-53f0-44f5-8e3b-8a8727ffc430", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Vero omnis iste vel.", - "version": "100.24.26", - "description": "Est quis voluptatem. Nemo temporibus ducimus. Veniam ut omnis.", + "title": "In sit esse vel.", + "version": "100.23.48", + "description": "Aut voluptatem suscipit. Vero qui aut. Et id eos.", "os_major_version": 7, "type": "security_guide" }, { - "id": "658400e4-d55a-418d-909e-23b4e5ff5d9d", + "id": "09371968-bce8-4425-9020-934cbf6f2da1", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Aut quas dolorem dolor.", - "version": "100.24.10", - "description": "In ut distinctio. Quas omnis eos. Eos id beatae.", + "title": "Voluptatem adipisci explicabo commodi.", + "version": "100.24.4", + "description": "Enim voluptatem quidem. Sed corrupti enim. Qui blanditiis eos.", "os_major_version": 7, "type": "security_guide" }, { - "id": "6cb282f7-dbce-4d7a-8f41-e4eac0bc088b", + "id": "14a3d4fd-8396-4102-92c3-be0c4a802221", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Pariatur fugit eligendi ex.", - "version": "100.24.3", - "description": "Voluptatem voluptas dolor. Id quam nemo. Sed rerum maiores.", + "title": "Ut aliquam facilis aut.", + "version": "100.24.7", + "description": "Repellat eveniet eum. Et debitis totam. Autem aut molestias.", "os_major_version": 7, "type": "security_guide" }, { - "id": "6d713093-7d72-430b-8603-66738c5b90d5", + "id": "214789d9-3a8f-4832-a9d7-4efed4d660e5", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Quia illo numquam quidem.", - "version": "100.24.6", - "description": "Saepe unde beatae. Qui et minima. Esse incidunt expedita.", + "title": "Iste non maiores temporibus.", + "version": "100.23.47", + "description": "Porro corporis unde. Et molestiae rerum. Blanditiis ut reiciendis.", "os_major_version": 7, "type": "security_guide" }, { - "id": "70f1cdee-e809-4faa-adae-44ebe861e886", + "id": "39c55973-2cb9-4e41-a2fa-29c4247d1a35", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Dicta corporis qui itaque.", - "version": "100.24.15", - "description": "Voluptatem maiores et. Recusandae asperiores occaecati. Aut qui et.", + "title": "Esse vel fuga reiciendis.", + "version": "100.24.0", + "description": "Aliquam odio aut. Temporibus et voluptatem. Aliquam non quia.", "os_major_version": 7, "type": "security_guide" }, { - "id": "71a92bc2-a110-4abf-a01e-91a62325c894", + "id": "3ce01501-0bd5-4c81-a83e-35b4a85e399c", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Soluta alias omnis eligendi.", - "version": "100.24.12", - "description": "Iure asperiores ut. Eius voluptate quos. Eos eius ducimus.", + "title": "Facilis suscipit id consequatur.", + "version": "100.23.49", + "description": "Nesciunt vero sint. Distinctio sed aut. Culpa ducimus molestiae.", "os_major_version": 7, "type": "security_guide" }, { - "id": "72f38610-6344-4753-9403-7660cde2a2c5", + "id": "4842aa6e-ce1b-44d7-8150-b357faf1d6fd", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Velit eaque aut cupiditate.", - "version": "100.24.17", - "description": "Nulla qui vitae. Veritatis explicabo in. Consectetur quas totam.", + "title": "Dicta dolorem maiores nam.", + "version": "100.23.39", + "description": "Reprehenderit dolor et. Magnam corporis nobis. Praesentium sed voluptates.", "os_major_version": 7, "type": "security_guide" }, { - "id": "82ecb48c-4af8-4775-aba0-19f4c1656146", + "id": "48e70e7c-1eed-478d-8c1c-5aedaf442fcb", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Ipsum laborum totam eaque.", - "version": "100.24.24", - "description": "Ex accusamus est. Qui a sint. Excepturi quia aut.", + "title": "Non qui cumque deleniti.", + "version": "100.23.38", + "description": "Sed temporibus quibusdam. Itaque qui alias. Aspernatur veniam modi.", "os_major_version": 7, "type": "security_guide" }, { - "id": "885407bb-b38f-4efb-aed2-62b244beb3b3", + "id": "4949d561-c78c-4a89-b880-4a4d3907f817", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Dolores dolorum voluptates qui.", - "version": "100.24.11", - "description": "Commodi accusamus tenetur. Repellat aut labore. Qui distinctio dignissimos.", + "title": "Ullam consequatur assumenda nulla.", + "version": "100.24.3", + "description": "Ea est qui. Dolor fugiat et. Officia eum itaque.", "os_major_version": 7, "type": "security_guide" } @@ -3896,11 +4830,11 @@ "Returns a Security Guide": { "value": { "data": { - "id": "44eecb3a-7b6a-4951-908d-749be98467d2", + "id": "ee7f6223-f147-4c7e-b549-ccc41e51adaf", "ref_id": "xccdf_org.ssgproject.content_benchmark_RHEL-7", - "title": "Delectus rerum non qui.", - "version": "100.26.2", - "description": "Dolores velit possimus. Voluptatem autem dolor. Quasi iusto qui.", + "title": "Odit voluptate velit nihil.", + "version": "100.25.33", + "description": "Officiis quis soluta. Sit ipsa accusantium. Qui necessitatibus praesentium.", "os_major_version": 7, "type": "security_guide" } @@ -3933,7 +4867,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID e784d334-4df3-4561-afba-7fd2d96126c8" + "V2::SecurityGuide not found with ID d9829dc7-8a8d-428b-98d4-c835a415d91b" ] }, "summary": "", @@ -3984,101 +4918,101 @@ "Returns the Rule Tree of a Security Guide": { "value": [ { - "id": "98edb586-d5cc-4468-bd4f-95b78ee4ab00", + "id": "e87bf372-4aea-4f12-b58c-56fac6286b46", "type": "rule_group", "children": [ { - "id": "37e023b8-eecc-47fe-820a-e53e5b2de8a2", + "id": "df964cde-8b10-4848-b2e5-1d4ab977b6f6", "type": "rule" } ] }, { - "id": "a9b27abf-4ac2-4e3b-96db-4524c9498ed8", + "id": "7e8bbaa8-0549-4bc9-a5ec-b23fc341cccf", "type": "rule_group", "children": [ { - "id": "c4954704-2d25-469d-910e-622de18029f3", + "id": "62907cc6-a853-473b-a8ba-827d758f2e1c", "type": "rule" } ] }, { - "id": "9b732a4f-67cd-4231-8ea6-cb7a4a0ed62a", + "id": "ca2d3768-43e8-40fb-b75c-133b141ca22c", "type": "rule_group", "children": [ { - "id": "c713e169-fce3-4399-bd0b-afa3b0469b34", + "id": "0e92a287-b688-4cec-82d8-41018ddd795d", "type": "rule" } ] }, { - "id": "66447076-632f-407e-b99d-e5fc8755d169", + "id": "4828a0dd-1db5-4935-9dc8-b1d622c751b4", "type": "rule_group", "children": [ { - "id": "3656db94-df4f-4133-8c4d-c96f2339fa27", + "id": "e36199b5-be68-48cc-ad26-b7938abe8597", "type": "rule" } ] }, { - "id": "a1733b8a-4b52-4643-a776-be5db6fdb136", + "id": "8d15f0ab-314b-4a6f-97f3-402e49f7dd65", "type": "rule_group", "children": [ { - "id": "0b8b221a-40b3-4dd8-8249-66b07ea07182", + "id": "5f985d31-54c9-401a-ae62-178da00c8223", "type": "rule" } ] }, { - "id": "31b32728-7206-4d6b-b86f-7e9b8c83a1ed", + "id": "1ba7fd4a-9c73-4e31-8bea-7ea3ea906b78", "type": "rule_group", "children": [ { - "id": "d93dd6cd-30ae-4ca7-9e93-5a9d4455db99", + "id": "3f5d6664-5b8d-4b97-ac62-ab77ac37b46c", "type": "rule" } ] }, { - "id": "027de269-834c-4a5a-a4a1-23d88214778d", + "id": "d7045b9c-53b0-41a2-b0aa-e8b320d7a216", "type": "rule_group", "children": [ { - "id": "9ea203e1-c22c-4dec-b6ae-f3e3d0170c8d", + "id": "4ee409ae-f034-4bc0-8e12-ca506f23014b", "type": "rule" } ] }, { - "id": "df56d01c-5711-47d1-90d9-ad5643f0ef42", + "id": "01df7edd-65be-49b8-9889-c0292f8eb765", "type": "rule_group", "children": [ { - "id": "82f5bea1-667d-4769-ae1b-ab5106749ec2", + "id": "e570eef9-bf1e-4ec3-b196-4e6dee7a0b10", "type": "rule" } ] }, { - "id": "484d3759-cb09-4c08-86d5-78129abff083", + "id": "d56e0f5c-51a5-485c-a4f9-d37416236418", "type": "rule_group", "children": [ { - "id": "ba7adce6-3484-4917-8ea8-22c1288a66af", + "id": "2d6acfdf-c925-4114-ae9b-0c7516af3e72", "type": "rule" } ] }, { - "id": "82f1bf74-84a1-4ce2-99d8-f2bf035ad69b", + "id": "49ea00be-9811-4c00-8d91-be1e9d5e6819", "type": "rule_group", "children": [ { - "id": "8558bdb3-dca9-4daf-a2e5-262e536b2ce6", + "id": "44a04653-f6e8-4616-b00f-ca8fcef78f09", "type": "rule" } ] @@ -4102,7 +5036,7 @@ "Description of an error when requesting a non-existing Security Guide": { "value": { "errors": [ - "V2::SecurityGuide not found with ID 97fe0cee-592f-4443-8304-4a20555e7db5" + "V2::SecurityGuide not found with ID d7253356-a8df-44e5-9999-d8d951b54237" ] }, "summary": "", @@ -4200,10 +5134,10 @@ "value": { "data": [ { - "id": "dd78fe80-539d-47b9-8743-ae805b643072", - "title": "Dignissimos laudantium enim eveniet.", - "ref_id": "xccdf_org.ssgproject.content_profile_6649f74197907918c81f7cf70709bdf2", - "security_guide_version": "100.26.37", + "id": "97f9c171-62cc-421f-aa9d-5fbaaa26d0a5", + "title": "Aspernatur sit aut nostrum.", + "ref_id": "xccdf_org.ssgproject.content_profile_aa1dd6474f784bf76288bfc8e2ce03f1", + "security_guide_version": "100.26.16", "os_major_version": 7, "os_minor_versions": [ 3, @@ -4230,10 +5164,10 @@ "value": { "data": [ { - "id": "5675be3c-326f-45a5-9ca5-505e24cd414b", - "title": "Ad distinctio architecto temporibus.", - "ref_id": "xccdf_org.ssgproject.content_profile_ee94958849a9ac497e5b1c0895ee730d", - "security_guide_version": "100.26.41", + "id": "af8d41f5-d81a-4985-b706-03cb5d7dd225", + "title": "Doloribus sit est ex.", + "ref_id": "xccdf_org.ssgproject.content_profile_23d4a5a3a352c5a190a3de03ccd1b429", + "security_guide_version": "100.26.20", "os_major_version": 7, "os_minor_versions": [ 3, @@ -4417,39 +5351,39 @@ "value": { "data": [ { - "id": "2eff79a5-b4ef-4835-a281-74d862f14161", - "display_name": "terry.test", + "id": "158c69ae-6722-4ccb-b425-1b34ffc0a31d", + "display_name": "barton.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.243Z", - "stale_timestamp": "2034-04-09T12:25:30.243Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.243Z", - "updated": "2024-04-09T12:25:30.243Z", + "culled_timestamp": "2034-05-07T12:31:32.923Z", + "stale_timestamp": "2034-04-23T12:31:32.923Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.923Z", + "updated": "2024-04-23T12:31:32.923Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "back-end", - "namespace": "hacking" + "key": "matrix", + "value": "solid state", + "namespace": "backing up" }, { - "key": "monitor", - "value": "open-source", - "namespace": "navigating" + "key": "system", + "value": "cross-platform", + "namespace": "transmitting" }, { - "key": "microchip", - "value": "neural", - "namespace": "hacking" + "key": "feed", + "value": "multi-byte", + "namespace": "connecting" }, { - "key": "firewall", - "value": "haptic", - "namespace": "indexing" + "key": "application", + "value": "digital", + "namespace": "backing up" }, { - "key": "card", - "value": "primary", - "namespace": "generating" + "key": "alarm", + "value": "1080p", + "namespace": "calculating" } ], "type": "system", @@ -4458,39 +5392,39 @@ "policies": [] }, { - "id": "3e9100f0-2394-4ba0-9ed4-fa3042c08ece", - "display_name": "spinka.test", + "id": "2c0a56e5-8e21-46c6-ac2c-e18c6825b31c", + "display_name": "vandervort.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.271Z", - "stale_timestamp": "2034-04-09T12:25:30.271Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.271Z", - "updated": "2024-04-09T12:25:30.271Z", + "culled_timestamp": "2034-05-07T12:31:32.917Z", + "stale_timestamp": "2034-04-23T12:31:32.917Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.917Z", + "updated": "2024-04-23T12:31:32.917Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "digital", + "key": "interface", + "value": "back-end", "namespace": "programming" }, { - "key": "interface", - "value": "solid state", - "namespace": "hacking" + "key": "driver", + "value": "open-source", + "namespace": "generating" }, { - "key": "program", - "value": "solid state", - "namespace": "overriding" + "key": "matrix", + "value": "online", + "namespace": "connecting" }, { - "key": "microchip", - "value": "auxiliary", - "namespace": "hacking" + "key": "panel", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "program", - "value": "bluetooth", - "namespace": "calculating" + "key": "sensor", + "value": "solid state", + "namespace": "compressing" } ], "type": "system", @@ -4499,39 +5433,39 @@ "policies": [] }, { - "id": "5366085a-d730-4811-89cb-dfcb4d0b39f2", - "display_name": "terry.example", + "id": "2d8acc8f-407c-40bf-822e-ac5bd637bfe4", + "display_name": "gleason.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.260Z", - "stale_timestamp": "2034-04-09T12:25:30.260Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.260Z", - "updated": "2024-04-09T12:25:30.260Z", + "culled_timestamp": "2034-05-07T12:31:32.925Z", + "stale_timestamp": "2034-04-23T12:31:32.925Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.925Z", + "updated": "2024-04-23T12:31:32.925Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "auxiliary", - "namespace": "generating" + "key": "alarm", + "value": "mobile", + "namespace": "indexing" }, { - "key": "bandwidth", - "value": "cross-platform", + "key": "driver", + "value": "online", "namespace": "bypassing" }, { - "key": "pixel", - "value": "redundant", - "namespace": "generating" + "key": "array", + "value": "1080p", + "namespace": "copying" }, { - "key": "circuit", + "key": "system", "value": "cross-platform", - "namespace": "hacking" + "namespace": "backing up" }, { - "key": "array", - "value": "bluetooth", - "namespace": "connecting" + "key": "microchip", + "value": "digital", + "namespace": "generating" } ], "type": "system", @@ -4540,39 +5474,39 @@ "policies": [] }, { - "id": "61af45b7-700d-48e6-b505-93ead5ff80fd", - "display_name": "streich.example", + "id": "2eab4864-d23f-499f-bad4-c3c11b9d7e25", + "display_name": "donnelly.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.248Z", - "stale_timestamp": "2034-04-09T12:25:30.248Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.248Z", - "updated": "2024-04-09T12:25:30.248Z", + "culled_timestamp": "2034-05-07T12:31:32.932Z", + "stale_timestamp": "2034-04-23T12:31:32.932Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.932Z", + "updated": "2024-04-23T12:31:32.932Z", "insights_id": null, "tags": [ { "key": "array", - "value": "bluetooth", - "namespace": "copying" + "value": "haptic", + "namespace": "indexing" }, { - "key": "program", - "value": "digital", - "namespace": "overriding" + "key": "bus", + "value": "open-source", + "namespace": "calculating" }, { - "key": "card", - "value": "haptic", - "namespace": "generating" + "key": "panel", + "value": "redundant", + "namespace": "backing up" }, { "key": "monitor", - "value": "1080p", - "namespace": "quantifying" + "value": "haptic", + "namespace": "transmitting" }, { - "key": "sensor", - "value": "auxiliary", - "namespace": "generating" + "key": "protocol", + "value": "optical", + "namespace": "hacking" } ], "type": "system", @@ -4581,39 +5515,39 @@ "policies": [] }, { - "id": "66bb6175-a3b3-4faf-a0c9-b92294527bd8", - "display_name": "rogahn.test", + "id": "4f0fabf1-1b33-4db2-94f3-c3ef11943e66", + "display_name": "green-metz.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.261Z", - "stale_timestamp": "2034-04-09T12:25:30.261Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.261Z", - "updated": "2024-04-09T12:25:30.261Z", + "culled_timestamp": "2034-05-07T12:31:32.923Z", + "stale_timestamp": "2034-04-23T12:31:32.923Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.923Z", + "updated": "2024-04-23T12:31:32.923Z", "insights_id": null, "tags": [ { - "key": "bus", - "value": "open-source", - "namespace": "connecting" + "key": "panel", + "value": "online", + "namespace": "compressing" }, { - "key": "transmitter", - "value": "digital", - "namespace": "programming" + "key": "sensor", + "value": "haptic", + "namespace": "navigating" }, { - "key": "capacitor", - "value": "1080p", - "namespace": "generating" + "key": "bus", + "value": "virtual", + "namespace": "quantifying" }, { - "key": "protocol", - "value": "multi-byte", - "namespace": "connecting" + "key": "bus", + "value": "haptic", + "namespace": "backing up" }, { - "key": "bus", - "value": "cross-platform", - "namespace": "calculating" + "key": "pixel", + "value": "virtual", + "namespace": "connecting" } ], "type": "system", @@ -4622,39 +5556,39 @@ "policies": [] }, { - "id": "765413a7-c32d-44a4-bb53-0e7793da75df", - "display_name": "ernser.test", + "id": "6d2c0fc1-fd7f-4991-851f-47ee81435239", + "display_name": "glover.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.272Z", - "stale_timestamp": "2034-04-09T12:25:30.272Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.272Z", - "updated": "2024-04-09T12:25:30.272Z", + "culled_timestamp": "2034-05-07T12:31:32.928Z", + "stale_timestamp": "2034-04-23T12:31:32.928Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.928Z", + "updated": "2024-04-23T12:31:32.928Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "neural", - "namespace": "quantifying" + "key": "driver", + "value": "wireless", + "namespace": "calculating" }, { - "key": "system", - "value": "wireless", - "namespace": "quantifying" + "key": "program", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "hard drive", - "value": "haptic", - "namespace": "indexing" + "key": "monitor", + "value": "auxiliary", + "namespace": "connecting" }, { - "key": "interface", - "value": "back-end", - "namespace": "backing up" + "key": "matrix", + "value": "wireless", + "namespace": "compressing" }, { - "key": "driver", - "value": "bluetooth", - "namespace": "synthesizing" + "key": "pixel", + "value": "cross-platform", + "namespace": "indexing" } ], "type": "system", @@ -4663,38 +5597,38 @@ "policies": [] }, { - "id": "834eceae-0683-4ab4-a801-0e9bd1d1b178", - "display_name": "baumbach-schulist.example", + "id": "6ee24210-cf7d-49be-9bfc-3a3dd4d5f6d3", + "display_name": "little.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.258Z", - "stale_timestamp": "2034-04-09T12:25:30.258Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.258Z", - "updated": "2024-04-09T12:25:30.258Z", + "culled_timestamp": "2034-05-07T12:31:32.918Z", + "stale_timestamp": "2034-04-23T12:31:32.918Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.918Z", + "updated": "2024-04-23T12:31:32.919Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "mobile", - "namespace": "overriding" + "key": "bandwidth", + "value": "digital", + "namespace": "calculating" }, { - "key": "card", - "value": "1080p", - "namespace": "indexing" + "key": "program", + "value": "solid state", + "namespace": "generating" }, { - "key": "microchip", - "value": "haptic", - "namespace": "programming" + "key": "matrix", + "value": "virtual", + "namespace": "generating" }, { - "key": "microchip", - "value": "mobile", - "namespace": "hacking" + "key": "firewall", + "value": "1080p", + "namespace": "synthesizing" }, { - "key": "card", - "value": "redundant", + "key": "system", + "value": "auxiliary", "namespace": "bypassing" } ], @@ -4704,39 +5638,39 @@ "policies": [] }, { - "id": "83a14647-cc20-4d25-886f-b8a8479e7f81", - "display_name": "wyman.example", + "id": "710586be-56fb-42c9-b0dd-9ea1b5002a45", + "display_name": "funk.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.245Z", - "stale_timestamp": "2034-04-09T12:25:30.245Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.245Z", - "updated": "2024-04-09T12:25:30.245Z", + "culled_timestamp": "2034-05-07T12:31:32.921Z", + "stale_timestamp": "2034-04-23T12:31:32.921Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.921Z", + "updated": "2024-04-23T12:31:32.921Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "wireless", - "namespace": "copying" + "key": "protocol", + "value": "solid state", + "namespace": "backing up" }, { - "key": "panel", - "value": "auxiliary", - "namespace": "programming" + "key": "matrix", + "value": "redundant", + "namespace": "copying" }, { "key": "bandwidth", - "value": "bluetooth", - "namespace": "connecting" + "value": "open-source", + "namespace": "copying" }, { - "key": "feed", - "value": "redundant", - "namespace": "transmitting" + "key": "firewall", + "value": "back-end", + "namespace": "programming" }, { - "key": "firewall", - "value": "neural", - "namespace": "bypassing" + "key": "protocol", + "value": "digital", + "namespace": "compressing" } ], "type": "system", @@ -4745,39 +5679,39 @@ "policies": [] }, { - "id": "865240a3-6ee7-476c-8431-40debe89baab", - "display_name": "hane.example", + "id": "74d52908-ebf2-4dce-a38f-1c6c4ef5647f", + "display_name": "bechtelar.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.252Z", - "stale_timestamp": "2034-04-09T12:25:30.252Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.252Z", - "updated": "2024-04-09T12:25:30.252Z", + "culled_timestamp": "2034-05-07T12:31:32.931Z", + "stale_timestamp": "2034-04-23T12:31:32.931Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.931Z", + "updated": "2024-04-23T12:31:32.931Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "neural", - "namespace": "programming" + "key": "application", + "value": "bluetooth", + "namespace": "generating" }, { - "key": "port", - "value": "haptic", - "namespace": "calculating" + "key": "bus", + "value": "primary", + "namespace": "copying" }, { - "key": "interface", - "value": "neural", - "namespace": "backing up" + "key": "bus", + "value": "multi-byte", + "namespace": "parsing" }, { - "key": "panel", - "value": "wireless", - "namespace": "generating" + "key": "monitor", + "value": "open-source", + "namespace": "synthesizing" }, { - "key": "capacitor", - "value": "haptic", - "namespace": "navigating" + "key": "array", + "value": "mobile", + "namespace": "generating" } ], "type": "system", @@ -4786,39 +5720,39 @@ "policies": [] }, { - "id": "8aa4c6cf-02d9-489d-a912-f391ca78524a", - "display_name": "watsica.test", + "id": "7eec4af4-52f6-4807-bcff-143fb91a873e", + "display_name": "ortiz-harber.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.254Z", - "stale_timestamp": "2034-04-09T12:25:30.254Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.254Z", - "updated": "2024-04-09T12:25:30.254Z", + "culled_timestamp": "2034-05-07T12:31:32.934Z", + "stale_timestamp": "2034-04-23T12:31:32.934Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.934Z", + "updated": "2024-04-23T12:31:32.934Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "mobile", - "namespace": "overriding" + "key": "interface", + "value": "wireless", + "namespace": "calculating" }, { - "key": "card", - "value": "solid state", - "namespace": "generating" + "key": "pixel", + "value": "virtual", + "namespace": "programming" }, { - "key": "microchip", - "value": "optical", - "namespace": "parsing" + "key": "system", + "value": "back-end", + "namespace": "overriding" }, { - "key": "transmitter", - "value": "bluetooth", - "namespace": "connecting" + "key": "protocol", + "value": "wireless", + "namespace": "navigating" }, { - "key": "firewall", - "value": "primary", - "namespace": "calculating" + "key": "feed", + "value": "virtual", + "namespace": "bypassing" } ], "type": "system", @@ -4846,39 +5780,39 @@ "value": { "data": [ { - "id": "0a6c0734-d670-4484-a010-d74c05d6e6b8", - "display_name": "dooley.test", + "id": "45efaf0d-e38f-4f0e-bf33-4ba43623fac0", + "display_name": "ratke.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.334Z", - "stale_timestamp": "2034-04-09T12:25:30.334Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.334Z", - "updated": "2024-04-09T12:25:30.334Z", + "culled_timestamp": "2034-05-07T12:31:32.971Z", + "stale_timestamp": "2034-04-23T12:31:32.971Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.971Z", + "updated": "2024-04-23T12:31:32.971Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "back-end", - "namespace": "copying" + "key": "microchip", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "bus", - "value": "auxiliary", - "namespace": "connecting" + "key": "driver", + "value": "wireless", + "namespace": "backing up" }, { - "key": "driver", - "value": "multi-byte", - "namespace": "navigating" + "key": "feed", + "value": "solid state", + "namespace": "connecting" }, { - "key": "circuit", - "value": "open-source", - "namespace": "overriding" + "key": "protocol", + "value": "neural", + "namespace": "calculating" }, { - "key": "pixel", - "value": "mobile", - "namespace": "parsing" + "key": "program", + "value": "back-end", + "namespace": "indexing" } ], "type": "system", @@ -4887,39 +5821,39 @@ "policies": [] }, { - "id": "10f3a6e4-fdfe-4eda-8c4e-593cc269c0c5", - "display_name": "borer.example", + "id": "5162323d-210d-488b-bb92-bf5e218ffd48", + "display_name": "jerde.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.321Z", - "stale_timestamp": "2034-04-09T12:25:30.321Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.321Z", - "updated": "2024-04-09T12:25:30.321Z", + "culled_timestamp": "2034-05-07T12:31:32.991Z", + "stale_timestamp": "2034-04-23T12:31:32.991Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.991Z", + "updated": "2024-04-23T12:31:32.991Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "back-end", - "namespace": "navigating" + "key": "sensor", + "value": "haptic", + "namespace": "compressing" }, { - "key": "panel", - "value": "redundant", - "namespace": "bypassing" + "key": "circuit", + "value": "bluetooth", + "namespace": "hacking" }, { - "key": "transmitter", - "value": "haptic", - "namespace": "bypassing" + "key": "system", + "value": "virtual", + "namespace": "copying" }, { - "key": "monitor", - "value": "mobile", - "namespace": "generating" + "key": "firewall", + "value": "auxiliary", + "namespace": "overriding" }, { - "key": "monitor", - "value": "wireless", - "namespace": "hacking" + "key": "matrix", + "value": "back-end", + "namespace": "navigating" } ], "type": "system", @@ -4928,39 +5862,39 @@ "policies": [] }, { - "id": "1304eb97-abba-45f2-aebb-87a7cd6bf69d", - "display_name": "connelly.test", + "id": "53966e85-7c03-4c53-9bcf-652e19f864f3", + "display_name": "sipes.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.320Z", - "stale_timestamp": "2034-04-09T12:25:30.320Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.320Z", - "updated": "2024-04-09T12:25:30.320Z", + "culled_timestamp": "2034-05-07T12:31:32.992Z", + "stale_timestamp": "2034-04-23T12:31:32.992Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.992Z", + "updated": "2024-04-23T12:31:32.992Z", "insights_id": null, "tags": [ { - "key": "capacitor", - "value": "auxiliary", - "namespace": "navigating" + "key": "microchip", + "value": "back-end", + "namespace": "connecting" }, { - "key": "bandwidth", - "value": "solid state", - "namespace": "generating" + "key": "transmitter", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "interface", - "value": "wireless", - "namespace": "backing up" + "key": "alarm", + "value": "haptic", + "namespace": "parsing" }, { - "key": "bandwidth", - "value": "wireless", - "namespace": "parsing" + "key": "driver", + "value": "1080p", + "namespace": "compressing" }, { - "key": "feed", - "value": "bluetooth", - "namespace": "synthesizing" + "key": "program", + "value": "optical", + "namespace": "parsing" } ], "type": "system", @@ -4969,39 +5903,39 @@ "policies": [] }, { - "id": "17924627-7c82-430a-84fc-d71ab3b709ad", - "display_name": "farrell.test", + "id": "63accee4-6e12-4171-ba04-54a5a21772cb", + "display_name": "jones.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.326Z", - "stale_timestamp": "2034-04-09T12:25:30.326Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.326Z", - "updated": "2024-04-09T12:25:30.326Z", + "culled_timestamp": "2034-05-07T12:31:32.973Z", + "stale_timestamp": "2034-04-23T12:31:32.973Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.973Z", + "updated": "2024-04-23T12:31:32.973Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "primary", - "namespace": "calculating" + "key": "firewall", + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "protocol", - "value": "solid state", - "namespace": "indexing" + "key": "system", + "value": "multi-byte", + "namespace": "navigating" }, { "key": "program", - "value": "optical", - "namespace": "navigating" + "value": "wireless", + "namespace": "compressing" }, { - "key": "matrix", - "value": "1080p", - "namespace": "navigating" + "key": "microchip", + "value": "redundant", + "namespace": "synthesizing" }, { - "key": "transmitter", - "value": "back-end", - "namespace": "hacking" + "key": "firewall", + "value": "virtual", + "namespace": "programming" } ], "type": "system", @@ -5010,39 +5944,39 @@ "policies": [] }, { - "id": "1ad8eb39-44ba-41c7-8c8f-43d7d7ef6b46", - "display_name": "armstrong.test", + "id": "67c3d9b2-3d70-4790-82ff-2705099b383a", + "display_name": "weimann.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.328Z", - "stale_timestamp": "2034-04-09T12:25:30.328Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.328Z", - "updated": "2024-04-09T12:25:30.328Z", + "culled_timestamp": "2034-05-07T12:31:32.976Z", + "stale_timestamp": "2034-04-23T12:31:32.976Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.976Z", + "updated": "2024-04-23T12:31:32.976Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "redundant", - "namespace": "synthesizing" + "key": "driver", + "value": "neural", + "namespace": "backing up" }, { - "key": "hard drive", - "value": "optical", - "namespace": "navigating" + "key": "alarm", + "value": "haptic", + "namespace": "copying" }, { - "key": "pixel", - "value": "mobile", - "namespace": "synthesizing" + "key": "microchip", + "value": "1080p", + "namespace": "compressing" }, { - "key": "sensor", - "value": "online", - "namespace": "navigating" + "key": "alarm", + "value": "digital", + "namespace": "generating" }, { - "key": "protocol", - "value": "1080p", - "namespace": "connecting" + "key": "card", + "value": "optical", + "namespace": "synthesizing" } ], "type": "system", @@ -5051,39 +5985,39 @@ "policies": [] }, { - "id": "283d7230-969d-4e36-835e-83b07271e4fd", - "display_name": "mayert.example", + "id": "69c48a25-1e0c-44f3-86a3-afc96c64b6c6", + "display_name": "walsh-larkin.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.306Z", - "stale_timestamp": "2034-04-09T12:25:30.306Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.306Z", - "updated": "2024-04-09T12:25:30.306Z", + "culled_timestamp": "2034-05-07T12:31:32.993Z", + "stale_timestamp": "2034-04-23T12:31:32.993Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.993Z", + "updated": "2024-04-23T12:31:32.993Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "auxiliary", - "namespace": "copying" + "key": "capacitor", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "monitor", - "value": "online", - "namespace": "connecting" + "key": "circuit", + "value": "1080p", + "namespace": "hacking" }, { - "key": "hard drive", - "value": "wireless", - "namespace": "bypassing" + "key": "sensor", + "value": "neural", + "namespace": "synthesizing" }, { - "key": "program", - "value": "cross-platform", - "namespace": "navigating" + "key": "application", + "value": "haptic", + "namespace": "parsing" }, { - "key": "port", - "value": "wireless", - "namespace": "indexing" + "key": "matrix", + "value": "solid state", + "namespace": "quantifying" } ], "type": "system", @@ -5092,39 +6026,39 @@ "policies": [] }, { - "id": "2cd9feef-d199-4c7d-8f78-6a4f462708bd", - "display_name": "bechtelar-crist.example", + "id": "874e533e-735b-4f4d-9d1d-6adf7a2ee2d7", + "display_name": "bartoletti.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.322Z", - "stale_timestamp": "2034-04-09T12:25:30.322Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.322Z", - "updated": "2024-04-09T12:25:30.322Z", + "culled_timestamp": "2034-05-07T12:31:32.972Z", + "stale_timestamp": "2034-04-23T12:31:32.972Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.972Z", + "updated": "2024-04-23T12:31:32.972Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "virtual", - "namespace": "bypassing" + "key": "bandwidth", + "value": "auxiliary", + "namespace": "copying" }, { - "key": "capacitor", + "key": "microchip", "value": "mobile", - "namespace": "quantifying" + "namespace": "overriding" }, { - "key": "program", - "value": "open-source", - "namespace": "synthesizing" + "key": "bus", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "protocol", - "value": "haptic", - "namespace": "overriding" + "key": "application", + "value": "optical", + "namespace": "quantifying" }, { - "key": "alarm", - "value": "neural", - "namespace": "programming" + "key": "card", + "value": "mobile", + "namespace": "indexing" } ], "type": "system", @@ -5133,39 +6067,39 @@ "policies": [] }, { - "id": "34e51617-2149-4542-af12-238e7515e152", - "display_name": "ortiz.test", + "id": "910a8087-416b-497e-a6f2-5cdabab61acd", + "display_name": "zieme-hamill.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.332Z", - "stale_timestamp": "2034-04-09T12:25:30.332Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.332Z", - "updated": "2024-04-09T12:25:30.332Z", + "culled_timestamp": "2034-05-07T12:31:32.974Z", + "stale_timestamp": "2034-04-23T12:31:32.974Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.974Z", + "updated": "2024-04-23T12:31:32.974Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "back-end", - "namespace": "overriding" + "key": "program", + "value": "neural", + "namespace": "quantifying" }, { - "key": "panel", - "value": "redundant", - "namespace": "programming" + "key": "application", + "value": "1080p", + "namespace": "generating" }, { - "key": "application", - "value": "neural", - "namespace": "bypassing" + "key": "feed", + "value": "wireless", + "namespace": "compressing" }, { - "key": "system", - "value": "bluetooth", - "namespace": "connecting" + "key": "interface", + "value": "digital", + "namespace": "compressing" }, { - "key": "circuit", - "value": "1080p", - "namespace": "programming" + "key": "protocol", + "value": "wireless", + "namespace": "connecting" } ], "type": "system", @@ -5174,39 +6108,39 @@ "policies": [] }, { - "id": "34eca1f5-2a8b-40df-9ca9-401ddcba4fc3", - "display_name": "towne.test", + "id": "954ba237-7170-4611-9400-19536dc26a98", + "display_name": "witting.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.331Z", - "stale_timestamp": "2034-04-09T12:25:30.331Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.331Z", - "updated": "2024-04-09T12:25:30.331Z", + "culled_timestamp": "2034-05-07T12:31:32.994Z", + "stale_timestamp": "2034-04-23T12:31:32.994Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.994Z", + "updated": "2024-04-23T12:31:32.994Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "multi-byte", - "namespace": "navigating" - }, - { - "key": "circuit", - "value": "online", + "key": "microchip", + "value": "primary", "namespace": "overriding" }, { - "key": "circuit", - "value": "1080p", - "namespace": "programming" + "key": "system", + "value": "cross-platform", + "namespace": "compressing" }, { - "key": "circuit", + "key": "card", "value": "multi-byte", - "namespace": "synthesizing" + "namespace": "parsing" + }, + { + "key": "array", + "value": "back-end", + "namespace": "parsing" }, { "key": "capacitor", - "value": "mobile", - "namespace": "backing up" + "value": "wireless", + "namespace": "copying" } ], "type": "system", @@ -5215,39 +6149,39 @@ "policies": [] }, { - "id": "47be38ea-2dbe-47ee-baf3-a10a77151b6e", - "display_name": "wilkinson-ruecker.example", + "id": "98b592e6-1d65-4e23-92c7-2ac14e809583", + "display_name": "dooley.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.324Z", - "stale_timestamp": "2034-04-09T12:25:30.324Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.324Z", - "updated": "2024-04-09T12:25:30.324Z", + "culled_timestamp": "2034-05-07T12:31:32.977Z", + "stale_timestamp": "2034-04-23T12:31:32.977Z", + "stale_warning_timestamp": "2034-04-30T12:31:32.977Z", + "updated": "2024-04-23T12:31:32.977Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "solid state", - "namespace": "overriding" + "key": "interface", + "value": "redundant", + "namespace": "programming" }, { - "key": "transmitter", - "value": "haptic", - "namespace": "transmitting" + "key": "monitor", + "value": "optical", + "namespace": "backing up" }, { - "key": "protocol", - "value": "1080p", - "namespace": "transmitting" + "key": "pixel", + "value": "mobile", + "namespace": "programming" }, { - "key": "transmitter", - "value": "multi-byte", + "key": "panel", + "value": "auxiliary", "namespace": "calculating" }, { "key": "application", - "value": "1080p", - "namespace": "generating" + "value": "multi-byte", + "namespace": "backing up" } ], "type": "system", @@ -5276,39 +6210,39 @@ "value": { "data": [ { - "id": "08b4976c-dd55-4313-81bf-c1319a8d750a", - "display_name": "harvey.test", + "id": "1b1a8e5a-d68d-47e6-82a5-671ce42255f0", + "display_name": "thiel.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.369Z", - "stale_timestamp": "2034-04-09T12:25:30.369Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.369Z", - "updated": "2024-04-09T12:25:30.369Z", + "culled_timestamp": "2034-05-07T12:31:33.033Z", + "stale_timestamp": "2034-04-23T12:31:33.033Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.033Z", + "updated": "2024-04-23T12:31:33.033Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "back-end", - "namespace": "navigating" + "key": "port", + "value": "multi-byte", + "namespace": "parsing" }, { - "key": "matrix", - "value": "neural", - "namespace": "navigating" + "key": "circuit", + "value": "mobile", + "namespace": "calculating" }, { - "key": "capacitor", - "value": "1080p", - "namespace": "overriding" + "key": "circuit", + "value": "redundant", + "namespace": "backing up" }, { - "key": "system", - "value": "cross-platform", - "namespace": "indexing" + "key": "hard drive", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "hard drive", - "value": "optical", - "namespace": "quantifying" + "key": "driver", + "value": "cross-platform", + "namespace": "transmitting" } ], "type": "system", @@ -5317,39 +6251,39 @@ "policies": [] }, { - "id": "1207837d-7d18-4a4b-9bd9-4290583921cf", - "display_name": "considine-abbott.example", + "id": "1f0619c5-9757-4ae6-9304-22ead287fa26", + "display_name": "mckenzie.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.380Z", - "stale_timestamp": "2034-04-09T12:25:30.380Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.380Z", - "updated": "2024-04-09T12:25:30.381Z", + "culled_timestamp": "2034-05-07T12:31:33.022Z", + "stale_timestamp": "2034-04-23T12:31:33.022Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.022Z", + "updated": "2024-04-23T12:31:33.022Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "cross-platform", - "namespace": "transmitting" + "key": "capacitor", + "value": "digital", + "namespace": "copying" }, { "key": "microchip", - "value": "back-end", - "namespace": "bypassing" + "value": "cross-platform", + "namespace": "generating" }, { - "key": "protocol", - "value": "auxiliary", - "namespace": "synthesizing" + "key": "driver", + "value": "neural", + "namespace": "connecting" }, { - "key": "sensor", - "value": "multi-byte", - "namespace": "quantifying" + "key": "bus", + "value": "bluetooth", + "namespace": "compressing" }, { - "key": "driver", + "key": "application", "value": "cross-platform", - "namespace": "navigating" + "namespace": "backing up" } ], "type": "system", @@ -5358,39 +6292,39 @@ "policies": [] }, { - "id": "133e4558-8b9c-4d47-91f8-ebb4b0a75f2a", - "display_name": "morar.test", + "id": "2390b63e-18be-41b4-9413-fa721aa26810", + "display_name": "huel.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.384Z", - "stale_timestamp": "2034-04-09T12:25:30.384Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.384Z", - "updated": "2024-04-09T12:25:30.384Z", + "culled_timestamp": "2034-05-07T12:31:33.019Z", + "stale_timestamp": "2034-04-23T12:31:33.019Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.019Z", + "updated": "2024-04-23T12:31:33.019Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "primary", - "namespace": "copying" + "key": "hard drive", + "value": "multi-byte", + "namespace": "calculating" }, { - "key": "hard drive", - "value": "open-source", - "namespace": "programming" + "key": "card", + "value": "wireless", + "namespace": "hacking" }, { - "key": "transmitter", - "value": "open-source", - "namespace": "parsing" + "key": "sensor", + "value": "wireless", + "namespace": "connecting" }, { - "key": "hard drive", - "value": "online", - "namespace": "parsing" + "key": "alarm", + "value": "back-end", + "namespace": "programming" }, { - "key": "microchip", - "value": "auxiliary", - "namespace": "synthesizing" + "key": "matrix", + "value": "1080p", + "namespace": "connecting" } ], "type": "system", @@ -5399,39 +6333,39 @@ "policies": [] }, { - "id": "1b875c83-fafd-4719-983a-b1b1a3270bde", - "display_name": "witting.test", + "id": "245615ee-ef50-4782-bede-67e79e55e07f", + "display_name": "smith.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.367Z", - "stale_timestamp": "2034-04-09T12:25:30.367Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.367Z", - "updated": "2024-04-09T12:25:30.367Z", + "culled_timestamp": "2034-05-07T12:31:33.034Z", + "stale_timestamp": "2034-04-23T12:31:33.034Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.034Z", + "updated": "2024-04-23T12:31:33.034Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "cross-platform", - "namespace": "parsing" + "key": "transmitter", + "value": "online", + "namespace": "hacking" }, { - "key": "matrix", - "value": "haptic", - "namespace": "synthesizing" + "key": "card", + "value": "auxiliary", + "namespace": "hacking" }, { - "key": "microchip", - "value": "mobile", - "namespace": "transmitting" + "key": "panel", + "value": "primary", + "namespace": "generating" }, { - "key": "firewall", - "value": "online", - "namespace": "programming" + "key": "hard drive", + "value": "redundant", + "namespace": "overriding" }, { - "key": "sensor", - "value": "virtual", - "namespace": "synthesizing" + "key": "alarm", + "value": "1080p", + "namespace": "programming" } ], "type": "system", @@ -5440,39 +6374,39 @@ "policies": [] }, { - "id": "2f533359-f8a9-4d38-af9f-7ad06248235b", - "display_name": "blick.test", + "id": "2af520a8-a283-4f0b-b417-1a69b9272de3", + "display_name": "senger-predovic.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.376Z", - "stale_timestamp": "2034-04-09T12:25:30.376Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.376Z", - "updated": "2024-04-09T12:25:30.376Z", + "culled_timestamp": "2034-05-07T12:31:33.020Z", + "stale_timestamp": "2034-04-23T12:31:33.020Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.020Z", + "updated": "2024-04-23T12:31:33.020Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "mobile", - "namespace": "calculating" + "key": "sensor", + "value": "back-end", + "namespace": "hacking" }, { - "key": "card", - "value": "optical", - "namespace": "quantifying" + "key": "monitor", + "value": "open-source", + "namespace": "hacking" }, { - "key": "circuit", + "key": "program", "value": "wireless", - "namespace": "copying" + "namespace": "generating" }, { - "key": "system", - "value": "open-source", - "namespace": "generating" + "key": "driver", + "value": "cross-platform", + "namespace": "parsing" }, { "key": "alarm", "value": "primary", - "namespace": "programming" + "namespace": "hacking" } ], "type": "system", @@ -5481,39 +6415,39 @@ "policies": [] }, { - "id": "2fa73b60-f485-4887-a801-61051f1720fe", - "display_name": "kiehn.test", + "id": "3664532c-8bc9-4789-8d66-f9a72b85789d", + "display_name": "schmitt-grant.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.373Z", - "stale_timestamp": "2034-04-09T12:25:30.373Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.373Z", - "updated": "2024-04-09T12:25:30.373Z", + "culled_timestamp": "2034-05-07T12:31:33.021Z", + "stale_timestamp": "2034-04-23T12:31:33.021Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.021Z", + "updated": "2024-04-23T12:31:33.021Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "bluetooth", + "key": "alarm", + "value": "1080p", "namespace": "programming" }, { "key": "program", - "value": "multi-byte", - "namespace": "quantifying" + "value": "wireless", + "namespace": "bypassing" }, { - "key": "driver", - "value": "cross-platform", - "namespace": "quantifying" + "key": "port", + "value": "digital", + "namespace": "connecting" }, { - "key": "circuit", - "value": "primary", - "namespace": "synthesizing" + "key": "matrix", + "value": "open-source", + "namespace": "bypassing" }, { - "key": "pixel", - "value": "redundant", - "namespace": "connecting" + "key": "alarm", + "value": "open-source", + "namespace": "generating" } ], "type": "system", @@ -5522,39 +6456,39 @@ "policies": [] }, { - "id": "55672723-5c24-42bf-8ddb-32d58c473776", - "display_name": "kirlin.example", + "id": "3a5c8b7f-65b6-498a-8199-ecdb7cf79d60", + "display_name": "pouros-kiehn.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.363Z", - "stale_timestamp": "2034-04-09T12:25:30.363Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.363Z", - "updated": "2024-04-09T12:25:30.363Z", + "culled_timestamp": "2034-05-07T12:31:33.032Z", + "stale_timestamp": "2034-04-23T12:31:33.032Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.032Z", + "updated": "2024-04-23T12:31:33.032Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "optical", - "namespace": "transmitting" + "key": "matrix", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "alarm", - "value": "primary", + "key": "interface", + "value": "digital", + "namespace": "hacking" + }, + { + "key": "sensor", + "value": "solid state", "namespace": "transmitting" }, { "key": "matrix", - "value": "wireless", + "value": "mobile", "namespace": "copying" }, { - "key": "microchip", - "value": "optical", - "namespace": "navigating" - }, - { - "key": "driver", - "value": "multi-byte", - "namespace": "calculating" + "key": "system", + "value": "bluetooth", + "namespace": "hacking" } ], "type": "system", @@ -5563,39 +6497,39 @@ "policies": [] }, { - "id": "5fb814a8-b229-4154-b602-2ea12f973bb7", - "display_name": "hagenes.test", + "id": "42e7a850-8641-45be-be28-ec6163596d4a", + "display_name": "schroeder-ward.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.365Z", - "stale_timestamp": "2034-04-09T12:25:30.365Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.365Z", - "updated": "2024-04-09T12:25:30.365Z", + "culled_timestamp": "2034-05-07T12:31:33.028Z", + "stale_timestamp": "2034-04-23T12:31:33.028Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.028Z", + "updated": "2024-04-23T12:31:33.028Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "wireless", - "namespace": "quantifying" + "key": "interface", + "value": "back-end", + "namespace": "synthesizing" }, { - "key": "program", - "value": "1080p", - "namespace": "connecting" + "key": "hard drive", + "value": "auxiliary", + "namespace": "quantifying" }, { - "key": "sensor", - "value": "wireless", - "namespace": "backing up" + "key": "microchip", + "value": "cross-platform", + "namespace": "quantifying" }, { - "key": "microchip", - "value": "digital", - "namespace": "synthesizing" + "key": "system", + "value": "open-source", + "namespace": "overriding" }, { - "key": "alarm", - "value": "1080p", - "namespace": "bypassing" + "key": "pixel", + "value": "redundant", + "namespace": "calculating" } ], "type": "system", @@ -5604,38 +6538,38 @@ "policies": [] }, { - "id": "688a1098-2292-4799-bfee-0f8fb6de5d12", - "display_name": "fadel.example", + "id": "543a5890-a9b3-42f3-b627-47d1acc7c080", + "display_name": "miller.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.378Z", - "stale_timestamp": "2034-04-09T12:25:30.378Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.378Z", - "updated": "2024-04-09T12:25:30.378Z", + "culled_timestamp": "2034-05-07T12:31:33.037Z", + "stale_timestamp": "2034-04-23T12:31:33.037Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.037Z", + "updated": "2024-04-23T12:31:33.037Z", "insights_id": null, - "tags": [ - { - "key": "port", - "value": "primary", - "namespace": "navigating" + "tags": [ + { + "key": "sensor", + "value": "virtual", + "namespace": "parsing" }, { - "key": "monitor", - "value": "cross-platform", - "namespace": "backing up" + "key": "driver", + "value": "redundant", + "namespace": "indexing" }, { - "key": "interface", - "value": "back-end", - "namespace": "quantifying" + "key": "array", + "value": "virtual", + "namespace": "navigating" }, { "key": "interface", - "value": "auxiliary", - "namespace": "indexing" + "value": "cross-platform", + "namespace": "generating" }, { - "key": "protocol", - "value": "1080p", + "key": "monitor", + "value": "multi-byte", "namespace": "indexing" } ], @@ -5645,39 +6579,39 @@ "policies": [] }, { - "id": "77137d02-49c6-4299-bab9-9fd16d12c639", - "display_name": "kuhn-grimes.test", + "id": "61a0aaf9-0a3c-4ba1-87d9-61dc5dd41d7f", + "display_name": "predovic-hane.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.383Z", - "stale_timestamp": "2034-04-09T12:25:30.383Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.383Z", - "updated": "2024-04-09T12:25:30.383Z", + "culled_timestamp": "2034-05-07T12:31:33.018Z", + "stale_timestamp": "2034-04-23T12:31:33.018Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.018Z", + "updated": "2024-04-23T12:31:33.018Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "auxiliary", - "namespace": "connecting" + "key": "application", + "value": "neural", + "namespace": "programming" }, { - "key": "protocol", - "value": "bluetooth", - "namespace": "bypassing" + "key": "panel", + "value": "primary", + "namespace": "transmitting" }, { - "key": "microchip", - "value": "online", - "namespace": "generating" + "key": "sensor", + "value": "cross-platform", + "namespace": "synthesizing" }, { "key": "interface", - "value": "open-source", + "value": "virtual", "namespace": "calculating" }, { - "key": "system", - "value": "1080p", - "namespace": "connecting" + "key": "program", + "value": "cross-platform", + "namespace": "parsing" } ], "type": "system", @@ -5795,39 +6729,39 @@ "Returns a System": { "value": { "data": { - "id": "14e92e81-ee8e-490a-b19a-cec4cca2a2d5", - "display_name": "rohan.example", + "id": "20076ae2-3072-4478-853e-031ffd284577", + "display_name": "bernier.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.498Z", - "stale_timestamp": "2034-04-09T12:25:30.498Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.498Z", - "updated": "2024-04-09T12:25:30.498Z", + "culled_timestamp": "2034-05-07T12:31:33.145Z", + "stale_timestamp": "2034-04-23T12:31:33.145Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.145Z", + "updated": "2024-04-23T12:31:33.145Z", "insights_id": null, "tags": [ { - "key": "firewall", - "value": "multi-byte", - "namespace": "compressing" + "key": "pixel", + "value": "online", + "namespace": "navigating" + }, + { + "key": "microchip", + "value": "cross-platform", + "namespace": "transmitting" }, { "key": "sensor", - "value": "multi-byte", - "namespace": "indexing" + "value": "back-end", + "namespace": "programming" }, { "key": "panel", "value": "neural", - "namespace": "synthesizing" - }, - { - "key": "matrix", - "value": "cross-platform", - "namespace": "transmitting" + "namespace": "connecting" }, { - "key": "interface", - "value": "back-end", - "namespace": "synthesizing" + "key": "hard drive", + "value": "online", + "namespace": "generating" } ], "type": "system", @@ -5864,7 +6798,7 @@ "Description of an error when requesting a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 17e96d97-a612-4683-9240-c5151b4cbc75" + "V2::System not found with ID 4fb1e993-a461-48db-9652-3149a4406e15" ] }, "summary": "", @@ -5973,39 +6907,39 @@ "value": { "data": [ { - "id": "04960713-c3ac-429a-af52-0e0233a18737", - "display_name": "batz.test", + "id": "02c7d0b2-20dc-4bf6-b925-1af16ca2a9d3", + "display_name": "parisian-schimmel.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.593Z", - "stale_timestamp": "2034-04-09T12:25:30.593Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.593Z", - "updated": "2024-04-09T12:25:30.593Z", + "culled_timestamp": "2034-05-07T12:31:33.284Z", + "stale_timestamp": "2034-04-23T12:31:33.284Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.284Z", + "updated": "2024-04-23T12:31:33.284Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "bluetooth", - "namespace": "copying" + "key": "firewall", + "value": "digital", + "namespace": "overriding" }, { - "key": "sensor", - "value": "virtual", - "namespace": "backing up" + "key": "application", + "value": "back-end", + "namespace": "connecting" }, { - "key": "pixel", - "value": "online", - "namespace": "calculating" + "key": "panel", + "value": "wireless", + "namespace": "backing up" }, { - "key": "interface", - "value": "online", - "namespace": "transmitting" + "key": "array", + "value": "virtual", + "namespace": "generating" }, { - "key": "bandwidth", - "value": "virtual", - "namespace": "compressing" + "key": "port", + "value": "auxiliary", + "namespace": "indexing" } ], "type": "system", @@ -6013,39 +6947,39 @@ "os_minor_version": 0 }, { - "id": "057c1f0b-b6d0-4f32-b161-79d005ecaacd", - "display_name": "kshlerin.example", + "id": "06b6ec9a-47ee-4d7d-9357-e80b026f92e3", + "display_name": "blanda.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.601Z", - "stale_timestamp": "2034-04-09T12:25:30.601Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.601Z", - "updated": "2024-04-09T12:25:30.602Z", + "culled_timestamp": "2034-05-07T12:31:33.200Z", + "stale_timestamp": "2034-04-23T12:31:33.200Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.200Z", + "updated": "2024-04-23T12:31:33.200Z", "insights_id": null, "tags": [ { - "key": "application", - "value": "open-source", - "namespace": "copying" + "key": "capacitor", + "value": "digital", + "namespace": "synthesizing" }, { - "key": "circuit", - "value": "back-end", - "namespace": "transmitting" + "key": "protocol", + "value": "open-source", + "namespace": "navigating" }, { - "key": "hard drive", - "value": "bluetooth", - "namespace": "hacking" + "key": "bus", + "value": "neural", + "namespace": "navigating" }, { - "key": "monitor", - "value": "digital", - "namespace": "generating" + "key": "bandwidth", + "value": "primary", + "namespace": "quantifying" }, { - "key": "bus", - "value": "back-end", - "namespace": "navigating" + "key": "transmitter", + "value": "multi-byte", + "namespace": "connecting" } ], "type": "system", @@ -6053,39 +6987,39 @@ "os_minor_version": 0 }, { - "id": "076e325d-fdec-4f86-8f3d-121d8d56faae", - "display_name": "ritchie.test", + "id": "0b607c67-463e-4451-8ef1-853108510037", + "display_name": "king.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.633Z", - "stale_timestamp": "2034-04-09T12:25:30.633Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.633Z", - "updated": "2024-04-09T12:25:30.634Z", + "culled_timestamp": "2034-05-07T12:31:33.227Z", + "stale_timestamp": "2034-04-23T12:31:33.227Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.227Z", + "updated": "2024-04-23T12:31:33.227Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "optical", - "namespace": "copying" - }, - { - "key": "application", - "value": "primary", - "namespace": "synthesizing" + "key": "interface", + "value": "open-source", + "namespace": "navigating" }, { - "key": "feed", + "key": "pixel", "value": "mobile", - "namespace": "parsing" + "namespace": "navigating" }, { - "key": "pixel", - "value": "solid state", + "key": "capacitor", + "value": "virtual", "namespace": "navigating" }, { - "key": "hard drive", - "value": "digital", - "namespace": "programming" + "key": "sensor", + "value": "wireless", + "namespace": "overriding" + }, + { + "key": "protocol", + "value": "wireless", + "namespace": "compressing" } ], "type": "system", @@ -6093,39 +7027,39 @@ "os_minor_version": 0 }, { - "id": "12b95a3a-f804-4bf8-9640-b86fad4eec5e", - "display_name": "kutch.test", + "id": "2060cb62-08f6-4b97-9b09-9f2595ec0ee6", + "display_name": "lemke-kreiger.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.553Z", - "stale_timestamp": "2034-04-09T12:25:30.553Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.553Z", - "updated": "2024-04-09T12:25:30.553Z", + "culled_timestamp": "2034-05-07T12:31:33.213Z", + "stale_timestamp": "2034-04-23T12:31:33.213Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.213Z", + "updated": "2024-04-23T12:31:33.213Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "1080p", - "namespace": "connecting" + "key": "system", + "value": "optical", + "namespace": "calculating" }, { - "key": "hard drive", - "value": "neural", - "namespace": "parsing" + "key": "protocol", + "value": "haptic", + "namespace": "navigating" }, { - "key": "transmitter", - "value": "redundant", + "key": "hard drive", + "value": "optical", "namespace": "generating" }, { - "key": "circuit", - "value": "auxiliary", - "namespace": "parsing" + "key": "matrix", + "value": "online", + "namespace": "bypassing" }, { - "key": "hard drive", + "key": "monitor", "value": "primary", - "namespace": "indexing" + "namespace": "quantifying" } ], "type": "system", @@ -6133,39 +7067,39 @@ "os_minor_version": 0 }, { - "id": "13f1a44b-4b85-4ebf-b0ce-8312b8e12331", - "display_name": "zieme-muller.test", + "id": "27d28b59-baa8-4079-9f97-f6c0a7360338", + "display_name": "trantow.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.598Z", - "stale_timestamp": "2034-04-09T12:25:30.598Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.598Z", - "updated": "2024-04-09T12:25:30.598Z", + "culled_timestamp": "2034-05-07T12:31:33.289Z", + "stale_timestamp": "2034-04-23T12:31:33.289Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.289Z", + "updated": "2024-04-23T12:31:33.289Z", "insights_id": null, "tags": [ { - "key": "alarm", - "value": "auxiliary", - "namespace": "generating" + "key": "hard drive", + "value": "digital", + "namespace": "calculating" }, { - "key": "array", - "value": "digital", - "namespace": "connecting" + "key": "system", + "value": "multi-byte", + "namespace": "generating" }, { - "key": "microchip", + "key": "bandwidth", "value": "virtual", - "namespace": "quantifying" + "namespace": "compressing" }, { - "key": "microchip", + "key": "driver", "value": "multi-byte", - "namespace": "connecting" + "namespace": "programming" }, { - "key": "application", - "value": "online", - "namespace": "indexing" + "key": "interface", + "value": "mobile", + "namespace": "compressing" } ], "type": "system", @@ -6173,39 +7107,39 @@ "os_minor_version": 0 }, { - "id": "1e76786a-bbff-4efb-9e13-4f2f6780e6df", - "display_name": "schumm.test", + "id": "3d464ef6-5b6f-4513-90fe-7e1b0ae03ea9", + "display_name": "russel-krajcik.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.626Z", - "stale_timestamp": "2034-04-09T12:25:30.626Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.626Z", - "updated": "2024-04-09T12:25:30.626Z", + "culled_timestamp": "2034-05-07T12:31:33.293Z", + "stale_timestamp": "2034-04-23T12:31:33.293Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.293Z", + "updated": "2024-04-23T12:31:33.293Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "haptic", - "namespace": "indexing" + "key": "system", + "value": "auxiliary", + "namespace": "backing up" }, { - "key": "interface", - "value": "cross-platform", - "namespace": "indexing" + "key": "array", + "value": "wireless", + "namespace": "programming" }, { - "key": "card", - "value": "auxiliary", - "namespace": "generating" + "key": "protocol", + "value": "online", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "mobile", - "namespace": "transmitting" + "key": "interface", + "value": "virtual", + "namespace": "compressing" }, { - "key": "monitor", - "value": "auxiliary", - "namespace": "copying" + "key": "driver", + "value": "virtual", + "namespace": "parsing" } ], "type": "system", @@ -6213,39 +7147,39 @@ "os_minor_version": 0 }, { - "id": "23dbbb5d-0ab9-4b86-a3be-d37eb57e1737", - "display_name": "bechtelar.example", + "id": "42b29256-74d2-4bdd-bd42-8eb22d1d39e4", + "display_name": "murphy.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.647Z", - "stale_timestamp": "2034-04-09T12:25:30.647Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.647Z", - "updated": "2024-04-09T12:25:30.647Z", + "culled_timestamp": "2034-05-07T12:31:33.280Z", + "stale_timestamp": "2034-04-23T12:31:33.280Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.280Z", + "updated": "2024-04-23T12:31:33.280Z", "insights_id": null, "tags": [ { - "key": "system", + "key": "driver", "value": "back-end", - "namespace": "indexing" + "namespace": "quantifying" }, { - "key": "port", - "value": "mobile", - "namespace": "parsing" + "key": "bus", + "value": "auxiliary", + "namespace": "calculating" }, { - "key": "application", - "value": "back-end", - "namespace": "generating" + "key": "alarm", + "value": "open-source", + "namespace": "calculating" }, { - "key": "feed", - "value": "mobile", - "namespace": "hacking" + "key": "protocol", + "value": "digital", + "namespace": "navigating" }, { - "key": "alarm", - "value": "optical", - "namespace": "quantifying" + "key": "circuit", + "value": "wireless", + "namespace": "synthesizing" } ], "type": "system", @@ -6253,39 +7187,39 @@ "os_minor_version": 0 }, { - "id": "27b70fc9-4e7d-4749-9dfa-de986b2da9cc", - "display_name": "lockman.example", + "id": "54de9c90-b721-4c94-abf9-2c19f8d2f74d", + "display_name": "braun.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.580Z", - "stale_timestamp": "2034-04-09T12:25:30.580Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.580Z", - "updated": "2024-04-09T12:25:30.580Z", + "culled_timestamp": "2034-05-07T12:31:33.192Z", + "stale_timestamp": "2034-04-23T12:31:33.192Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.192Z", + "updated": "2024-04-23T12:31:33.192Z", "insights_id": null, "tags": [ { - "key": "pixel", + "key": "capacitor", "value": "open-source", - "namespace": "compressing" + "namespace": "quantifying" }, { - "key": "panel", - "value": "redundant", - "namespace": "indexing" + "key": "pixel", + "value": "open-source", + "namespace": "backing up" }, { - "key": "program", - "value": "cross-platform", - "namespace": "hacking" + "key": "driver", + "value": "bluetooth", + "namespace": "indexing" }, { - "key": "hard drive", - "value": "cross-platform", - "namespace": "transmitting" + "key": "sensor", + "value": "multi-byte", + "namespace": "bypassing" }, { - "key": "program", + "key": "sensor", "value": "back-end", - "namespace": "programming" + "namespace": "synthesizing" } ], "type": "system", @@ -6293,39 +7227,39 @@ "os_minor_version": 0 }, { - "id": "3055acfb-532c-4644-af4f-ae7af18b2813", - "display_name": "kuhlman.test", + "id": "56b26ba3-3c4a-4b53-b451-5440283828c5", + "display_name": "luettgen-daniel.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.638Z", - "stale_timestamp": "2034-04-09T12:25:30.638Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.638Z", - "updated": "2024-04-09T12:25:30.638Z", + "culled_timestamp": "2034-05-07T12:31:33.307Z", + "stale_timestamp": "2034-04-23T12:31:33.307Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.307Z", + "updated": "2024-04-23T12:31:33.307Z", "insights_id": null, "tags": [ { "key": "panel", - "value": "optical", - "namespace": "calculating" + "value": "primary", + "namespace": "quantifying" }, { - "key": "bus", - "value": "multi-byte", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "redundant", + "namespace": "overriding" }, { - "key": "alarm", - "value": "neural", - "namespace": "calculating" + "key": "port", + "value": "multi-byte", + "namespace": "overriding" }, { - "key": "application", - "value": "1080p", - "namespace": "indexing" + "key": "port", + "value": "solid state", + "namespace": "copying" }, { - "key": "protocol", - "value": "mobile", - "namespace": "indexing" + "key": "panel", + "value": "virtual", + "namespace": "connecting" } ], "type": "system", @@ -6333,39 +7267,39 @@ "os_minor_version": 0 }, { - "id": "33a62078-820c-4f1c-8ac6-01904dead7d5", - "display_name": "gibson-braun.example", + "id": "57840bc2-7d96-4d19-ac33-e3ccc1c06cfc", + "display_name": "price.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.607Z", - "stale_timestamp": "2034-04-09T12:25:30.607Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.607Z", - "updated": "2024-04-09T12:25:30.607Z", + "culled_timestamp": "2034-05-07T12:31:33.298Z", + "stale_timestamp": "2034-04-23T12:31:33.298Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.298Z", + "updated": "2024-04-23T12:31:33.298Z", "insights_id": null, "tags": [ { - "key": "feed", - "value": "back-end", - "namespace": "calculating" + "key": "matrix", + "value": "primary", + "namespace": "overriding" }, { - "key": "array", - "value": "virtual", - "namespace": "indexing" + "key": "driver", + "value": "bluetooth", + "namespace": "navigating" }, { - "key": "interface", - "value": "online", - "namespace": "calculating" + "key": "hard drive", + "value": "cross-platform", + "namespace": "parsing" }, { - "key": "system", - "value": "1080p", - "namespace": "calculating" + "key": "port", + "value": "digital", + "namespace": "navigating" }, { - "key": "bus", - "value": "auxiliary", - "namespace": "parsing" + "key": "transmitter", + "value": "neural", + "namespace": "hacking" } ], "type": "system", @@ -6380,9 +7314,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/23d1b2b1-39db-49e3-a0f1-06b83e5c9775/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/23d1b2b1-39db-49e3-a0f1-06b83e5c9775/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/23d1b2b1-39db-49e3-a0f1-06b83e5c9775/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/5156b38c-2c89-40c5-a430-a774a92251a2/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/5156b38c-2c89-40c5-a430-a774a92251a2/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/5156b38c-2c89-40c5-a430-a774a92251a2/systems?limit=10&offset=10" } }, "summary": "", @@ -6392,39 +7326,39 @@ "value": { "data": [ { - "id": "0c30986f-8f64-4609-8849-511c2221474c", - "display_name": "hills.example", + "id": "0a46c3aa-f804-4c9f-ab2e-97506e7cfb93", + "display_name": "dubuque.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.773Z", - "stale_timestamp": "2034-04-09T12:25:30.773Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.773Z", - "updated": "2024-04-09T12:25:30.773Z", + "culled_timestamp": "2034-05-07T12:31:33.341Z", + "stale_timestamp": "2034-04-23T12:31:33.341Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.341Z", + "updated": "2024-04-23T12:31:33.341Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "digital", - "namespace": "navigating" + "key": "program", + "value": "auxiliary", + "namespace": "calculating" }, { - "key": "panel", - "value": "virtual", - "namespace": "navigating" + "key": "card", + "value": "bluetooth", + "namespace": "copying" }, { - "key": "pixel", - "value": "digital", - "namespace": "transmitting" + "key": "circuit", + "value": "auxiliary", + "namespace": "parsing" }, { - "key": "sensor", - "value": "solid state", - "namespace": "calculating" + "key": "bandwidth", + "value": "haptic", + "namespace": "parsing" }, { - "key": "alarm", - "value": "1080p", - "namespace": "parsing" + "key": "matrix", + "value": "auxiliary", + "namespace": "overriding" } ], "type": "system", @@ -6432,39 +7366,39 @@ "os_minor_version": 0 }, { - "id": "14e5c827-a45a-4700-8100-ec581d8d4766", - "display_name": "damore.test", + "id": "1e6359ca-6d75-45c7-b2af-193177a957ce", + "display_name": "hermann.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.709Z", - "stale_timestamp": "2034-04-09T12:25:30.709Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.709Z", - "updated": "2024-04-09T12:25:30.709Z", + "culled_timestamp": "2034-05-07T12:31:33.411Z", + "stale_timestamp": "2034-04-23T12:31:33.411Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.411Z", + "updated": "2024-04-23T12:31:33.411Z", "insights_id": null, "tags": [ { - "key": "program", - "value": "virtual", - "namespace": "synthesizing" + "key": "transmitter", + "value": "open-source", + "namespace": "navigating" }, { - "key": "sensor", - "value": "virtual", - "namespace": "generating" + "key": "card", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "sensor", - "value": "redundant", - "namespace": "programming" + "key": "application", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "circuit", - "value": "bluetooth", - "namespace": "backing up" + "key": "array", + "value": "solid state", + "namespace": "calculating" }, { - "key": "firewall", - "value": "online", - "namespace": "transmitting" + "key": "hard drive", + "value": "wireless", + "namespace": "hacking" } ], "type": "system", @@ -6472,39 +7406,39 @@ "os_minor_version": 0 }, { - "id": "2a6dc187-0543-4a18-9f97-253b135ac170", - "display_name": "witting-tillman.example", + "id": "239e2311-5864-4fd3-a2e3-575cf642573c", + "display_name": "raynor-schinner.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.764Z", - "stale_timestamp": "2034-04-09T12:25:30.764Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.764Z", - "updated": "2024-04-09T12:25:30.764Z", + "culled_timestamp": "2034-05-07T12:31:33.425Z", + "stale_timestamp": "2034-04-23T12:31:33.425Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.425Z", + "updated": "2024-04-23T12:31:33.425Z", "insights_id": null, "tags": [ { - "key": "microchip", - "value": "haptic", - "namespace": "transmitting" + "key": "panel", + "value": "digital", + "namespace": "parsing" }, { - "key": "capacitor", - "value": "virtual", - "namespace": "connecting" + "key": "card", + "value": "mobile", + "namespace": "indexing" }, { - "key": "system", - "value": "redundant", - "namespace": "synthesizing" + "key": "bandwidth", + "value": "neural", + "namespace": "parsing" }, { - "key": "alarm", - "value": "multi-byte", - "namespace": "synthesizing" + "key": "interface", + "value": "back-end", + "namespace": "programming" }, { - "key": "array", - "value": "digital", - "namespace": "hacking" + "key": "capacitor", + "value": "redundant", + "namespace": "parsing" } ], "type": "system", @@ -6512,39 +7446,39 @@ "os_minor_version": 0 }, { - "id": "3eabec43-152b-4f9d-a45f-71fc94d6d829", - "display_name": "kub-reinger.test", + "id": "26c9c197-a2d3-4c62-be8f-88627e3ee2d9", + "display_name": "schroeder-lindgren.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.730Z", - "stale_timestamp": "2034-04-09T12:25:30.730Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.730Z", - "updated": "2024-04-09T12:25:30.730Z", + "culled_timestamp": "2034-05-07T12:31:33.394Z", + "stale_timestamp": "2034-04-23T12:31:33.394Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.394Z", + "updated": "2024-04-23T12:31:33.394Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "open-source", - "namespace": "connecting" + "key": "pixel", + "value": "auxiliary", + "namespace": "navigating" }, { - "key": "alarm", + "key": "circuit", "value": "virtual", - "namespace": "compressing" + "namespace": "overriding" }, { "key": "bandwidth", "value": "wireless", - "namespace": "copying" + "namespace": "parsing" }, { - "key": "bandwidth", - "value": "primary", - "namespace": "navigating" + "key": "system", + "value": "open-source", + "namespace": "connecting" }, { - "key": "alarm", - "value": "virtual", - "namespace": "overriding" + "key": "capacitor", + "value": "haptic", + "namespace": "backing up" } ], "type": "system", @@ -6552,39 +7486,39 @@ "os_minor_version": 0 }, { - "id": "4be1fccb-1867-4a4e-babb-7cf37135df36", - "display_name": "turcotte-schinner.example", + "id": "2e66ef05-f687-4d66-950f-70d990621eb8", + "display_name": "hoppe.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.783Z", - "stale_timestamp": "2034-04-09T12:25:30.783Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.783Z", - "updated": "2024-04-09T12:25:30.783Z", + "culled_timestamp": "2034-05-07T12:31:33.385Z", + "stale_timestamp": "2034-04-23T12:31:33.385Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.385Z", + "updated": "2024-04-23T12:31:33.385Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "bluetooth", - "namespace": "quantifying" + "key": "system", + "value": "back-end", + "namespace": "backing up" }, { "key": "capacitor", - "value": "bluetooth", - "namespace": "copying" + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "protocol", - "value": "virtual", - "namespace": "quantifying" + "key": "sensor", + "value": "optical", + "namespace": "compressing" }, { - "key": "capacitor", - "value": "cross-platform", + "key": "port", + "value": "neural", "namespace": "indexing" }, { - "key": "panel", + "key": "alarm", "value": "cross-platform", - "namespace": "navigating" + "namespace": "calculating" } ], "type": "system", @@ -6592,39 +7526,39 @@ "os_minor_version": 0 }, { - "id": "57e79b8f-6e53-4e98-8f2c-f54379ec7a0b", - "display_name": "collier-stiedemann.example", + "id": "3a2d9730-6473-482b-a996-7a44168c9d94", + "display_name": "bartoletti-kub.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.755Z", - "stale_timestamp": "2034-04-09T12:25:30.755Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.755Z", - "updated": "2024-04-09T12:25:30.755Z", + "culled_timestamp": "2034-05-07T12:31:33.398Z", + "stale_timestamp": "2034-04-23T12:31:33.398Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.398Z", + "updated": "2024-04-23T12:31:33.398Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "solid state", - "namespace": "navigating" + "key": "application", + "value": "auxiliary", + "namespace": "hacking" }, { - "key": "panel", - "value": "primary", - "namespace": "bypassing" + "key": "application", + "value": "open-source", + "namespace": "calculating" }, { - "key": "circuit", - "value": "back-end", - "namespace": "copying" + "key": "hard drive", + "value": "open-source", + "namespace": "generating" }, { - "key": "panel", - "value": "1080p", - "namespace": "backing up" + "key": "matrix", + "value": "auxiliary", + "namespace": "indexing" }, { "key": "feed", - "value": "haptic", - "namespace": "transmitting" + "value": "solid state", + "namespace": "compressing" } ], "type": "system", @@ -6632,39 +7566,39 @@ "os_minor_version": 0 }, { - "id": "5823d7ca-9586-46af-8fec-525bcc49f584", - "display_name": "fadel.example", + "id": "3bbc6ebd-f5fc-42f7-b8c7-32d2ed0465ef", + "display_name": "dare.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.736Z", - "stale_timestamp": "2034-04-09T12:25:30.736Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.736Z", - "updated": "2024-04-09T12:25:30.736Z", + "culled_timestamp": "2034-05-07T12:31:33.452Z", + "stale_timestamp": "2034-04-23T12:31:33.452Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.452Z", + "updated": "2024-04-23T12:31:33.452Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "multi-byte", - "namespace": "bypassing" + "key": "capacitor", + "value": "neural", + "namespace": "generating" }, { - "key": "interface", - "value": "multi-byte", - "namespace": "backing up" + "key": "microchip", + "value": "digital", + "namespace": "hacking" }, { - "key": "monitor", - "value": "solid state", - "namespace": "programming" + "key": "microchip", + "value": "primary", + "namespace": "hacking" }, { - "key": "alarm", - "value": "primary", - "namespace": "programming" + "key": "monitor", + "value": "online", + "namespace": "calculating" }, { - "key": "program", - "value": "bluetooth", - "namespace": "programming" + "key": "bus", + "value": "virtual", + "namespace": "quantifying" } ], "type": "system", @@ -6672,39 +7606,39 @@ "os_minor_version": 0 }, { - "id": "5a6689a0-3aef-40e8-a110-77d04143d58b", - "display_name": "volkman.test", + "id": "58251215-27ea-4253-b6a6-f9ee2adc3da0", + "display_name": "medhurst.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.703Z", - "stale_timestamp": "2034-04-09T12:25:30.703Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.703Z", - "updated": "2024-04-09T12:25:30.703Z", + "culled_timestamp": "2034-05-07T12:31:33.353Z", + "stale_timestamp": "2034-04-23T12:31:33.353Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.353Z", + "updated": "2024-04-23T12:31:33.353Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "optical", - "namespace": "transmitting" + "key": "alarm", + "value": "virtual", + "namespace": "programming" }, { - "key": "capacitor", - "value": "primary", - "namespace": "synthesizing" + "key": "application", + "value": "open-source", + "namespace": "copying" }, { - "key": "alarm", - "value": "primary", - "namespace": "navigating" + "key": "bandwidth", + "value": "bluetooth", + "namespace": "bypassing" }, { - "key": "protocol", + "key": "sensor", "value": "bluetooth", "namespace": "quantifying" }, { - "key": "hard drive", - "value": "virtual", - "namespace": "bypassing" + "key": "card", + "value": "open-source", + "namespace": "compressing" } ], "type": "system", @@ -6712,38 +7646,38 @@ "os_minor_version": 0 }, { - "id": "7728d670-3683-44f5-8390-8d7aa278089a", - "display_name": "rodriguez.test", + "id": "5a1a2781-0913-4371-be76-8b317b318ddd", + "display_name": "becker.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.726Z", - "stale_timestamp": "2034-04-09T12:25:30.726Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.726Z", - "updated": "2024-04-09T12:25:30.726Z", + "culled_timestamp": "2034-05-07T12:31:33.380Z", + "stale_timestamp": "2034-04-23T12:31:33.380Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.380Z", + "updated": "2024-04-23T12:31:33.380Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "solid state", - "namespace": "copying" + "key": "transmitter", + "value": "mobile", + "namespace": "connecting" }, { - "key": "circuit", - "value": "digital", - "namespace": "overriding" + "key": "interface", + "value": "wireless", + "namespace": "parsing" }, { - "key": "program", + "key": "matrix", "value": "primary", - "namespace": "navigating" + "namespace": "parsing" }, { - "key": "bus", - "value": "solid state", - "namespace": "transmitting" + "key": "application", + "value": "primary", + "namespace": "compressing" }, { - "key": "array", - "value": "auxiliary", + "key": "bandwidth", + "value": "multi-byte", "namespace": "overriding" } ], @@ -6752,39 +7686,39 @@ "os_minor_version": 0 }, { - "id": "829cfda1-e5bb-4977-b6e4-4dd421ee19a7", - "display_name": "nicolas.test", + "id": "5c073d9b-9b10-4e5b-a6ef-189c37344015", + "display_name": "gibson.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.750Z", - "stale_timestamp": "2034-04-09T12:25:30.750Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.750Z", - "updated": "2024-04-09T12:25:30.750Z", + "culled_timestamp": "2034-05-07T12:31:33.367Z", + "stale_timestamp": "2034-04-23T12:31:33.367Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.367Z", + "updated": "2024-04-23T12:31:33.367Z", "insights_id": null, "tags": [ { - "key": "monitor", - "value": "multi-byte", - "namespace": "calculating" + "key": "program", + "value": "open-source", + "namespace": "connecting" }, { - "key": "array", - "value": "primary", - "namespace": "synthesizing" + "key": "application", + "value": "back-end", + "namespace": "transmitting" }, { - "key": "bandwidth", - "value": "online", - "namespace": "parsing" + "key": "alarm", + "value": "mobile", + "namespace": "programming" }, { - "key": "sensor", - "value": "multi-byte", - "namespace": "quantifying" + "key": "microchip", + "value": "optical", + "namespace": "backing up" }, { - "key": "array", - "value": "back-end", - "namespace": "generating" + "key": "matrix", + "value": "optical", + "namespace": "synthesizing" } ], "type": "system", @@ -6800,9 +7734,9 @@ "sort_by": "os_major_version" }, "links": { - "first": "/api/compliance/v2/policies/cf98d4a8-5089-40f3-a2c8-8cd101efd295/systems?limit=10&offset=0&sort_by=os_major_version", - "last": "/api/compliance/v2/policies/cf98d4a8-5089-40f3-a2c8-8cd101efd295/systems?limit=10&offset=20&sort_by=os_major_version", - "next": "/api/compliance/v2/policies/cf98d4a8-5089-40f3-a2c8-8cd101efd295/systems?limit=10&offset=10&sort_by=os_major_version" + "first": "/api/compliance/v2/policies/d938143b-30fa-442e-8e84-90ac74fd5919/systems?limit=10&offset=0&sort_by=os_major_version", + "last": "/api/compliance/v2/policies/d938143b-30fa-442e-8e84-90ac74fd5919/systems?limit=10&offset=20&sort_by=os_major_version", + "next": "/api/compliance/v2/policies/d938143b-30fa-442e-8e84-90ac74fd5919/systems?limit=10&offset=10&sort_by=os_major_version" } }, "summary": "", @@ -6812,39 +7746,39 @@ "value": { "data": [ { - "id": "11215508-ae1a-4813-90ad-223541f4ef34", - "display_name": "ruecker.example", + "id": "122284d3-694d-4e15-8c6a-c9178c8faad8", + "display_name": "roob.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.866Z", - "stale_timestamp": "2034-04-09T12:25:30.866Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.866Z", - "updated": "2024-04-09T12:25:30.866Z", + "culled_timestamp": "2034-05-07T12:31:33.526Z", + "stale_timestamp": "2034-04-23T12:31:33.526Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.526Z", + "updated": "2024-04-23T12:31:33.526Z", "insights_id": null, "tags": [ { - "key": "array", - "value": "mobile", - "namespace": "synthesizing" + "key": "pixel", + "value": "wireless", + "namespace": "copying" }, { - "key": "protocol", - "value": "optical", - "namespace": "overriding" + "key": "firewall", + "value": "mobile", + "namespace": "quantifying" }, { - "key": "application", - "value": "virtual", - "namespace": "compressing" + "key": "firewall", + "value": "auxiliary", + "namespace": "generating" }, { - "key": "bus", - "value": "1080p", - "namespace": "synthesizing" + "key": "circuit", + "value": "virtual", + "namespace": "navigating" }, { - "key": "monitor", - "value": "primary", - "namespace": "programming" + "key": "protocol", + "value": "wireless", + "namespace": "compressing" } ], "type": "system", @@ -6852,39 +7786,39 @@ "os_minor_version": 0 }, { - "id": "14eee206-413e-4916-b5e1-a33cbf85b9ce", - "display_name": "goodwin.test", + "id": "152f2063-12e0-4a1b-95b9-ffc6c555fe66", + "display_name": "kreiger.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.960Z", - "stale_timestamp": "2034-04-09T12:25:30.960Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.960Z", - "updated": "2024-04-09T12:25:30.960Z", + "culled_timestamp": "2034-05-07T12:31:33.503Z", + "stale_timestamp": "2034-04-23T12:31:33.503Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.503Z", + "updated": "2024-04-23T12:31:33.503Z", "insights_id": null, "tags": [ { - "key": "bandwidth", - "value": "open-source", + "key": "card", + "value": "optical", "namespace": "programming" }, { - "key": "driver", - "value": "mobile", - "namespace": "connecting" + "key": "panel", + "value": "open-source", + "namespace": "generating" }, { - "key": "sensor", - "value": "digital", - "namespace": "calculating" + "key": "alarm", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "transmitter", - "value": "online", - "namespace": "calculating" + "key": "firewall", + "value": "primary", + "namespace": "generating" }, { - "key": "bus", - "value": "solid state", - "namespace": "overriding" + "key": "capacitor", + "value": "cross-platform", + "namespace": "programming" } ], "type": "system", @@ -6892,39 +7826,39 @@ "os_minor_version": 0 }, { - "id": "2cb1d557-eb21-4ca0-a60d-9c6b1c0a1c11", - "display_name": "hintz.test", + "id": "1a6649f9-8a9f-4d00-a870-1d70146a4c0e", + "display_name": "ritchie-bayer.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.893Z", - "stale_timestamp": "2034-04-09T12:25:30.893Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.893Z", - "updated": "2024-04-09T12:25:30.893Z", + "culled_timestamp": "2034-05-07T12:31:33.592Z", + "stale_timestamp": "2034-04-23T12:31:33.592Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.592Z", + "updated": "2024-04-23T12:31:33.593Z", "insights_id": null, "tags": [ { - "key": "hard drive", - "value": "primary", - "namespace": "navigating" + "key": "bus", + "value": "digital", + "namespace": "calculating" }, { - "key": "sensor", - "value": "neural", - "namespace": "calculating" + "key": "alarm", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "circuit", - "value": "virtual", - "namespace": "overriding" + "key": "application", + "value": "multi-byte", + "namespace": "navigating" }, { - "key": "bandwidth", - "value": "digital", - "namespace": "programming" + "key": "capacitor", + "value": "multi-byte", + "namespace": "calculating" }, { - "key": "bus", - "value": "online", - "namespace": "connecting" + "key": "bandwidth", + "value": "cross-platform", + "namespace": "calculating" } ], "type": "system", @@ -6932,39 +7866,39 @@ "os_minor_version": 0 }, { - "id": "3836da2d-cefa-4483-be0c-2254f5d94c53", - "display_name": "abbott-heller.test", + "id": "2235adee-5840-4d8f-9bd5-b55055434dd4", + "display_name": "shields.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.933Z", - "stale_timestamp": "2034-04-09T12:25:30.933Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.933Z", - "updated": "2024-04-09T12:25:30.933Z", + "culled_timestamp": "2034-05-07T12:31:33.588Z", + "stale_timestamp": "2034-04-23T12:31:33.588Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.588Z", + "updated": "2024-04-23T12:31:33.588Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "digital", - "namespace": "parsing" + "key": "feed", + "value": "wireless", + "namespace": "backing up" }, { - "key": "pixel", - "value": "haptic", - "namespace": "compressing" + "key": "panel", + "value": "wireless", + "namespace": "synthesizing" }, { - "key": "panel", + "key": "port", "value": "multi-byte", - "namespace": "connecting" + "namespace": "transmitting" }, { - "key": "protocol", - "value": "virtual", - "namespace": "calculating" + "key": "system", + "value": "mobile", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "haptic", - "namespace": "connecting" + "key": "microchip", + "value": "open-source", + "namespace": "copying" } ], "type": "system", @@ -6972,39 +7906,39 @@ "os_minor_version": 0 }, { - "id": "38c1ce89-4349-406d-92f4-67e8e9632ae4", - "display_name": "morar-cormier.example", + "id": "2f7aa34b-858a-4140-b809-5897ad11e892", + "display_name": "wiza.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.929Z", - "stale_timestamp": "2034-04-09T12:25:30.929Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.929Z", - "updated": "2024-04-09T12:25:30.929Z", + "culled_timestamp": "2034-05-07T12:31:33.548Z", + "stale_timestamp": "2034-04-23T12:31:33.548Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.548Z", + "updated": "2024-04-23T12:31:33.548Z", "insights_id": null, "tags": [ { - "key": "array", + "key": "protocol", "value": "online", - "namespace": "hacking" + "namespace": "backing up" }, { - "key": "panel", - "value": "online", - "namespace": "calculating" + "key": "interface", + "value": "bluetooth", + "namespace": "transmitting" }, { - "key": "capacitor", - "value": "optical", - "namespace": "quantifying" + "key": "monitor", + "value": "open-source", + "namespace": "calculating" }, { - "key": "sensor", - "value": "wireless", - "namespace": "bypassing" + "key": "bus", + "value": "1080p", + "namespace": "backing up" }, { - "key": "firewall", - "value": "bluetooth", - "namespace": "hacking" + "key": "array", + "value": "solid state", + "namespace": "navigating" } ], "type": "system", @@ -7012,39 +7946,39 @@ "os_minor_version": 0 }, { - "id": "390ff281-7a92-46ff-81a2-3099f2ed4f58", - "display_name": "satterfield.test", + "id": "364c8466-e1bb-46a7-869f-80dca89bdd5d", + "display_name": "beatty.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.902Z", - "stale_timestamp": "2034-04-09T12:25:30.902Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.902Z", - "updated": "2024-04-09T12:25:30.902Z", + "culled_timestamp": "2034-05-07T12:31:33.535Z", + "stale_timestamp": "2034-04-23T12:31:33.535Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.535Z", + "updated": "2024-04-23T12:31:33.535Z", "insights_id": null, "tags": [ { - "key": "hard drive", + "key": "circuit", "value": "digital", - "namespace": "hacking" + "namespace": "backing up" }, { - "key": "application", - "value": "primary", - "namespace": "copying" + "key": "array", + "value": "open-source", + "namespace": "transmitting" }, { - "key": "program", - "value": "wireless", - "namespace": "copying" + "key": "system", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "protocol", + "key": "matrix", "value": "multi-byte", - "namespace": "navigating" + "namespace": "hacking" }, { - "key": "program", - "value": "wireless", - "namespace": "parsing" + "key": "monitor", + "value": "multi-byte", + "namespace": "copying" } ], "type": "system", @@ -7052,39 +7986,39 @@ "os_minor_version": 0 }, { - "id": "48793965-c1c9-4777-ab88-9d1b9d2f50a4", - "display_name": "thiel-marquardt.example", + "id": "4586215e-0466-46ed-90cf-94d6e0f1fca7", + "display_name": "schimmel.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.879Z", - "stale_timestamp": "2034-04-09T12:25:30.879Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.879Z", - "updated": "2024-04-09T12:25:30.879Z", + "culled_timestamp": "2034-05-07T12:31:33.584Z", + "stale_timestamp": "2034-04-23T12:31:33.584Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.584Z", + "updated": "2024-04-23T12:31:33.584Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "primary", - "namespace": "hacking" + "key": "sensor", + "value": "back-end", + "namespace": "parsing" }, { - "key": "feed", + "key": "panel", "value": "virtual", - "namespace": "connecting" + "namespace": "navigating" }, { - "key": "firewall", - "value": "mobile", - "namespace": "calculating" + "key": "matrix", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "microchip", - "value": "optical", - "namespace": "quantifying" + "key": "system", + "value": "neural", + "namespace": "bypassing" }, { - "key": "alarm", - "value": "mobile", - "namespace": "copying" + "key": "port", + "value": "solid state", + "namespace": "indexing" } ], "type": "system", @@ -7092,39 +8026,39 @@ "os_minor_version": 0 }, { - "id": "50c2a6df-c191-49b7-b386-1d78b5e596d9", - "display_name": "fay.test", + "id": "469190fa-82a8-4cf3-becd-531107d4059b", + "display_name": "kuphal.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.920Z", - "stale_timestamp": "2034-04-09T12:25:30.920Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.920Z", - "updated": "2024-04-09T12:25:30.920Z", + "culled_timestamp": "2034-05-07T12:31:33.544Z", + "stale_timestamp": "2034-04-23T12:31:33.544Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.544Z", + "updated": "2024-04-23T12:31:33.544Z", "insights_id": null, "tags": [ { - "key": "alarm", + "key": "application", "value": "haptic", - "namespace": "compressing" + "namespace": "connecting" }, { - "key": "card", + "key": "microchip", "value": "neural", - "namespace": "calculating" - }, - { - "key": "panel", - "value": "mobile", - "namespace": "compressing" + "namespace": "transmitting" }, { - "key": "driver", + "key": "firewall", "value": "auxiliary", - "namespace": "generating" + "namespace": "bypassing" }, { "key": "port", "value": "back-end", - "namespace": "navigating" + "namespace": "parsing" + }, + { + "key": "array", + "value": "digital", + "namespace": "compressing" } ], "type": "system", @@ -7132,39 +8066,39 @@ "os_minor_version": 0 }, { - "id": "5620b742-be3b-433d-951d-7aba842c8a0a", - "display_name": "daniel-lemke.example", + "id": "476593a5-0cc7-46bb-8836-80ce6fb3b596", + "display_name": "hartmann.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.942Z", - "stale_timestamp": "2034-04-09T12:25:30.942Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.942Z", - "updated": "2024-04-09T12:25:30.942Z", + "culled_timestamp": "2034-05-07T12:31:33.605Z", + "stale_timestamp": "2034-04-23T12:31:33.605Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.605Z", + "updated": "2024-04-23T12:31:33.605Z", "insights_id": null, "tags": [ { - "key": "application", + "key": "feed", "value": "back-end", - "namespace": "overriding" + "namespace": "navigating" }, { - "key": "hard drive", - "value": "wireless", - "namespace": "connecting" + "key": "circuit", + "value": "neural", + "namespace": "backing up" }, { - "key": "circuit", - "value": "multi-byte", - "namespace": "transmitting" + "key": "protocol", + "value": "haptic", + "namespace": "generating" }, { - "key": "port", - "value": "auxiliary", - "namespace": "parsing" + "key": "panel", + "value": "optical", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "back-end", - "namespace": "transmitting" + "key": "transmitter", + "value": "digital", + "namespace": "backing up" } ], "type": "system", @@ -7172,39 +8106,39 @@ "os_minor_version": 0 }, { - "id": "5629eea3-35a5-49d9-aaee-702a515125b8", - "display_name": "cummerata-shields.example", + "id": "5196f5fd-b941-43a1-8616-2db29c8c0bd6", + "display_name": "botsford.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:30.938Z", - "stale_timestamp": "2034-04-09T12:25:30.938Z", - "stale_warning_timestamp": "2034-04-16T12:25:30.938Z", - "updated": "2024-04-09T12:25:30.938Z", + "culled_timestamp": "2034-05-07T12:31:33.499Z", + "stale_timestamp": "2034-04-23T12:31:33.499Z", + "stale_warning_timestamp": "2034-04-30T12:31:33.499Z", + "updated": "2024-04-23T12:31:33.499Z", "insights_id": null, "tags": [ { - "key": "system", - "value": "auxiliary", - "namespace": "indexing" + "key": "application", + "value": "cross-platform", + "namespace": "copying" }, { - "key": "pixel", - "value": "primary", - "namespace": "generating" + "key": "alarm", + "value": "haptic", + "namespace": "connecting" }, { - "key": "matrix", - "value": "cross-platform", - "namespace": "synthesizing" + "key": "driver", + "value": "virtual", + "namespace": "quantifying" }, { - "key": "monitor", - "value": "open-source", - "namespace": "overriding" + "key": "interface", + "value": "digital", + "namespace": "indexing" }, { - "key": "capacitor", - "value": "haptic", - "namespace": "synthesizing" + "key": "pixel", + "value": "1080p", + "namespace": "copying" } ], "type": "system", @@ -7220,9 +8154,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/67a227f1-d2e1-4231-9266-5769cb9e4595/systems?filter=%28os_major_version%3D8%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/67a227f1-d2e1-4231-9266-5769cb9e4595/systems?filter=%28os_major_version%3D8%29&limit=10&offset=20", - "next": "/api/compliance/v2/policies/67a227f1-d2e1-4231-9266-5769cb9e4595/systems?filter=%28os_major_version%3D8%29&limit=10&offset=10" + "first": "/api/compliance/v2/policies/55b35dd9-62eb-42ee-a562-fa4c2dd84765/systems?filter=%28os_major_version%3D8%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/55b35dd9-62eb-42ee-a562-fa4c2dd84765/systems?filter=%28os_major_version%3D8%29&limit=10&offset=20", + "next": "/api/compliance/v2/policies/55b35dd9-62eb-42ee-a562-fa4c2dd84765/systems?filter=%28os_major_version%3D8%29&limit=10&offset=10" } }, "summary": "", @@ -7321,39 +8255,39 @@ "value": { "data": [ { - "id": "150f1482-b68c-4850-bcc0-b67fc8833590", - "display_name": "rempel-kovacek.example", + "id": "01b2f795-f03a-4dd9-8b31-97de79f79718", + "display_name": "mayert-jacobson.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.422Z", - "stale_timestamp": "2034-04-09T12:25:31.422Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.422Z", - "updated": "2024-04-09T12:25:31.422Z", + "culled_timestamp": "2034-05-07T12:31:34.051Z", + "stale_timestamp": "2034-04-23T12:31:34.051Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.051Z", + "updated": "2024-04-23T12:31:34.051Z", "insights_id": null, "tags": [ { - "key": "port", - "value": "back-end", - "namespace": "bypassing" + "key": "system", + "value": "virtual", + "namespace": "copying" }, { - "key": "microchip", - "value": "bluetooth", - "namespace": "connecting" + "key": "sensor", + "value": "online", + "namespace": "navigating" }, { - "key": "program", - "value": "1080p", - "namespace": "backing up" + "key": "port", + "value": "wireless", + "namespace": "bypassing" }, { - "key": "port", - "value": "virtual", - "namespace": "connecting" + "key": "alarm", + "value": "redundant", + "namespace": "quantifying" }, { - "key": "matrix", - "value": "optical", - "namespace": "compressing" + "key": "program", + "value": "virtual", + "namespace": "synthesizing" } ], "type": "system", @@ -7361,39 +8295,39 @@ "os_minor_version": 0 }, { - "id": "15caeb08-49d2-4a00-934b-43427254ee4f", - "display_name": "jast.test", + "id": "0ca31a3e-f08c-4745-a1d9-a3cd6805cf81", + "display_name": "tromp.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.407Z", - "stale_timestamp": "2034-04-09T12:25:31.407Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.407Z", - "updated": "2024-04-09T12:25:31.407Z", + "culled_timestamp": "2034-05-07T12:31:34.060Z", + "stale_timestamp": "2034-04-23T12:31:34.060Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.060Z", + "updated": "2024-04-23T12:31:34.060Z", "insights_id": null, "tags": [ { - "key": "protocol", - "value": "cross-platform", - "namespace": "overriding" + "key": "array", + "value": "mobile", + "namespace": "parsing" }, { - "key": "capacitor", - "value": "haptic", - "namespace": "programming" + "key": "sensor", + "value": "auxiliary", + "namespace": "transmitting" }, { - "key": "application", - "value": "haptic", - "namespace": "generating" + "key": "array", + "value": "1080p", + "namespace": "transmitting" }, { - "key": "matrix", - "value": "redundant", - "namespace": "connecting" + "key": "bandwidth", + "value": "primary", + "namespace": "programming" }, { - "key": "port", - "value": "bluetooth", - "namespace": "bypassing" + "key": "hard drive", + "value": "online", + "namespace": "parsing" } ], "type": "system", @@ -7401,39 +8335,39 @@ "os_minor_version": 0 }, { - "id": "160a4416-dce0-4c7f-a6f0-acc2b8f965c7", - "display_name": "treutel-king.example", + "id": "1954bebf-dbf6-4231-a4bf-e98b9f0057a4", + "display_name": "satterfield.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.413Z", - "stale_timestamp": "2034-04-09T12:25:31.413Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.413Z", - "updated": "2024-04-09T12:25:31.413Z", + "culled_timestamp": "2034-05-07T12:31:34.076Z", + "stale_timestamp": "2034-04-23T12:31:34.076Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.076Z", + "updated": "2024-04-23T12:31:34.076Z", "insights_id": null, "tags": [ { - "key": "driver", - "value": "online", - "namespace": "backing up" + "key": "application", + "value": "digital", + "namespace": "calculating" }, { - "key": "sensor", - "value": "wireless", - "namespace": "compressing" + "key": "firewall", + "value": "mobile", + "namespace": "backing up" }, { - "key": "program", - "value": "solid state", - "namespace": "quantifying" + "key": "alarm", + "value": "virtual", + "namespace": "programming" }, { - "key": "port", - "value": "1080p", - "namespace": "quantifying" + "key": "matrix", + "value": "optical", + "namespace": "overriding" }, { - "key": "array", - "value": "multi-byte", - "namespace": "connecting" + "key": "pixel", + "value": "virtual", + "namespace": "programming" } ], "type": "system", @@ -7441,39 +8375,39 @@ "os_minor_version": 0 }, { - "id": "18737424-8143-4be2-8ee4-6cdd90e3453b", - "display_name": "langworth.test", + "id": "1ca5583f-e111-4c68-921c-5dfd25c2a095", + "display_name": "gislason.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.423Z", - "stale_timestamp": "2034-04-09T12:25:31.423Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.423Z", - "updated": "2024-04-09T12:25:31.423Z", + "culled_timestamp": "2034-05-07T12:31:34.066Z", + "stale_timestamp": "2034-04-23T12:31:34.066Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.066Z", + "updated": "2024-04-23T12:31:34.066Z", "insights_id": null, "tags": [ { - "key": "transmitter", - "value": "bluetooth", - "namespace": "indexing" - }, - { - "key": "hard drive", - "value": "open-source", - "namespace": "indexing" + "key": "bandwidth", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "card", - "value": "auxiliary", - "namespace": "generating" + "key": "protocol", + "value": "haptic", + "namespace": "compressing" }, { - "key": "circuit", - "value": "solid state", - "namespace": "compressing" + "key": "hard drive", + "value": "redundant", + "namespace": "programming" + }, + { + "key": "firewall", + "value": "online", + "namespace": "copying" }, { "key": "card", - "value": "mobile", - "namespace": "compressing" + "value": "neural", + "namespace": "indexing" } ], "type": "system", @@ -7481,39 +8415,39 @@ "os_minor_version": 0 }, { - "id": "1a6286d0-a3c1-40d0-aa70-193287da33cb", - "display_name": "wisoky.test", + "id": "1d7e09c3-b910-492c-a8cb-7ffc8636e515", + "display_name": "bahringer-fahey.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.420Z", - "stale_timestamp": "2034-04-09T12:25:31.420Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.420Z", - "updated": "2024-04-09T12:25:31.420Z", + "culled_timestamp": "2034-05-07T12:31:34.053Z", + "stale_timestamp": "2034-04-23T12:31:34.053Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.053Z", + "updated": "2024-04-23T12:31:34.053Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "open-source", - "namespace": "transmitting" + "key": "capacitor", + "value": "1080p", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "haptic", - "namespace": "copying" + "key": "microchip", + "value": "neural", + "namespace": "overriding" }, { - "key": "capacitor", - "value": "online", - "namespace": "backing up" + "key": "hard drive", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "alarm", - "value": "online", - "namespace": "transmitting" + "key": "monitor", + "value": "mobile", + "namespace": "navigating" }, { - "key": "array", - "value": "virtual", - "namespace": "programming" + "key": "sensor", + "value": "cross-platform", + "namespace": "parsing" } ], "type": "system", @@ -7521,39 +8455,39 @@ "os_minor_version": 0 }, { - "id": "2bff4a12-3008-4359-a3ec-e18cb37daf0a", - "display_name": "mante-von.test", + "id": "1debcd57-5bbc-4d08-bebf-5bfafa0bab5e", + "display_name": "mante.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.406Z", - "stale_timestamp": "2034-04-09T12:25:31.406Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.406Z", - "updated": "2024-04-09T12:25:31.406Z", + "culled_timestamp": "2034-05-07T12:31:34.061Z", + "stale_timestamp": "2034-04-23T12:31:34.061Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.061Z", + "updated": "2024-04-23T12:31:34.061Z", "insights_id": null, "tags": [ { - "key": "sensor", - "value": "auxiliary", - "namespace": "copying" + "key": "port", + "value": "haptic", + "namespace": "transmitting" }, { - "key": "hard drive", - "value": "multi-byte", - "namespace": "copying" + "key": "capacitor", + "value": "mobile", + "namespace": "connecting" }, { - "key": "firewall", - "value": "mobile", - "namespace": "quantifying" + "key": "port", + "value": "haptic", + "namespace": "connecting" }, { - "key": "hard drive", - "value": "solid state", - "namespace": "transmitting" + "key": "firewall", + "value": "cross-platform", + "namespace": "calculating" }, { - "key": "panel", - "value": "redundant", - "namespace": "connecting" + "key": "array", + "value": "optical", + "namespace": "programming" } ], "type": "system", @@ -7561,39 +8495,39 @@ "os_minor_version": 0 }, { - "id": "7f0a7bc4-218f-4ab2-86fa-52fddc99524a", - "display_name": "roberts-streich.example", + "id": "2631d406-43ad-46eb-a75b-a78b5528b0e9", + "display_name": "bednar.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.412Z", - "stale_timestamp": "2034-04-09T12:25:31.412Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.412Z", - "updated": "2024-04-09T12:25:31.412Z", + "culled_timestamp": "2034-05-07T12:31:34.054Z", + "stale_timestamp": "2034-04-23T12:31:34.054Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.054Z", + "updated": "2024-04-23T12:31:34.054Z", "insights_id": null, "tags": [ { - "key": "panel", - "value": "neural", + "key": "matrix", + "value": "virtual", "namespace": "hacking" }, { - "key": "panel", - "value": "multi-byte", - "namespace": "parsing" + "key": "microchip", + "value": "back-end", + "namespace": "bypassing" }, { "key": "port", - "value": "primary", - "namespace": "compressing" + "value": "bluetooth", + "namespace": "copying" }, { - "key": "system", - "value": "back-end", - "namespace": "calculating" + "key": "driver", + "value": "cross-platform", + "namespace": "bypassing" }, { - "key": "matrix", - "value": "multi-byte", - "namespace": "calculating" + "key": "alarm", + "value": "neural", + "namespace": "navigating" } ], "type": "system", @@ -7601,39 +8535,39 @@ "os_minor_version": 0 }, { - "id": "8429b24a-bd53-409b-93c5-3486aa50da56", - "display_name": "kilback.test", + "id": "4660f5fe-820c-4d7d-b6ae-2c6826980e83", + "display_name": "goldner.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.405Z", - "stale_timestamp": "2034-04-09T12:25:31.405Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.405Z", - "updated": "2024-04-09T12:25:31.405Z", + "culled_timestamp": "2034-05-07T12:31:34.052Z", + "stale_timestamp": "2034-04-23T12:31:34.052Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.052Z", + "updated": "2024-04-23T12:31:34.052Z", "insights_id": null, "tags": [ { - "key": "capacitor", + "key": "driver", "value": "open-source", - "namespace": "hacking" + "namespace": "copying" }, { - "key": "port", - "value": "digital", - "namespace": "connecting" + "key": "program", + "value": "online", + "namespace": "copying" }, { "key": "driver", - "value": "digital", - "namespace": "navigating" + "value": "neural", + "namespace": "synthesizing" }, { - "key": "application", - "value": "mobile", - "namespace": "bypassing" + "key": "firewall", + "value": "online", + "namespace": "generating" }, { - "key": "driver", - "value": "virtual", - "namespace": "calculating" + "key": "bus", + "value": "mobile", + "namespace": "programming" } ], "type": "system", @@ -7641,39 +8575,39 @@ "os_minor_version": 0 }, { - "id": "97a4733b-2d38-4e2d-9d98-fd7b10440f39", - "display_name": "zemlak-welch.example", + "id": "6a8316da-4741-42cb-a30a-f82a114f8639", + "display_name": "kunde.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.403Z", - "stale_timestamp": "2034-04-09T12:25:31.403Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.403Z", - "updated": "2024-04-09T12:25:31.403Z", + "culled_timestamp": "2034-05-07T12:31:34.078Z", + "stale_timestamp": "2034-04-23T12:31:34.078Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.078Z", + "updated": "2024-04-23T12:31:34.078Z", "insights_id": null, "tags": [ { - "key": "matrix", - "value": "auxiliary", - "namespace": "generating" + "key": "circuit", + "value": "bluetooth", + "namespace": "navigating" }, { "key": "hard drive", - "value": "open-source", + "value": "haptic", "namespace": "calculating" }, { - "key": "application", - "value": "online", - "namespace": "bypassing" + "key": "alarm", + "value": "virtual", + "namespace": "generating" }, { - "key": "driver", - "value": "auxiliary", - "namespace": "calculating" + "key": "firewall", + "value": "redundant", + "namespace": "quantifying" }, { - "key": "panel", - "value": "cross-platform", - "namespace": "copying" + "key": "card", + "value": "auxiliary", + "namespace": "parsing" } ], "type": "system", @@ -7681,39 +8615,39 @@ "os_minor_version": 0 }, { - "id": "993571a3-f4cb-4a99-8b83-14183600a89f", - "display_name": "wilkinson.example", + "id": "6e28085a-7fdd-4360-8049-ecde40b0a198", + "display_name": "nienow.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.409Z", - "stale_timestamp": "2034-04-09T12:25:31.409Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.409Z", - "updated": "2024-04-09T12:25:31.409Z", + "culled_timestamp": "2034-05-07T12:31:34.070Z", + "stale_timestamp": "2034-04-23T12:31:34.070Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.070Z", + "updated": "2024-04-23T12:31:34.070Z", "insights_id": null, "tags": [ { - "key": "circuit", - "value": "bluetooth", - "namespace": "hacking" + "key": "panel", + "value": "redundant", + "namespace": "quantifying" }, { - "key": "panel", - "value": "virtual", - "namespace": "bypassing" + "key": "bandwidth", + "value": "solid state", + "namespace": "copying" }, { - "key": "card", - "value": "open-source", - "namespace": "overriding" + "key": "firewall", + "value": "primary", + "namespace": "synthesizing" }, { - "key": "circuit", - "value": "redundant", - "namespace": "parsing" + "key": "bus", + "value": "neural", + "namespace": "synthesizing" }, { - "key": "array", - "value": "multi-byte", - "namespace": "calculating" + "key": "port", + "value": "wireless", + "namespace": "connecting" } ], "type": "system", @@ -7728,9 +8662,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/45207a00-cf78-4cb6-8060-5e7ecfaa8145/systems?limit=10&offset=0", - "last": "/api/compliance/v2/policies/45207a00-cf78-4cb6-8060-5e7ecfaa8145/systems?limit=10&offset=20", - "next": "/api/compliance/v2/policies/45207a00-cf78-4cb6-8060-5e7ecfaa8145/systems?limit=10&offset=10" + "first": "/api/compliance/v2/policies/dc02775b-1fe8-495b-b34e-6eedb055ee41/systems?limit=10&offset=0", + "last": "/api/compliance/v2/policies/dc02775b-1fe8-495b-b34e-6eedb055ee41/systems?limit=10&offset=20", + "next": "/api/compliance/v2/policies/dc02775b-1fe8-495b-b34e-6eedb055ee41/systems?limit=10&offset=10" } }, "summary": "", @@ -7773,7 +8707,7 @@ "items": { "type": "string", "examples": [ - "c58d2216-534d-4aac-802b-f1531fe1506d" + "ab48bcad-36bc-4646-9940-dbb86d087687" ] } } @@ -7827,39 +8761,39 @@ "Assigns a System to a Policy": { "value": { "data": { - "id": "22026eeb-9c5f-4cf4-83e2-0cb130db3258", - "display_name": "kozey.example", + "id": "180f0a8e-bd09-470a-a8cf-5e28e4373b0b", + "display_name": "moore.example", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.457Z", - "stale_timestamp": "2034-04-09T12:25:31.457Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.457Z", - "updated": "2024-04-09T12:25:31.457Z", + "culled_timestamp": "2034-05-07T12:31:34.113Z", + "stale_timestamp": "2034-04-23T12:31:34.113Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.113Z", + "updated": "2024-04-23T12:31:34.113Z", "insights_id": null, "tags": [ { - "key": "pixel", - "value": "haptic", - "namespace": "connecting" + "key": "bandwidth", + "value": "neural", + "namespace": "programming" }, { - "key": "array", - "value": "wireless", - "namespace": "calculating" + "key": "system", + "value": "redundant", + "namespace": "hacking" }, { - "key": "hard drive", - "value": "mobile", + "key": "capacitor", + "value": "wireless", "namespace": "overriding" }, { - "key": "bus", - "value": "redundant", - "namespace": "bypassing" + "key": "circuit", + "value": "bluetooth", + "namespace": "calculating" }, { - "key": "bandwidth", - "value": "cross-platform", - "namespace": "parsing" + "key": "capacitor", + "value": "multi-byte", + "namespace": "bypassing" } ], "type": "system", @@ -7895,7 +8829,7 @@ "Assigns a System to a Policy": { "value": { "errors": [ - "V2::System not found with ID 9856b1fc-9b93-48f8-82f4-c78c4a03c455" + "V2::System not found with ID 995047d1-dd59-452f-8f5b-605700603c16" ] }, "summary": "", @@ -7952,39 +8886,39 @@ "Unassigns a System from a Policy": { "value": { "data": { - "id": "f695f0de-f7b3-46cc-ab9f-3799119ee454", - "display_name": "davis.example", + "id": "595c2f21-0ebf-4e72-ae4f-6bd084140cce", + "display_name": "weber-ryan.test", "groups": [], - "culled_timestamp": "2034-04-23T12:25:31.528Z", - "stale_timestamp": "2034-04-09T12:25:31.528Z", - "stale_warning_timestamp": "2034-04-16T12:25:31.528Z", - "updated": "2024-04-09T12:25:31.528Z", + "culled_timestamp": "2034-05-07T12:31:34.185Z", + "stale_timestamp": "2034-04-23T12:31:34.185Z", + "stale_warning_timestamp": "2034-04-30T12:31:34.185Z", + "updated": "2024-04-23T12:31:34.185Z", "insights_id": null, "tags": [ { - "key": "interface", - "value": "wireless", - "namespace": "parsing" + "key": "bandwidth", + "value": "multi-byte", + "namespace": "hacking" }, { - "key": "driver", - "value": "bluetooth", - "namespace": "connecting" + "key": "microchip", + "value": "virtual", + "namespace": "quantifying" }, { - "key": "program", - "value": "auxiliary", - "namespace": "copying" + "key": "system", + "value": "solid state", + "namespace": "compressing" }, { - "key": "hard drive", - "value": "1080p", - "namespace": "navigating" + "key": "panel", + "value": "redundant", + "namespace": "bypassing" }, { - "key": "sensor", - "value": "auxiliary", - "namespace": "parsing" + "key": "port", + "value": "back-end", + "namespace": "transmitting" } ], "type": "system", @@ -8020,7 +8954,7 @@ "Description of an error when unassigning a non-existing System": { "value": { "errors": [ - "V2::System not found with ID 26c5bdf8-fb69-406f-b1e1-7260279434d9" + "V2::System not found with ID c7b44c2a-5b06-4ba7-8e34-92a51396a021" ] }, "summary": "", @@ -8120,81 +9054,81 @@ "value": { "data": [ { - "id": "17bc4155-033b-4945-a15f-a54f90510b1a", - "profile_id": "eb45ea8e-1f68-42a9-9658-9fd31ce0fc3b", - "os_minor_version": "19", + "id": "00432a01-e03d-4eb8-9ab2-1ed35c47af7e", + "profile_id": "ee87c8eb-77e9-4598-af59-445c69e6eb5b", + "os_minor_version": "2", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "233a7498-3fb8-4862-bb58-378794e204c0", - "profile_id": "1d3e58d6-d89a-4c7b-8e6c-866914417a84", - "os_minor_version": "5", + "id": "0116ce40-4227-480c-bba8-5117d82477e2", + "profile_id": "35d58c95-13c0-4c0f-ae5a-608068a08673", + "os_minor_version": "1", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "33fb5629-7e09-4b53-9365-a444802a3668", - "profile_id": "19573436-30c9-4edf-a2e0-c0d4d20b7e96", - "os_minor_version": "2", + "id": "16d5cc4b-0aca-4d2b-a08b-491d674fce61", + "profile_id": "e1521fc9-a7a9-47b5-b76d-d77dcb536652", + "os_minor_version": "13", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "348437c4-152a-45f7-9e49-e9d651d4f6d9", - "profile_id": "50054f10-57e7-4311-abfe-1d3d43867931", - "os_minor_version": "22", + "id": "221a9cb9-bde8-4315-ac81-f735256620d2", + "profile_id": "6467d75e-7049-4bb9-9aa9-aa01bcc194fe", + "os_minor_version": "21", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "40129d7c-d372-4e82-8dff-e22e78e28644", - "profile_id": "569a8ae0-f452-4fe7-8af6-fc28a7aebf52", - "os_minor_version": "13", + "id": "30f360f2-e32b-43e6-914f-017ae593e6c6", + "profile_id": "74fb253e-4ea4-4ade-ad56-cace5770fa61", + "os_minor_version": "20", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "456667c4-7ad4-4693-b63a-5bdd78ff882d", - "profile_id": "2228d499-a050-4758-a559-035a7db268fb", - "os_minor_version": "10", + "id": "4802109c-0083-406d-8672-5c5d5362811d", + "profile_id": "1bf337b3-3225-413a-bc0d-d0d8e8254d78", + "os_minor_version": "12", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "597750d7-e210-4af0-b911-6f008c38ac25", - "profile_id": "49d54a1d-0ee9-4c77-909d-a4562588a5e9", - "os_minor_version": "24", + "id": "4d630b5a-7137-49bf-9b7d-a0996391d706", + "profile_id": "2aea6687-96c2-4461-99d3-b77ffdff4cb3", + "os_minor_version": "5", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "5cbef9a3-f9dc-4a67-8067-e42f3efbb1f6", - "profile_id": "2e504084-bba6-4ae6-8a6f-5dee82263faa", - "os_minor_version": "7", + "id": "61b6ddc0-e902-4cc9-92f8-f6ff181747e9", + "profile_id": "78d3c21a-b29f-4a11-90fc-5dc446e90fcd", + "os_minor_version": "17", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "6b4076f5-b235-4159-920b-6798adacf819", - "profile_id": "01b43693-6d2a-40c0-ac13-e018cb099dde", - "os_minor_version": "21", + "id": "72184713-26fa-485e-b6d9-b3ac90986541", + "profile_id": "76d4a850-7bce-47ce-b35c-2925580aa22a", + "os_minor_version": "11", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "72345b09-a2e8-46b4-b922-e73c70bd1987", - "profile_id": "7aa6814f-c1d2-45ae-9dd0-edd1d8adf45c", - "os_minor_version": "16", + "id": "740995bb-f761-45a8-87c6-594e6f05b4ca", + "profile_id": "a13ff79f-da8f-481d-8e8f-03e48a62c712", + "os_minor_version": "8", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 @@ -8206,9 +9140,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/734b3e33-b03b-4761-a0ba-6f80900bde5f/tailorings?limit=10&offset=0", - "last": "/api/compliance/v2/policies/734b3e33-b03b-4761-a0ba-6f80900bde5f/tailorings?limit=10&offset=20", - "next": "/api/compliance/v2/policies/734b3e33-b03b-4761-a0ba-6f80900bde5f/tailorings?limit=10&offset=10" + "first": "/api/compliance/v2/policies/7b15119a-8e09-4bd4-92cc-c3fab37c5506/tailorings?limit=10&offset=0", + "last": "/api/compliance/v2/policies/7b15119a-8e09-4bd4-92cc-c3fab37c5506/tailorings?limit=10&offset=20", + "next": "/api/compliance/v2/policies/7b15119a-8e09-4bd4-92cc-c3fab37c5506/tailorings?limit=10&offset=10" } }, "summary": "", @@ -8218,80 +9152,80 @@ "value": { "data": [ { - "id": "324d7e27-6a8e-4259-9b09-39afd3dd899e", - "profile_id": "283040d7-827c-4c38-97e1-6e86cd9becbc", + "id": "38114958-3548-44f8-a214-7ac537f006ad", + "profile_id": "40778b7d-462f-46b0-be25-84fc916e25bf", "os_minor_version": "0", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "be19932a-46b6-4d68-9515-b708114d2f30", - "profile_id": "1ddf2a73-741b-462c-a056-c60c076dd44d", + "id": "db1c1a72-1619-4836-988d-613a6a5782e9", + "profile_id": "97fe024d-22c2-4517-a09e-1f48c2f70e6d", "os_minor_version": "1", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "e138ee9b-1cee-4272-bfdc-af07169a072e", - "profile_id": "c540d3f6-0672-4543-a526-4abcc4585759", + "id": "bc04ebe2-f73d-42d8-a92b-a0e3e0d47808", + "profile_id": "39c86da9-482c-404f-a8dd-a4d45094db25", "os_minor_version": "10", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "530ebfc6-f88f-44c2-b481-3ce83c728924", - "profile_id": "0f5d78d2-9056-45fe-82eb-16ecd6d7d5b9", + "id": "47297bf8-5cce-4df5-8559-ac678cd4a13c", + "profile_id": "9fe879c9-c47b-470c-a66c-9f7cf4dfa98c", "os_minor_version": "11", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "9ad55d1d-5099-4a5d-94fa-441906bc6b23", - "profile_id": "5dfbf63f-c399-4e47-88ed-e804edd6eef3", + "id": "7e815249-7e05-4245-a85d-afb36c96b956", + "profile_id": "5ea554f1-4259-4497-b401-1b9d8a324c77", "os_minor_version": "12", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "fa946b03-1e61-4c22-a11a-2fe7072629dc", - "profile_id": "78246ff8-cbb7-478c-8e0a-9674d509ab81", + "id": "2e6bb3c2-379f-4fab-9118-7a1d90388f5c", + "profile_id": "9d9ddb70-85e9-4f0e-9b93-73bdcfdac0b2", "os_minor_version": "13", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "dc7fd28b-aef4-49a7-9c3f-72e4e6aa6f70", - "profile_id": "97e2d85e-63be-44d5-be0a-99ac6dc5d968", + "id": "1290b89f-fdf0-4ab7-add8-32c2ff49cc1f", + "profile_id": "b91b574c-84ba-4569-8dee-3ca49018a51e", "os_minor_version": "14", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "e210b8cb-4e70-45fa-9bbd-c06f982cb3e4", - "profile_id": "4cf051c9-13f5-4e5c-ba5a-20765aae3534", + "id": "a2c9d984-570b-43bd-b862-6f020aa6eaa1", + "profile_id": "a1f97f39-1cc6-4388-919d-0fbefd48f1fb", "os_minor_version": "15", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "a008235e-0d8d-4152-a81c-e762d6576f2e", - "profile_id": "5622cfc1-9c2c-415c-92e0-88f6f8069181", + "id": "a9ecab20-493f-46e5-80d1-693af2a13fac", + "profile_id": "a333236c-7b6a-431b-b4ef-f09bac595aef", "os_minor_version": "16", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 }, { - "id": "52d5b59c-23a2-430a-931f-9790024adf4e", - "profile_id": "6e260554-5e78-42cf-92a8-bc8a31793de7", + "id": "16e29fd4-6e0e-42d0-af5e-c80c35713584", + "profile_id": "1178ad93-9735-41a5-a432-456eeb122cf8", "os_minor_version": "17", "value_overrides": {}, "type": "tailoring", @@ -8305,21 +9239,21 @@ "sort_by": "os_minor_version" }, "links": { - "first": "/api/compliance/v2/policies/999e7d99-9996-45a1-9a61-b62de6bd0136/tailorings?limit=10&offset=0&sort_by=os_minor_version", - "last": "/api/compliance/v2/policies/999e7d99-9996-45a1-9a61-b62de6bd0136/tailorings?limit=10&offset=20&sort_by=os_minor_version", - "next": "/api/compliance/v2/policies/999e7d99-9996-45a1-9a61-b62de6bd0136/tailorings?limit=10&offset=10&sort_by=os_minor_version" + "first": "/api/compliance/v2/policies/d20bd3d4-32ff-4db9-8981-9c16e7347012/tailorings?limit=10&offset=0&sort_by=os_minor_version", + "last": "/api/compliance/v2/policies/d20bd3d4-32ff-4db9-8981-9c16e7347012/tailorings?limit=10&offset=20&sort_by=os_minor_version", + "next": "/api/compliance/v2/policies/d20bd3d4-32ff-4db9-8981-9c16e7347012/tailorings?limit=10&offset=10&sort_by=os_minor_version" } }, "summary": "", "description": "" }, - "List of Tailorings filtered by '(os_minor_version=7)'": { + "List of Tailorings filtered by '(os_minor_version=6)'": { "value": { "data": [ { - "id": "05502f97-f074-4b9e-9681-e06afc191a82", - "profile_id": "7fe2f86d-19e6-4c8b-ae6e-f54c90deb8f3", - "os_minor_version": "7", + "id": "013e05e3-cb77-4380-a6de-f38840415bfa", + "profile_id": "8a0d0bb8-019e-4b14-94ea-8cb31200a7c6", + "os_minor_version": "6", "value_overrides": {}, "type": "tailoring", "os_major_version": 7 @@ -8327,13 +9261,13 @@ ], "meta": { "total": 1, - "filter": "(os_minor_version=7)", + "filter": "(os_minor_version=6)", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/policies/299097ea-3389-4aa8-9f59-2af96cfc66f4/tailorings?filter=%28os_minor_version%3D7%29&limit=10&offset=0", - "last": "/api/compliance/v2/policies/299097ea-3389-4aa8-9f59-2af96cfc66f4/tailorings?filter=%28os_minor_version%3D7%29&limit=10&offset=0" + "first": "/api/compliance/v2/policies/16b54100-bd8c-42b6-a10b-9c185922111a/tailorings?filter=%28os_minor_version%3D6%29&limit=10&offset=0", + "last": "/api/compliance/v2/policies/16b54100-bd8c-42b6-a10b-9c185922111a/tailorings?filter=%28os_minor_version%3D6%29&limit=10&offset=0" } }, "summary": "", @@ -8450,8 +9384,8 @@ "Returns a Tailoring": { "value": { "data": { - "id": "a004e1e3-40ac-4973-8f6f-753c6d6fc3f2", - "profile_id": "d7f2d851-9d09-4493-91aa-189909b9240c", + "id": "4c6ff256-59da-4603-bd32-3f70c0874c72", + "profile_id": "3095ca77-44b3-459c-96a9-46d50aff500b", "os_minor_version": "1", "value_overrides": {}, "type": "tailoring", @@ -8486,7 +9420,7 @@ "Description of an error when requesting a non-existing Tailoring": { "value": { "errors": [ - "V2::Tailoring not found with ID 7ef74775-1f4f-4a81-9e5c-0cbe48888bab" + "V2::Tailoring not found with ID 339771d7-350c-4326-a972-b88c9f46eec7" ] }, "summary": "", @@ -8556,23 +9490,23 @@ "value": { "profiles": [ { - "id": "xccdf_org.ssgproject.content_profile_a0ca2ef9bb3b16f8120a1bccfb2a4d63", - "title": "Odio quia veritatis vero.", + "id": "xccdf_org.ssgproject.content_profile_fd9d9be71938c643f5375f1324ec40c8", + "title": "Illum et corrupti possimus.", "groups": {}, "rules": { - "xccdf_org.ssgproject.content_rule_08325c70b150feaa04b398e244c47691": { + "xccdf_org.ssgproject.content_rule_35c0dcbbf9c0662387f2bc20818c5f4c": { "evaluate": false }, - "xccdf_org.ssgproject.content_rule_d2abbf4995353d7e28b8ca3b17382773": { + "xccdf_org.ssgproject.content_rule_3f1eb653c58088f4abdc89fabc99c321": { "evaluate": false } }, "variables": { - "foo_value_7bf09c41-c5bd-4758-8da4-81b0e9fa009e": { - "value": 4 + "foo_value_85a5618a-fb97-43f4-80ac-9b8a960b228a": { + "value": 87 }, - "foo_value_975f256f-8f5c-46f5-ba8e-ceb0e13a14f2": { - "value": 7 + "foo_value_de2919d8-8f72-4e02-9d84-f6012ef845b5": { + "value": 23 } } } @@ -8675,91 +9609,91 @@ "value": { "data": [ { - "id": "0014eae2-bfac-48db-aff6-8629eea01739", - "ref_id": "foo_value_71f967f5-619d-4c20-bd25-b9e80d3b97aa", - "title": "Cum est est et.", - "description": "Et sed autem. Amet et earum. Harum in omnis.", + "id": "0ccec8d4-434f-4a9e-8c6d-cac4a17bbfca", + "ref_id": "foo_value_f2e6c9c4-a884-43a3-9392-15b6f349932c", + "title": "Velit earum enim enim.", + "description": "Est iste dolor. Earum velit et. Porro voluptatem aut.", "value_type": "boolean", "default_value": "true", "type": "value_definition" }, { - "id": "0d2af64d-5f87-4afa-92db-425d71f157bd", - "ref_id": "foo_value_123ddebe-c92d-44e5-8a10-7b991e58bdfe", - "title": "Quaerat praesentium culpa velit.", - "description": "Numquam totam qui. Dolorem neque dolorem. Qui magnam aliquam.", + "id": "14899959-0dd4-4e18-a101-6203656a6bd2", + "ref_id": "foo_value_6b33a9e4-d6ce-4824-a2cd-14edbd03884a", + "title": "Aut ad omnis repellendus.", + "description": "Officiis dicta eos. Ea sit alias. Explicabo totam autem.", "value_type": "boolean", "default_value": "true", "type": "value_definition" }, { - "id": "2a60cd14-9887-4b62-befe-18ce2874c4e8", - "ref_id": "foo_value_9bb92c0d-7bde-481f-96da-98b873f5ef3f", - "title": "Sequi consequatur aut tempora.", - "description": "Non aspernatur labore. Soluta nihil ab. Magnam ab quia.", + "id": "21cd7fb4-0eab-4a79-a140-87fb8304ec84", + "ref_id": "foo_value_de05b9ac-ed71-4cd5-9b0e-8b1035140ad4", + "title": "Et veritatis maiores itaque.", + "description": "Aspernatur sint id. Eum quo doloribus. Eligendi consectetur velit.", "value_type": "boolean", - "default_value": "false", + "default_value": "true", "type": "value_definition" }, { - "id": "2bc3004a-e139-4f6f-9ef6-4729d0b838b8", - "ref_id": "foo_value_2e6644fe-0f80-44aa-9018-2ceb526784f4", - "title": "Ad inventore amet ex.", - "description": "Dignissimos iure cupiditate. Sit et possimus. Necessitatibus sit quia.", + "id": "287b721f-b787-485a-8ec1-19ae9b18d784", + "ref_id": "foo_value_7a6032da-0240-414e-9199-9cb2ed3e934a", + "title": "Libero reiciendis adipisci odio.", + "description": "Ut modi nam. Eligendi nam distinctio. Eos dolor labore.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "325b2ccf-fbc9-4b2a-81c7-7332f374679c", - "ref_id": "foo_value_8ce0a273-8288-4e99-8711-87cb41168593", - "title": "Et illo facere culpa.", - "description": "Velit sunt rerum. Culpa sit vitae. Doloremque ullam nobis.", + "id": "2fa2f147-1c82-474b-afd6-77d722e78681", + "ref_id": "foo_value_c24cf653-c52f-417e-b3af-04afcde30591", + "title": "Distinctio rem ut soluta.", + "description": "Sunt dolor facere. Dignissimos fugit provident. Voluptatibus quam quia.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "38a24f98-775c-45d0-a633-e283b45b1789", - "ref_id": "foo_value_d8494faf-288f-4525-8cea-c70387dc92ab", - "title": "Esse adipisci odit fuga.", - "description": "Quos neque dolores. Vitae non est. Sit et omnis.", + "id": "3ff69cda-8c42-48d7-9051-799893d8b744", + "ref_id": "foo_value_d62139ee-1c2b-4982-9d22-c8f3db2ce79d", + "title": "Facere provident debitis maxime.", + "description": "Enim deserunt debitis. Esse mollitia culpa. Fuga dolores et.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "46244e6e-773e-42d3-8210-9599c3696ffa", - "ref_id": "foo_value_5b36416a-d403-40b9-a448-9289e2f425dd", - "title": "Facilis corrupti recusandae soluta.", - "description": "Eius quidem in. Esse eligendi qui. Aut ratione enim.", + "id": "45d5f9ec-d17e-47b7-851f-0841316938bb", + "ref_id": "foo_value_015e71bc-5110-4ac5-97af-ecfaa7474a4f", + "title": "Qui adipisci non ullam.", + "description": "Maiores sequi est. Sit non suscipit. Et ab quaerat.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "52767c92-4732-49c9-882a-2c6913b44d41", - "ref_id": "foo_value_1acefa8f-8214-4151-af5b-a2c6cdab7ddb", - "title": "Ipsum maxime quisquam dolore.", - "description": "Facere perspiciatis eum. Molestiae quae eos. Provident qui sint.", + "id": "45f0072e-a02e-4a5d-8192-67c123ab656e", + "ref_id": "foo_value_81b70c5c-93c0-4d06-a6a9-b0be8c60b141", + "title": "Et distinctio aperiam cumque.", + "description": "Et deserunt sunt. Aut tempore ut. Ullam earum aut.", "value_type": "boolean", "default_value": "true", "type": "value_definition" }, { - "id": "57b855e9-5920-48cf-9d57-e165d52ea39a", - "ref_id": "foo_value_4fb53a94-5c26-4423-9877-37a4195fdf67", - "title": "Exercitationem dolor repudiandae libero.", - "description": "Ducimus incidunt alias. Officiis sit quaerat. Aliquid corporis alias.", + "id": "4d8b23b1-fd39-4f87-9188-86b9838fe046", + "ref_id": "foo_value_074b4cab-3af4-4b42-90f0-5d6386263910", + "title": "Quia et dolorem eaque.", + "description": "Et doloribus qui. Fugiat sapiente tenetur. Molestiae quo quasi.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "628706f2-051f-4eb1-9749-2d7c293773e8", - "ref_id": "foo_value_58012438-3191-41eb-ba1f-25d20a8f820c", - "title": "Quo est qui totam.", - "description": "Qui sunt molestiae. Sequi quaerat odio. Provident beatae voluptatem.", + "id": "61007f58-d296-48d4-aa8a-f96d2489ca7b", + "ref_id": "foo_value_24bc6b7b-3f40-4b59-9f53-98ae0c8940b8", + "title": "Provident vel suscipit quam.", + "description": "Asperiores aut molestias. Perferendis quaerat asperiores. Adipisci rerum voluptatem.", "value_type": "boolean", "default_value": "false", "type": "value_definition" @@ -8771,9 +9705,9 @@ "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/c13e227a-5b53-42f7-8c80-f177ee192ab6/value_definitions?limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/c13e227a-5b53-42f7-8c80-f177ee192ab6/value_definitions?limit=10&offset=20", - "next": "/api/compliance/v2/security_guides/c13e227a-5b53-42f7-8c80-f177ee192ab6/value_definitions?limit=10&offset=10" + "first": "/api/compliance/v2/security_guides/54baa89c-88b7-487b-82be-59ef565cb7ab/value_definitions?limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/54baa89c-88b7-487b-82be-59ef565cb7ab/value_definitions?limit=10&offset=20", + "next": "/api/compliance/v2/security_guides/54baa89c-88b7-487b-82be-59ef565cb7ab/value_definitions?limit=10&offset=10" } }, "summary": "", @@ -8783,93 +9717,93 @@ "value": { "data": [ { - "id": "9b763d09-7356-4120-ad5a-82d7143499b3", - "ref_id": "foo_value_b39446fc-7be5-476d-be1e-35688eb23e78", - "title": "Accusantium atque aut tenetur.", - "description": "Et ab illum. Voluptas sunt maxime. Enim similique consequuntur.", + "id": "29ba56b8-76a0-43bd-a423-d1a22b1c8c4c", + "ref_id": "foo_value_7c3b5e67-65ef-4ed8-94dc-6d0fadcc9ed3", + "title": "Asperiores exercitationem recusandae id.", + "description": "Et eos aliquam. Non ex nulla. Maxime facilis aspernatur.", "value_type": "boolean", - "default_value": "false", + "default_value": "true", "type": "value_definition" }, { - "id": "178af550-69fe-4412-afb2-e12000810288", - "ref_id": "foo_value_4709eb56-ec4f-4882-a3a0-b110e951521d", - "title": "Aut dicta possimus esse.", - "description": "Nisi omnis tenetur. Est saepe voluptate. Ex est repudiandae.", + "id": "cb83df42-2a44-4094-bf71-abf8b537e380", + "ref_id": "foo_value_a26ce104-fac7-41ad-ba96-949b822ddb6d", + "title": "Aspernatur sunt consequatur et.", + "description": "Aspernatur totam laborum. Corporis est placeat. Delectus mollitia consequatur.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "055f22da-f02d-438a-b72d-bacc5391a56a", - "ref_id": "foo_value_7b7eca63-70de-425a-b3e1-ae3f43805679", - "title": "Consequatur qui incidunt quos.", - "description": "Ipsam consequatur dicta. Tenetur adipisci architecto. Saepe temporibus tenetur.", + "id": "caded210-1294-4117-8894-5fabaac993cf", + "ref_id": "foo_value_746f6396-35da-4347-97b3-8b690134761b", + "title": "Corporis esse rerum aut.", + "description": "Alias et sunt. Impedit et nesciunt. Numquam voluptas ad.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "8c60e413-1c1c-40f6-9bcc-8a0dd7b158ca", - "ref_id": "foo_value_57c70566-108c-4e6a-a94d-55d4014fa496", - "title": "Consequatur quia consequatur fuga.", - "description": "A velit voluptatem. Quis adipisci quidem. Qui dolorem alias.", + "id": "738f522d-c362-43b2-a8ac-6d4530250946", + "ref_id": "foo_value_8e3897d6-b2f5-422e-8f59-cb7a77f92094", + "title": "Deleniti est est accusamus.", + "description": "Eius odio et. Quo et voluptas. Placeat voluptatem quos.", "value_type": "boolean", "default_value": "false", "type": "value_definition" }, { - "id": "737c497f-729d-4243-acf5-0dc3883326ca", - "ref_id": "foo_value_174a4a84-7477-428e-b1dc-6f187be7d0e6", - "title": "Cumque et culpa odio.", - "description": "Nisi voluptate labore. Officia minus quis. Occaecati voluptatem mollitia.", + "id": "76e191e7-6fd7-43d8-8ba9-e5d13c7bb4a6", + "ref_id": "foo_value_e0405a32-c3d8-4495-bead-6f988deb6af0", + "title": "Deleniti ut tenetur molestias.", + "description": "Sed at totam. Consequatur vel quia. Fuga excepturi dolor.", "value_type": "boolean", "default_value": "true", "type": "value_definition" }, { - "id": "7efc9a95-0df2-4467-87e3-9883cc1250ac", - "ref_id": "foo_value_4afadb61-f238-4e9a-a824-62567422bd5f", - "title": "Dolores et fuga saepe.", - "description": "Eos exercitationem consequuntur. Sed fugit beatae. Impedit et eos.", + "id": "bd557b66-373b-44d0-bbc5-15ed0032e71c", + "ref_id": "foo_value_7df5115e-e408-4112-84d8-401a025cdf19", + "title": "Distinctio dolore molestias velit.", + "description": "Cum ea corrupti. Sed omnis aperiam. Doloribus in sit.", "value_type": "boolean", "default_value": "true", "type": "value_definition" }, { - "id": "5b431dea-48e3-4b44-b8d4-cbbc3483be2a", - "ref_id": "foo_value_7bbd5ce1-812d-4e2c-b814-1d218424c52d", - "title": "Est enim mollitia laborum.", - "description": "Saepe error et. Adipisci ipsa quia. Tempore et ratione.", + "id": "f6323710-79f1-4986-b402-bd5c35a73e2e", + "ref_id": "foo_value_403de27b-06c2-48e4-9467-86bb8d139375", + "title": "Eaque quia maxime corporis.", + "description": "Sit quia non. Molestias eaque voluptatem. Dignissimos soluta enim.", "value_type": "boolean", - "default_value": "false", + "default_value": "true", "type": "value_definition" }, { - "id": "16814eee-ee0b-4aea-aafe-9d523c481555", - "ref_id": "foo_value_88b6eb1c-8d23-4281-84e1-6076c62218ec", - "title": "Est quia consequatur natus.", - "description": "Ad incidunt atque. Culpa voluptatem repudiandae. Tempore ut dolor.", + "id": "df26bb2a-8027-4e2c-b367-8507c9c697e0", + "ref_id": "foo_value_5bb23e70-a61a-464d-9afe-59d1644a2b48", + "title": "Est necessitatibus quia perferendis.", + "description": "Aut officia recusandae. Et dolores quia. Est deleniti ut.", "value_type": "boolean", "default_value": "true", "type": "value_definition" }, { - "id": "a4fbe57d-f387-4202-897a-615d2df9353f", - "ref_id": "foo_value_36a308ec-5e0e-4735-9f99-a30007060271", - "title": "Et et eveniet corporis.", - "description": "Eum doloremque et. Doloremque omnis similique. Sint possimus veniam.", + "id": "47324ecd-df2f-4dff-a8cc-3ec6ed0a2d97", + "ref_id": "foo_value_218c2ef2-ed47-4f0f-a6d7-e82b10b8cae2", + "title": "Et eius praesentium eveniet.", + "description": "Veniam quia debitis. Nobis consectetur cum. Autem esse aliquid.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" }, { - "id": "bddb589a-fb59-437b-9d3b-da2bcdc8841c", - "ref_id": "foo_value_d5196fe6-fcbd-4627-be57-a34717284757", - "title": "Illo qui sit minima.", - "description": "Qui commodi distinctio. Maxime vel quo. Aut assumenda vel.", + "id": "210ec8ef-9c52-44d9-90db-48fd458f8229", + "ref_id": "foo_value_8a613ae6-5f4d-4bc1-8d38-6d308092c604", + "title": "Et est optio iusto.", + "description": "Est possimus eum. Voluptatibus voluptas nulla. Est iure perspiciatis.", "value_type": "boolean", - "default_value": "true", + "default_value": "false", "type": "value_definition" } ], @@ -8880,26 +9814,36 @@ "sort_by": "title" }, "links": { - "first": "/api/compliance/v2/security_guides/fdfacb09-c1e3-47c0-8703-fddbe497bf51/value_definitions?limit=10&offset=0&sort_by=title", - "last": "/api/compliance/v2/security_guides/fdfacb09-c1e3-47c0-8703-fddbe497bf51/value_definitions?limit=10&offset=20&sort_by=title", - "next": "/api/compliance/v2/security_guides/fdfacb09-c1e3-47c0-8703-fddbe497bf51/value_definitions?limit=10&offset=10&sort_by=title" + "first": "/api/compliance/v2/security_guides/c655777d-5d49-4c63-9cb0-4c17bf248fe6/value_definitions?limit=10&offset=0&sort_by=title", + "last": "/api/compliance/v2/security_guides/c655777d-5d49-4c63-9cb0-4c17bf248fe6/value_definitions?limit=10&offset=20&sort_by=title", + "next": "/api/compliance/v2/security_guides/c655777d-5d49-4c63-9cb0-4c17bf248fe6/value_definitions?limit=10&offset=10&sort_by=title" } }, "summary": "", "description": "" }, - "List of Value Definitions filtered by '(title=Alias exercitationem repellendus voluptatem.)'": { + "List of Value Definitions filtered by '(title=Non rerum quidem in.)'": { "value": { - "data": [], + "data": [ + { + "id": "0c72cff2-fd09-4937-8054-4d05a1ca509a", + "ref_id": "foo_value_65c5b8ad-973e-46a7-a209-cc8df762e8e7", + "title": "Non rerum quidem in.", + "description": "Dignissimos labore reprehenderit. Sit placeat voluptas. Repellat dolores aliquam.", + "value_type": "boolean", + "default_value": "true", + "type": "value_definition" + } + ], "meta": { - "total": 0, - "filter": "(title='Alias exercitationem repellendus voluptatem.')", + "total": 1, + "filter": "(title=\"Non rerum quidem in.\")", "limit": 10, "offset": 0 }, "links": { - "first": "/api/compliance/v2/security_guides/9076890b-6f0d-4877-8f24-5a9dfd57b16a/value_definitions?filter=%28title%3D%27Alias+exercitationem+repellendus+voluptatem.%27%29&limit=10&offset=0", - "last": "/api/compliance/v2/security_guides/9076890b-6f0d-4877-8f24-5a9dfd57b16a/value_definitions?filter=%28title%3D%27Alias+exercitationem+repellendus+voluptatem.%27%29&limit=10&offset=0" + "first": "/api/compliance/v2/security_guides/3a3682d6-edb3-4f86-a5a4-817fac48e1de/value_definitions?filter=%28title%3D%22Non+rerum+quidem+in.%22%29&limit=10&offset=0", + "last": "/api/compliance/v2/security_guides/3a3682d6-edb3-4f86-a5a4-817fac48e1de/value_definitions?filter=%28title%3D%22Non+rerum+quidem+in.%22%29&limit=10&offset=0" } }, "summary": "", @@ -9006,10 +9950,10 @@ "Returns a Value Definition": { "value": { "data": { - "id": "7a41238c-84f5-4978-8c0c-c2d3626cd5d5", - "ref_id": "foo_value_5c33ed38-7330-4d06-a17a-3f74647a8bc6", - "title": "Eligendi quasi corporis sapiente.", - "description": "Quasi autem voluptates. Aut aut atque. Cupiditate dolore sit.", + "id": "0e2f966b-178d-4ae8-90c6-a7bd3fd7bca9", + "ref_id": "foo_value_f3838e38-0928-41c8-8a75-dc63ddfd3297", + "title": "Et cumque quisquam dolor.", + "description": "Beatae enim rerum. Non neque sit. Cumque officia voluptate.", "value_type": "boolean", "default_value": "true", "type": "value_definition" @@ -9043,7 +9987,7 @@ "Description of an error when requesting a non-existing Value Definition": { "value": { "errors": [ - "V2::ValueDefinition not found with ID 817807d3-c8ee-4e48-91e2-49c48301ab5c" + "V2::ValueDefinition not found with ID a2c9ce83-63c0-4f93-bea4-c5973a8b572b" ] }, "summary": "",