yuppi 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -337,15 +337,15 @@ Convert your Yuppi schema into [JSON Schema](https://json-schema.org).
|
|
|
337
337
|
|
|
338
338
|
### Patterns
|
|
339
339
|
|
|
340
|
-
| Pattern | Description | Examples
|
|
341
|
-
| ------------- | ------------------------------ |
|
|
342
|
-
| [Any] | Everything will pass. | `"Yuppi!"` ✅<br/>`" "` ✅
|
|
343
|
-
| [Domain] | Domains. | `"google.com"` ✅<br/>`"www.google.com"` ✅<br/>`"https://google.com"` ❌
|
|
344
|
-
| [Email] | Emails. | `"fir4tozden@gmail.com"` ✅<br/>`"fir4tozden
|
|
345
|
-
| [HTTP] | HTTP only links. | `"https://google.com"` ✅<br/>`"http://google.com"` ✅<br/>`"google.com"` ❌
|
|
346
|
-
| [PhoneNumber] | Country code and phone number. | `"0090-555555555"` ✅<br/>`"90-5555555555"` ❌
|
|
347
|
-
| [URI] | Protocol free links. | `"mongodb://
|
|
348
|
-
| [Username] | Usernames like Twitter. | `"fir4tozden"` ✅<br/>`"Fir4tozden"` ✅<br/>`"fir4t ozden"` ❌
|
|
340
|
+
| Pattern | Description | Examples |
|
|
341
|
+
| ------------- | ------------------------------ | -------------------------------------------------------------------------------- |
|
|
342
|
+
| [Any] | Everything will pass. | `"Yuppi!"` ✅<br/>`" "` ✅ |
|
|
343
|
+
| [Domain] | Domains. | `"google.com"` ✅<br/>`"www.google.com"` ✅<br/>`"https://google.com"` ❌ |
|
|
344
|
+
| [Email] | Emails. | `"fir4tozden@gmail.com"` ✅<br/>`"fir4tozden+2@gmail.com"` ❌ |
|
|
345
|
+
| [HTTP] | HTTP only links. | `"https://google.com"` ✅<br/>`"http://google.com"` ✅<br/>`"google.com"` ❌ |
|
|
346
|
+
| [PhoneNumber] | Country code and phone number. | `"0090-555555555"` ✅<br/>`"90-5555555555"` ❌ |
|
|
347
|
+
| [URI] | Protocol free links. | `"mongodb://mongodb.net"` ✅<br/>`"https://google.com"` ✅<br/>`"google.com"` ❌ |
|
|
348
|
+
| [Username] | Usernames like Twitter. | `"fir4tozden"` ✅<br/>`"Fir4tozden"` ✅<br/>`"fir4t ozden"` ❌ |
|
|
349
349
|
|
|
350
350
|
### Types
|
|
351
351
|
|