OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

marketplace.payout.created

A payout has been created.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @marketplace-team
  • Tags: marketplace, payout
  • File: packages/examples/marketplace/src/payout/payout.event.ts
  • field.key.label
    marketplace.payout.created
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    marketplace.payout.created
    field.description.label

    A payout has been created.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @marketplace-team
  • Tags: marketplace, payout
  • File: packages/examples/marketplace/src/payout/payout.event.ts
  • field.tags.label
    marketplace,payout
    field.owners.label
    @marketplace-team
    field.stability.label
    experimental

    A payout has been created.

    Source Definition

    import { defineEvent } from '@lssm-tech/lib.contracts-spec';
    import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
    
    export const PayoutCreatedEvent = defineEvent({
    	meta: {
    		key: 'marketplace.payout.created',
    		version: '1.0.0',
    		description: 'A payout has been created.',
    		stability: 'experimental',
    		owners: ['@marketplace-team'],
    		tags: ['marketplace', 'payout'],
    	},
    	payload: PayoutCreatedPayload,
    });