[w3c/payment-method-id] Better define validity of standardized PMIs? (#48)

As per spec, the following PMIs are all valid:

```JS
    "0",
    "021213213",
    "-valid-",
    "-valid-123",
    "--------",
```

I think what we want is:

```ABNF
stdpmi = part *("-" part)
part = loweralpha *(DIGIT / loweralpha)
loweralpha =  %x61-7A
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/payment-method-id/issues/48

Received on Wednesday, 30 August 2017 04:27:06 UTC