Hello,
I’m trying to create a template with cert-tools with additional per-recipient fields in it.
I know that those fields need to be included in a JSON-LD context, but I’m not sure how to reference them with a jsonpath.
Let’s say I want to add the field foo
in the context, I bet I need something this:
additional_per_recipient_fields = {"fields": [{"path": "@context.foo","value": "*|FOO|*","csv_column": "foo"}]}
but the create-certificate-template
tool doesn’t like that syntax.
I tried to find to read the documentation of JSON-LD to understand how the jsonpath could work with contexts but I didn’t find anything relevant.
Any help?