No description available.
Record Key
tid
Timestamp-based ID
Properties
authorizationLevel
string
Required
POC supports public only
Allowed:
publiccapturedAt
string
datetime
Optional
Self-asserted capture time
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 2048 bytesfileHash
string
Required
SHA-256 hex digest of the distributed file
maxLength: 64 bytesfileSize
integer
Required
No description available.
minimum: 1gpgKeyFingerprint
string
Optional
No description available.
maxLength: 64 bytesgpgSignature
string
Optional
ASCII-armored detached GPG signature of the canonical manifest
maxLength: 8192 byteslocation
ref
#location
Optional
No description available.
magnet
string
Required
magnet:?xt=urn:btih:<infohash>
maxLength: 2048 bytesmimeType
string
Required
No description available.
maxLength: 128 bytessupersedes
string
Optional
AT URI of the record this one replaces
maxLength: 512 bytestitle
string
Required
No description available.
maxLength: 256 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"fileHash",
"fileSize",
"mimeType",
"magnet",
"title",
"authorizationLevel",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 256
},
"magnet": {
"type": "string",
"maxLength": 2048,
"description": "magnet:?xt=urn:btih:<infohash>"
},
"fileHash": {
"type": "string",
"maxLength": 64,
"description": "SHA-256 hex digest of the distributed file"
},
"fileSize": {
"type": "integer",
"minimum": 1
},
"location": {
"ref": "#location",
"type": "ref"
},
"mimeType": {
"type": "string",
"maxLength": 128
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"capturedAt": {
"type": "string",
"format": "datetime",
"description": "Self-asserted capture time"
},
"supersedes": {
"type": "string",
"maxLength": 512,
"description": "AT URI of the record this one replaces"
},
"description": {
"type": "string",
"maxLength": 2048
},
"gpgSignature": {
"type": "string",
"maxLength": 8192,
"description": "ASCII-armored detached GPG signature of the canonical manifest"
},
"gpgKeyFingerprint": {
"type": "string",
"maxLength": 64
},
"authorizationLevel": {
"enum": [
"public"
],
"type": "string",
"description": "POC supports public only"
}
}
}
}