gonvaled / jskemator

29 stars 12 forks source link

generating schema from thousands of examples. No go. Suggestions #2

Open coderextreme opened 9 years ago

coderextreme commented 9 years ago

I generated JSON schema from these examples in this zip. https://github.com/coderextreme/x3djson/blob/master/X3DJSON.zip The schema is horrible. Suggestions?

coderextreme commented 9 years ago

Here's the script I run. Perhaps there is an issue with it?

!/bin/sh

find ~/Downloads/www.web3d.org/x3d/content/examples -name '_json' -print| head -1 | xargs node goodJSON.js | xargs -L1 -t python jskemator.py -f > x3d.json find ~/Downloads/www.web3d.org/x3d/content/examples -name '_json' -print| xargs node goodJSON.js | xargs -L1 -t python jskemator.py -s x3d.json -f > /dev/null