Posts by Fernando Moura • 16 points
2 posts
-
-1
votes2
answers34
viewsA: validation of a Parameter of number type, in jsonschema
I think the best way to validate this would be to input the data with a if (description.length< maxField) But I could do so { "type": "string", "minLength": 2, "maxLength": 3 }…
javascriptanswered Fernando Moura 16 -
0
votes2
answers79
viewsA: How can I insert javascript information into a json file
Already tried with string interpolation? Type { "${on.value}":[ { "ORDER NAME": "${ON.value}", "ORDER DATE": "${OD.value}", "SKU": "${SKU.value}" } ] }…