{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "researcher_output", "oneOf": [ { "type": "object", "required": [ "cases-boundary" ], "properties": { "初始关键词": { "type": "array", "items": { "type": "string" } }, "采集时间": { "type": "string" }, "cases-boundary": { "type": "array", "minItems": 1, "items": { "type": "object", "required": [ "case_id-ref", "source_url-ref", "title" ], "properties": { "case_id-ref": { "type": "string", "pattern": "^[a-z]+_[A-Za-z0-9_-]+$" }, "source_url-ref": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } } } } } }, { "type": "object", "required": [ "工序发现-boundary" ], "properties": { "工序发现-boundary": { "type": "array", "minItems": 1, "items": { "type": "object", "required": [ "帖子链接-ref" ], "properties": { "帖子链接-ref": { "type": "string", "minLength": 1 } } } } } } ] }