TipsProfile tips.profile@1
Generated at from
openvibe-contracts v0.53.0 and
openvibe-sdk v0.11.0.
- Version
- 1.0.0
- Owner
- tips
- Visibility
- first-party
- Status
- active
- Compatibility
- backward
- Schema
https://openvibe.network/contracts/tips/profile.v1.json
tips.profile@1: a creator's tip profile on OpenVibe.Tips (server/domain/profiles.js present). page_enabled is the creator's switch for the public page (off: it answers 404 to everyone else); accepting takes new tips; minimums are in Vibes bits (tts and media_request null while switched off); page is what the public pages show. The creator and granted services also get filter (the word filter for paid messages), revision, created_at and updated_at.
Fields
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
creator | identity.subject-ref | yes | ||
handle | string | yes |
| |
display_name | string | yes | ||
avatar_url | string | null | yes | ||
headline | string | null | yes | ||
page_enabled | boolean | yes | ||
accepting | boolean | yes | ||
url | string | yes | ||
minimums | object | yes | ||
minimums.tip | integer | yes |
| |
minimums.paid_message | integer | yes |
| |
minimums.tts | integer | null | yes |
| |
minimums.media_request | integer | null | yes |
| |
tts | object | yes | ||
tts.enabled | boolean | yes | ||
tts.max_chars | integer | yes | ||
tts.voice | string | yes | ||
media_requests | object | yes | ||
media_requests.enabled | boolean | yes | ||
media_requests.max_seconds | integer | yes | ||
page | object | yes | ||
page.goal_amounts | boolean | yes | ||
page.goal_supporters | boolean | yes | ||
page.supporters_page | boolean | yes | ||
page.supporters_amounts | boolean | yes | ||
page.supporters_messages | boolean | yes | ||
supporters_url | string | null | yes | ||
currency | const | yes |
| |
filter | object | |||
filter.words | array of string | yes | ||
filter.action | enum | yes |
| |
filter.links | boolean | yes | ||
revision | integer |
| ||
created_at | string | |||
updated_at | string |
Examples
From the contract's own test fixtures: valid ones validate, rejected ones must fail.
Valid: owner
{
"creator": {
"type": "user",
"id": "usr_01JAB2C3D4E5F6G7H8J9K0MNPQ"
},
"handle": "moosefan",
"display_name": "Moose Fan",
"avatar_url": "https://openvibe.media/avatar/moosefan",
"headline": "Late-night builds and chill.",
"page_enabled": true,
"accepting": true,
"url": "https://openvibe.tips/moosefan",
"minimums": {
"tip": 1,
"paid_message": 100,
"tts": 100,
"media_request": null
},
"tts": {
"enabled": true,
"max_chars": 200,
"voice": "gary"
},
"media_requests": {
"enabled": false,
"max_seconds": 600
},
"page": {
"goal_amounts": true,
"goal_supporters": false,
"supporters_page": true,
"supporters_amounts": false,
"supporters_messages": true
},
"supporters_url": "https://openvibe.tips/moosefan/supporters",
"currency": "vibes-bits",
"filter": {
"words": [
"spoiler"
],
"action": "mask",
"links": true
},
"revision": 4,
"created_at": "2026-09-01T12:00:00.000Z",
"updated_at": "2026-09-25T09:12:40.118Z"
}Valid: public
{
"creator": {
"type": "user",
"id": "usr_01JAB2C3D4E5F6G7H8J9K0MNPQ"
},
"handle": "moosefan",
"display_name": "Moose Fan",
"avatar_url": "https://openvibe.media/avatar/moosefan",
"headline": "Late-night builds and chill.",
"page_enabled": true,
"accepting": true,
"url": "https://openvibe.tips/moosefan",
"minimums": {
"tip": 1,
"paid_message": 100,
"tts": 100,
"media_request": null
},
"tts": {
"enabled": true,
"max_chars": 200,
"voice": "gary"
},
"media_requests": {
"enabled": false,
"max_seconds": 600
},
"page": {
"goal_amounts": true,
"goal_supporters": false,
"supporters_page": true,
"supporters_amounts": false,
"supporters_messages": true
},
"supporters_url": "https://openvibe.tips/moosefan/supporters",
"currency": "vibes-bits"
}Rejected: bad-filter-action
{
"creator": {
"type": "user",
"id": "usr_01JAB2C3D4E5F6G7H8J9K0MNPQ"
},
"handle": "moosefan",
"display_name": "Moose Fan",
"avatar_url": "https://openvibe.media/avatar/moosefan",
"headline": "Late-night builds and chill.",
"page_enabled": true,
"accepting": true,
"url": "https://openvibe.tips/moosefan",
"minimums": {
"tip": 1,
"paid_message": 100,
"tts": 100,
"media_request": null
},
"tts": {
"enabled": true,
"max_chars": 200,
"voice": "gary"
},
"media_requests": {
"enabled": false,
"max_seconds": 600
},
"page": {
"goal_amounts": true,
"goal_supporters": false,
"supporters_page": true,
"supporters_amounts": false,
"supporters_messages": true
},
"supporters_url": "https://openvibe.tips/moosefan/supporters",
"currency": "vibes-bits",
"filter": {
"words": [],
"action": "block",
"links": true
},
"revision": 4,
"created_at": "2026-09-01T12:00:00.000Z",
"updated_at": "2026-09-25T09:12:40.118Z"
}Validate
const contracts = require('openvibe-contracts');
contracts.validate('tips.profile@1', value); // { valid, errors: [{ path, message }] }