We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0490f54 commit a407f41Copy full SHA for a407f41
1 file changed
readme.md
@@ -13,16 +13,16 @@ Schematicon Validator (PHP)
13
```yaml
14
type: map
15
properties:
16
- name: string
17
- surname: string
18
- sex:
19
- enum: [male, female]
20
- age: int|null # property may be a null
21
- ?height: float # property may not exist at all; if exist, it has to be a float
22
- siblings:
23
- type: array
24
- item:
25
- type: string
+ name: string
+ surname: string
+ sex:
+ enum: [male, female]
+ age: int|null # property may be a null
+ ?height: float # property may not exist at all; if exist, it has to be a float
+ siblings:
+ type: array
+ item:
+ type: string
26
```
27
28
The following inputs may be validated againts the defined schema:
0 commit comments