compliance/assets/doc/extracted_schemas/survey-line.1.0.0.json
2025-05-16 15:18:02 +08:00

65 lines
1.5 KiB
JSON

{
"$id": "https://schema.ideas.cnpc/json/master-data/seismic/survey-line.1.0.0.json",
"type": "object",
"title": "地震测线",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"projectId",
"surveyId",
"lineId",
"lineName",
"maxCmpNo",
"minCmpNo",
"cmpInc",
"cmpSpace",
"replacementVelocity",
"remark"
],
"identityId": [
"projectId",
"surveyId",
"lineId"
],
"properties": {
"cmpInc": {
"type": "integer",
"title": "cmp编号间隔"
},
"lineId": {
"type": "string",
"title": "测线Id"
},
"remark": {
"type": "string",
"title": "备注"
},
"cmpSpace": {
"type": "number",
"title": "cmp间距"
},
"lineName": {
"type": "string",
"title": "测线名称"
},
"maxCmpNo": {
"type": "integer",
"title": "最大CMP"
},
"minCmpNo": {
"type": "integer",
"title": "最小CMP"
},
"surveyId": {
"type": "string",
"title": "工区Id"
},
"projectId": {
"type": "string",
"title": "项目Id"
},
"replacementVelocity": {
"type": "number",
"title": "替换速度"
}
}
}