From a17f51588a3f39aabc7824153d04f359a4ffa07c Mon Sep 17 00:00:00 2001 From: Yordan Kinkov <yordan.kinkov@vereign.com> Date: Mon, 29 Aug 2022 17:07:11 +0300 Subject: [PATCH] Add did web as a service policy --- example/examplePolicy/1.3/policy.rego | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 example/examplePolicy/1.3/policy.rego diff --git a/example/examplePolicy/1.3/policy.rego b/example/examplePolicy/1.3/policy.rego new file mode 100644 index 0000000..f841833 --- /dev/null +++ b/example/examplePolicy/1.3/policy.rego @@ -0,0 +1,7 @@ +package example.examplePolicy + +_ = { + "@context": ["https://www.w3.org/ns/did/v1", "https://w3id.org/security/suites/ed25519-2020/v1"], + "id": issuer().did, + "verificationMethod": keys.getAll() +} \ No newline at end of file -- GitLab