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.

attachment.attached

A file has been attached to an entity.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: stable
  • Owners: @platform.files
  • Tags: files, attachment, attach
  • File: packages/libs/files/src/events.ts
  • field.key.label
    attachment.attached
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    attachment.attached
    field.description.label

    A file has been attached to an entity.

  • Type: event (event)
  • Version: 1.0.0
  • Stability: stable
  • Owners: @platform.files
  • Tags: files, attachment, attach
  • File: packages/libs/files/src/events.ts
  • field.tags.label
    files,attachment,attach
    field.owners.label
    @platform.files
    field.stability.label
    stable

    A file has been attached to an entity.

    Source Definition

    import { defineEvent } from '@lssm-tech/lib.contracts-spec';
    import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
    
    export const AttachmentAttachedEvent = defineEvent({
    	meta: {
    		key: 'attachment.attached',
    		version: '1.0.0',
    		description: 'A file has been attached to an entity.',
    		stability: 'stable',
    		owners: ['@platform.files'],
    		tags: ['files', 'attachment', 'attach'],
    	},
    	payload: AttachmentAttachedPayload,
    });