No description available.
Record Key
any
Any valid record key
Properties
authority
string
did
Required
A decentralized identifier (DID).
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
name
string
Required
No description available.
maxLength: 256 bytesminLength: 1 bytesowner
ref
#owner
Required
No description available.
realmId
string
Required
No description available.
maxLength: 36 bytesminLength: 36 bytesrepositoryId
string
Required
No description available.
maxLength: 36 bytesminLength: 36 bytesvisibility
string
Required
No description available.
Allowed:
public, internal, privateView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"authority",
"realmId",
"repositoryId",
"name",
"owner",
"visibility",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256,
"minLength": 1
},
"owner": {
"ref": "#owner",
"type": "ref"
},
"realmId": {
"type": "string",
"maxLength": 36,
"minLength": 36
},
"authority": {
"type": "string",
"format": "did"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"visibility": {
"enum": [
"public",
"internal",
"private"
],
"type": "string"
},
"repositoryId": {
"type": "string",
"maxLength": 36,
"minLength": 36
}
}
}
}