Where can I read more about this?
Discussion
I'm just coding it. But basically turning it into json-ld in a well known location so it's not tied to any domain. That way we can scale nostr and take some of the pressure of the relays, let them focus on freshness. But the format is farily simple, im about to write a wrapper in node.
Some early notes, I can update you if you have questions
https://github.com/nostrapps/event-ld#eventld-decentralized-json-ld-representation-of-nostr-events
In a nutshell:
const jsonLD = {
'@id': '',
mainEntity: {
'@context': 'https://w3id.org/nostr/context',
'@id': 'nostr:event:' + event.id,
'@type': 'Event',
...event
}
}
return jsonLD