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.

knowledge.source.delete

Delete a knowledge source binding for a tenant.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.knowledge
  • Tags: knowledge, sources
  • File: packages/libs/contracts-spec/src/knowledge/operations.ts
  • field.key.label
    knowledge.source.delete
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    knowledge.source.delete
    field.description.label

    Delete a knowledge source binding for a tenant.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.knowledge
  • Tags: knowledge, sources
  • File: packages/libs/contracts-spec/src/knowledge/operations.ts
  • field.tags.label
    knowledge,sources
    field.owners.label
    @platform.knowledge
    field.stability.label
    experimental

    Delete a knowledge source binding for a tenant.

    Goal

    Remove obsolete or compromised knowledge ingestion paths.

    Context

    Ensures ephemeral or external sources can be removed cleanly without leaving residual bindings.

    Source Definition

    export const DeleteKnowledgeSource = defineCommand({
      meta: {
        key: 'knowledge.source.delete',
        title: 'Delete Knowledge Source',
        version: '1.0.0',
        description: 'Delete a knowledge source binding for a tenant.',
        goal: 'Remove obsolete or compromised knowledge ingestion paths.',
        context:
          'Ensures ephemeral or external sources can be removed cleanly without leaving residual bindings.',
        owners: ['@platform.knowledge'],
        tags: ['knowledge', 'sources'],
        stability: 'experimental',
      },
      io: {
        input: DeleteKnowledgeSourceInput,
        output: DeleteKnowledgeSourceOutput,
      },
      policy: {
        auth: 'admin',
        policies: [{ key: 'platform.knowledge.manage', version: '1.0.0' }],
      },
    });