canonical-tent-json
Version:
Generate canonical JSON for Tent 0.3 posts
51 lines (50 loc) • 715 B
JavaScript
module.exports.ok = {
id: 'abc',
entity: 'https://example.com',
type: 'status',
content: 'Hello world!',
mentions: [
{
post: 'ghi'
}
],
refs: [
{
post: 'def'
}
],
version: {
parents: [
{
version: 'xyz'
}
]
}
};
module.exports.redundant = {
id: 'abc',
entity: 'https://example.com',
type: 'status',
content: 'Hello world!',
mentions: [
{
post: 'ghi',
entity: 'https://example.com'
}
],
refs: [
{
entity: 'https://example.com',
post: 'def'
}
],
version: {
parents: [
{
version: 'xyz',
post: 'abc',
entity: 'https://example.com'
}
]
}
};