Changes between Version 1 and Version 2 of Ticket #56368, comment 1
- Timestamp:
- 09/03/2022 04:30:06 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #56368, comment 1
v1 v2 1 1 Hi @picocodes, thank you for your report! 2 2 3 This modified schema will accept both string values like `'id'`, and array values like `['id', 'title']`: 3 I have tested your schema with this validator [https://jsonschemalint.com/#!/version/draft-04/markup/json], and not accepting array values is the correct behavior. 4 5 What do you think, can you use the schema below instead? It will accept both string values like `'id'`, and array values like `['id', 'title']`: 4 6 {{{#!php 5 7 <?php … … 33 35 ); 34 36 }}} 37