CommunityPasteDeletedPayload community.paste.deleted@1

Generated at from openvibe-contracts v0.38.0 and openvibe-sdk v0.5.0.

Version
1.0.0
Owner
community
Visibility
first-party
Status
active
Compatibility
backward
Schema
https://openvibe.network/contracts/events/payloads/community.paste.deleted.v1.json

community.paste.deleted v1 (OpenVibe.Community server/events.js, queued in the transaction of the change). A paste was deleted (its content and image link are gone; the slug stays reserved). Consumers that indexed or cached it drop it. Envelope: subject { type: paste, id }, visibility public when the item is public else internal, priority low, actor the person or service:community.

Fields

FieldTypeRequiredDescriptionConstraints
paste_idstringyes
  • pattern ^[a-z0-9-]{3,64}$

Examples

From the contract's own test fixtures: valid ones validate, rejected ones must fail.

Valid: example
{
  "paste_id": "amber-fox-42"
}
Rejected: carries-content
{
  "paste_id": "amber-fox-42",
  "body": "the content never travels"
}

Validate

const contracts = require('openvibe-contracts');
contracts.validate('community.paste.deleted@1', value);   // { valid, errors: [{ path, message }] }