Skip to main content
Version: Next

JsonLdContextConfigDto

idstringrequired
Example: http://example.com/context
credentialTypestringrequired
Example: VerifiableCredential
issuablebooleanrequired
Example: true
documentUrlstring
Example: http://example.com/document
documentobject
Example: {"@context":"http://schema.org"}
schemaobject
Example: {"type":"object","properties":{"name":{"type":"string"}}}
JsonLdContextConfigDto
{
"id": "http://example.com/context",
"credentialType": "VerifiableCredential",
"issuable": true,
"documentUrl": "http://example.com/document",
"document": {
"@context": "http://schema.org"
},
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
}