Versions in this module Expand all Collapse all v0 v0.1.0 Feb 15, 2026 Changes in this version + type Exporter interface + Export func(ctx context.Context, spec *model.Spec, cfg ExporterConfig) (*ExporterResult, error) + IsSupportedVersion func(version string) bool + func NewExporter(adapters []ViewAdapter) Exporter + type ExporterConfig struct + ShouldValidate bool + Version string + type ExporterResult struct + Result []byte + Warnings debug.Warnings + type Validator struct + func NewValidator(schemaJSON []byte) (*Validator, error) + func (v *Validator) Validate(ctx context.Context, specJSON []byte) error + type ViewAdapter interface + SchemaJSON func() []byte + Version func() string + View func(spec *model.Spec) (any, debug.Warnings, error)