TradeInstrumentManageResult trade.instrument-manage-result@1
Generated at from
openvibe-contracts v0.53.0 and
openvibe-sdk v0.11.0.
- Version
- 1.0.0
- Owner
- trade
- Visibility
- first-party
- Status
- active
- Compatibility
- backward
- Schema
https://openvibe.network/contracts/trade/instrument-manage-result.v1.json
trade.instrument-manage-result@1: answers of trade.instrument.manage on OpenVibe.Trade: POST /api/v1/instruments → 201 { instrument, aliases }; PATCH → { instrument }; POST …/aliases → 201 { alias, aliases } (alias { kind, value, normalized }).
Fields
This schema has no named fields.
Examples
From the contract's own test fixtures: valid ones validate, rejected ones must fail.
Valid: created
{
"instrument": {
"id": "ins_01JAB2C3D4E5F6G7H8J9K0MNPQ",
"symbol": "ACME",
"name": "Acme Corporation",
"kind": "equity",
"exchange": "NASDAQ",
"cik": "0000123456",
"currency": "USD",
"status": "active",
"url": "https://openvibe.trade/i/ACME",
"created_at": "2026-09-20T10:00:00.000Z",
"updated_at": "2026-09-20T10:00:00.000Z"
},
"aliases": [
{
"kind": "ticker",
"value": "ACME",
"normalized": "ACME"
}
]
}Rejected: no-instrument
{
"aliases": []
}Validate
const contracts = require('openvibe-contracts');
contracts.validate('trade.instrument-manage-result@1', value); // { valid, errors: [{ path, message }] }