JSONLDContextDto
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"}}}
createddate-timerequired
Example:
2023-10-01T12:00:00Z
modifieddate-timerequired
Example:
2023-10-05T15:30:00Z
deleteddate-time
Example:
2023-10-10T08:45:00Z
JSONLDContextDto
{
"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"
}
}
},
"created": "2023-10-01T12:00:00Z",
"modified": "2023-10-05T15:30:00Z",
"deleted": "2023-10-10T08:45:00Z"
}