From eac5f410cb6d57a96822f0b780390cb669f31b96 Mon Sep 17 00:00:00 2001 From: Christoph Michelbach Date: Mon, 29 Jan 2024 21:32:13 +0100 Subject: [PATCH] Introduce jsonld document specifying ERC-735 claims. --- specs/b2e2-entities-v1.jsonld | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 specs/b2e2-entities-v1.jsonld diff --git a/specs/b2e2-entities-v1.jsonld b/specs/b2e2-entities-v1.jsonld new file mode 100644 index 0000000..b886c44 --- /dev/null +++ b/specs/b2e2-entities-v1.jsonld @@ -0,0 +1,24 @@ +{ + "@context": { + "@version": 1.1, + "@protected": true, + + "Erc735Claim": { + "@id": "https://github.com/ethereum/eips/issues/735", + "@context": { + "@version": 1.0, + "@protected": true, + + "id": "@id", + "type": "@type", + + "topic": "https://github.com/ethereum/eips/issues/735#Definitions-claim-topic", + "scheme": "https://github.com/ethereum/eips/issues/735#Definitions-claim-scheme", + "issuer": "https://github.com/ethereum/eips/issues/735#Definitions-claim-issuer", + "signature": "https://github.com/ethereum/eips/issues/735#Definitions-claim-signature", + "data": "https://github.com/ethereum/eips/issues/735#Definitions-claim-data", + "uri": "https://github.com/ethereum/eips/issues/735#Definitions-claim-uri" + } + } + } +}