加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
schema.json 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
José Fonseca 提交于 2014-04-13 22:50 . Support custom JSON format.
{
"title": "Schema for JSON profiles.",
"type": "object",
"properties": {
"version": {
"type": "integer",
"minimum": 0
},
"costs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"unit": {
"type": "string"
}
},
"additionalProperties": false
},
"minItems": 1
},
"functions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"module": {
"type": "string"
},
"process": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["name"]
}
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"callchain": {
"type": "array",
"items": {
"description": "function index, callee to caller ordering",
"type": "integer"
},
"minItems": 1
},
"cost": {
"type": "array",
"items": {
"type": "number"
},
"minItems": 1
}
},
"additionalProperties": false,
"required": ["callchain", "cost"]
}
}
},
"additionalProperties": false,
"required": ["version", "costs", "functions", "events"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化