This represents a way on how to communicate with a person. examples:

  • address
  • telephone number
  • one instance with keys
interface OneInstanceEndpoint {
    $type$: "OneInstanceEndpoint";
    instanceId: SHA256IdHash<Instance>;
    instanceKeys: SHA256Hash<Keys>;
    personId: SHA256IdHash<Person>;
    personKeys: SHA256Hash<Keys>;
    url?: string;
}

Properties

$type$: "OneInstanceEndpoint"
instanceId: SHA256IdHash<Instance>
instanceKeys: SHA256Hash<Keys>
personId: SHA256IdHash<Person>
personKeys: SHA256Hash<Keys>
url?: string