| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "$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
- }
- }
- }
- }
- }
- }
- ]
- }
|