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.
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' }],
},
});