A community based topic aggregation platform built on atproto
at main 238 B view raw
1#!/bin/bash 2# Validate all lexicon schemas and test data 3 4set -e 5 6echo "🔍 Validating Coves lexicon schemas..." 7echo "" 8 9# Run the Go validation tool 10go run ./cmd/validate-lexicon/main.go 11 12echo "" 13echo "✅ Schema validation complete!"