12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- schema:
- - type: field
- name: test_field_array
- describe: 测试field数组(必传)
- required: true
- as_array: true
- field_type: string
- - type: field
- name: test_field
- describe: 测试field(必传)
- required: true
- field_type: string
- - type: object
- name: test_obj_array
- describe: 测试对象(必传)
- required: true
- as_array: true
- fields:
- - type: field
- name: field
- describe: 测试对象字段类型字段(非必传)
- required: false
- field_type: string
- - type: object
- name: test_obj
- describe: 测试对象(必传)
- required: true
- fields:
- - type: field
- name: field_array
- describe: 测试对象字段类型数组字段(必传)
- required: true
- as_array: true
- field_type: string
- - type: field
- name: field
- describe: 测试对象字段类型字段(非必传)
- required: false
- field_type: string
- - type: object
- name: obj_array
- describe: 测试对象包含对象数组(必传)
- required: true
- as_array: true
- fields:
- - type: field
- name: obj_array_field1
- describe: 对象数组字段1(必传)
- required: true
- field_type: string
- - type: field
- name: obj_array_field2
- describe: 对象数组字段2(非必传)
- required: false
- field_type: string
|