| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- {
- "$schema": "http://json-schema.org/draft-07/schema#",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "fragments-boundary": {
- "type": "array",
- "items": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "fragment_id-ref": {
- "type": "string"
- },
- "apply_to": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "实质": {
- "type": "array",
- "minItems": 1,
- "maxItems": 3,
- "items": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "category_id-ref": {
- "type": "integer"
- },
- "category_path-ref": {
- "type": "string"
- },
- "element-ref": {
- "type": [
- "string",
- "null"
- ]
- },
- "rationale": {
- "type": "string"
- }
- },
- "required": [
- "category_id-ref",
- "category_path-ref",
- "rationale"
- ]
- }
- },
- "形式": {
- "type": "array",
- "minItems": 1,
- "maxItems": 3,
- "items": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "category_id-ref": {
- "type": "integer"
- },
- "category_path-ref": {
- "type": "string"
- },
- "element-ref": {
- "type": [
- "string",
- "null"
- ]
- },
- "rationale": {
- "type": "string"
- }
- },
- "required": [
- "category_id-ref",
- "category_path-ref",
- "rationale"
- ]
- }
- }
- },
- "required": [
- "实质",
- "形式"
- ]
- },
- "ideal_path-ref": {
- "type": "string"
- }
- },
- "required": [
- "fragment_id-ref",
- "apply_to",
- "ideal_path-ref"
- ]
- }
- }
- },
- "required": [
- "fragments-boundary"
- ]
- }
|