OpenreStream openre.stream@1
Generated at from
openvibe-contracts v0.53.0 and
openvibe-sdk v0.11.0.
- Version
- 1.0.0
- Owner
- openre
- Visibility
- first-party
- Status
- active
- Compatibility
- backward
- Schema
https://openvibe.network/contracts/openre/stream.v1.json
openre.stream@1: one stream definition as OpenRe.Stream's API shows it (server/api/v1.js publicDefinition): the owner's stream with its protocols, recording and playback settings, ingest endpoints, key metadata (hints only, never a key) and the open session if any.
Fields
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
id | string | yes | ||
title | string | yes |
| |
description | string | null | |||
owner | identity.subject-ref | yes | ||
protocols | array of enum | yes |
| |
recording_mode | enum | yes |
| |
recording_visibility | enum |
| ||
playback_visibility | enum |
| ||
mirror_to_live | integer | boolean | |||
state | enum | yes |
| |
revision | integer | yes | ||
external_refs | array of object | |||
external_refs[].service | string | yes | ||
external_refs[].type | string | yes | ||
external_refs[].id | string | integer | yes | ||
external_refs[].label | string | null | |||
ingest | object | yes | Where an encoder publishes (never the key). | |
ingest.rtmp | object | |||
ingest.rtmp.url | string | yes | ||
ingest.rtmp.key_hint | string | null | |||
ingest.rtmp.key_id | string | null | |||
keys | array of object | yes | ||
keys[].id | string | yes | ||
keys[].hint | string | yes | ||
keys[].status | enum | yes |
| |
keys[].grace_until | string | null |
| ||
keys[].created_at | string | null |
| ||
keys[].last_used_at | string | null |
| ||
session | object | null | yes | ||
created_at | string | null | yes |
| |
updated_at | string | null | yes |
|
Examples
From the contract's own test fixtures: valid ones validate, rejected ones must fail.
Valid: main-cam
{
"id": "def_01JAB2C3D4E5F6G7H8J9K0MNPQ",
"title": "Main cam",
"description": "",
"owner": {
"type": "user",
"id": "usr_01JAB2C3D4E5F6G7H8J9K0MNPQ"
},
"protocols": [
"rtmp"
],
"recording_mode": "vod",
"recording_visibility": "public",
"playback_visibility": "public",
"mirror_to_live": 1,
"state": "active",
"revision": 3,
"external_refs": [
{
"service": "live",
"type": "managed_stream",
"id": "12",
"label": null
}
],
"ingest": {
"rtmp": {
"url": "rtmp://ingest.openre.stream/live",
"key_hint": "x9Q2",
"key_id": "key_01JAB2C3D4E5F6G7H8J9K0MNPR"
}
},
"keys": [
{
"id": "key_01JAB2C3D4E5F6G7H8J9K0MNPR",
"hint": "x9Q2",
"status": "active",
"grace_until": null,
"created_at": "2026-09-20T10:00:00.000Z",
"last_used_at": "2026-09-25T21:00:00.000Z"
}
],
"session": null,
"created_at": "2026-09-20T10:00:00.000Z",
"updated_at": "2026-09-25T18:00:00.000Z"
}Rejected: unknown-protocol
{
"id": "def_01JAB2C3D4E5F6G7H8J9K0MNPQ",
"title": "Main cam",
"description": "",
"owner": {
"type": "user",
"id": "usr_01JAB2C3D4E5F6G7H8J9K0MNPQ"
},
"protocols": [
"hls"
],
"recording_mode": "vod",
"recording_visibility": "public",
"playback_visibility": "public",
"mirror_to_live": 1,
"state": "active",
"revision": 3,
"external_refs": [
{
"service": "live",
"type": "managed_stream",
"id": "12",
"label": null
}
],
"ingest": {
"rtmp": {
"url": "rtmp://ingest.openre.stream/live",
"key_hint": "x9Q2",
"key_id": "key_01JAB2C3D4E5F6G7H8J9K0MNPR"
}
},
"keys": [
{
"id": "key_01JAB2C3D4E5F6G7H8J9K0MNPR",
"hint": "x9Q2",
"status": "active",
"grace_until": null,
"created_at": "2026-09-20T10:00:00.000Z",
"last_used_at": "2026-09-25T21:00:00.000Z"
}
],
"session": null,
"created_at": "2026-09-20T10:00:00.000Z",
"updated_at": "2026-09-25T18:00:00.000Z"
}Validate
const contracts = require('openvibe-contracts');
contracts.validate('openre.stream@1', value); // { valid, errors: [{ path, message }] }