Bạn có thể sử dụng Generate Schemas
mô-đun để thực hiện tác vụ này.
var jsonObject={
var GenerateSchema = require('generate-schema')
var schema = GenerateSchema.json('Product',jsonObject);
console.log(JSON.stringify(schema))
Vì bạn có hai thuộc tính chính, một là endpoints
và poi
khác
Và đây là lược đồ đầu ra của đối tượng JSON của bạn
{
"$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"
}
}
}
}
}
}
Bạn cũng có thể nhận các tài liệu tham khảo khác tại đây