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.

audit.logs.export

Export audit logs for compliance reporting.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: stable
  • Owners: platform.audit-trail
  • Tags: audit, logs, export
  • File: packages/modules/audit-trail/src/contracts/index.ts
  • field.key.label
    audit.logs.export
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    audit.logs.export
    field.description.label

    Export audit logs for compliance reporting.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: stable
  • Owners: platform.audit-trail
  • Tags: audit, logs, export
  • File: packages/modules/audit-trail/src/contracts/index.ts
  • field.tags.label
    audit,logs,export
    field.owners.label
    platform.audit-trail
    field.stability.label
    stable

    Export audit logs for compliance reporting.

    Goal

    Generate audit reports for compliance.

    Context

    Compliance reporting, external audits.

    Source Definition

    import { defineCommand, defineQuery } from '@lssm-tech/lib.contracts-spec';
    import {
    	defineEnum,
    	defineSchemaModel,
    	ScalarTypeEnum,
    } from '@lssm-tech/lib.schema';
    
    export const ExportAuditLogsContract = defineCommand({
    	meta: {
    		key: 'audit.logs.export',
    		version: '1.0.0',
    		stability: 'stable',
    		owners: ['platform.audit-trail'],
    		tags: ['audit', 'logs', 'export'],
    		description: 'Export audit logs for compliance reporting.',
    		goal: 'Generate audit reports for compliance.',
    		context: 'Compliance reporting, external audits.',
    	},
    	io: {
    		input: AuditExportInputModel,
    		output: AuditExportOutputModel,
    	},
    	policy: {
    		auth: 'admin',
    	},
    });