王总上门按摩后台代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
shangmenanmo/Schema/CustomerAdminUpdateQuestion...

54 lines
920 B

2 months ago
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"default": 1,
"minimum": 1,
"maximum": 99999999999
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 100
},
"status": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 999
},
"question": {
"type": "array",
"minItems": 0,
"maxItems": 200,
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 99999999999
},
"title": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"status": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 1
}
}
}
}
}
}
}
}