आप Generate Schemas
. का उपयोग कर सकते हैं इस कार्य को करने के लिए मॉड्यूल।
var jsonObject={
var GenerateSchema = require('generate-schema')
var schema = GenerateSchema.json('Product',jsonObject);
console.log(JSON.stringify(schema))
चूँकि आपके पास दो मुख्य गुण हैं, एक है endpoints
और अन्य poi
और यहां आपके JSON ऑब्जेक्ट का आउटपुट स्कीमा है
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Product",
"type": "object",
"properties": {
"endpoints": {
"type": "array",
"items": {
"type": "string"
}
},
"poi": {
"type": "array",
"items": {
"type": "object",
"properties": {
"location_name": {
"type": "string"
},
"latitude": {
"type": "string"
},
"longitude": {
"type": "string"
},
"distance": {
"type": "string"
}
}
}
}
}
}
आप अन्य संदर्भ भी प्राप्त कर सकते हैं यहां