diff --git a/schema.yaml b/schema.yaml index 64f7b79..44c9224 100644 --- a/schema.yaml +++ b/schema.yaml @@ -7,30 +7,7 @@ contact: email: str(required=False, regex='^[\\w\\.-]+@[\\w\\.-]+\\.[a-zA-Z]{2,}$') discord: str(required=False, regex='^[a-zA-Z0-9._-]{2,32}$') # Updated regex telegram: str(required=False, regex='^@\\w{5,32}$') -category: list( - enum( - 'Official', - 'Massa', - 'DeFi', - 'NFT', - 'GameFi', - 'Governance', - 'Social', - 'Art', - 'Tool', - 'E-Commerce', - 'Infrastructure', - 'Education', - 'Media', - 'Protocol', - 'Aggregator', - 'Marketplace', - 'Analytics', - 'Community', - 'Identity', - 'Other' - ), - required=True, - min=1, - max=5 -) +category: list(enum('Official', 'Massa', 'DeFi', 'NFT', 'GameFi', 'Governance', + 'Social', 'Art', 'Tool', 'E-Commerce', 'Infrastructure', + 'Education', 'Media', 'Protocol', 'Aggregator', 'Marketplace', + 'Analytics', 'Community', 'Identity', 'Other'), required=True, min=1, max=5)