.PHONY: help schema

help:
	@echo "Available targets:"
	@echo "  schema    - Generate JSON schema from Pydantic models"

schema:
	@echo "🔄 Generating JSON schema...\n"
	@python scripts/generate_json_schema.py
	@echo "\n✅ Schema generation complete!"
