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.

appConfig.verifyCustomDomain

Validates DNS ownership for tenant custom domains.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: branding
  • File: packages/libs/contracts-spec/src/app-config/app-config.contracts.ts
  • field.key.label
    appConfig.verifyCustomDomain
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    appConfig.verifyCustomDomain
    field.description.label

    Validates DNS ownership for tenant custom domains.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: branding
  • File: packages/libs/contracts-spec/src/app-config/app-config.contracts.ts
  • field.tags.label
    branding
    field.owners.label
    field.stability.label

    Validates DNS ownership for tenant custom domains.

    Goal

    Confirm tenant-provided domains before activation.

    Context

    Triggered after the tenant adds DNS records to verify domain ownership.

    Source Definition

    export const VerifyCustomDomainCommand = defineCommand({
    	meta: {
    		key: 'appConfig.verifyCustomDomain',
    		version: '1.0.0',
    		description: 'Validates DNS ownership for tenant custom domains.',
    		owners: [OwnersEnum.PlatformSigil],
    		tags: ['branding'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Confirm tenant-provided domains before activation.',
    		context:
    			'Triggered after the tenant adds DNS records to verify domain ownership.',
    	},
    	io: {
    		input: VerifyCustomDomainInput,
    		output: VerifyCustomDomainOutput,
    	},
    	policy: {
    		auth: 'admin',
    		policies: [{ key: 'platform.app-config.manage', version: '1.0.0' }],
    	},
    });