Properties
| Name | Type | Description |
|---|---|---|
| end_date | string | _t__ReportCreate::END_DATE |
| report_type | array | _t__ReportCreate::REPORT_TYPE |
| start_date | string | _t__ReportCreate::START_DATE |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReportCreateRequest",
"title": "ReportCreateRequest",
"required": [
"start_date",
"end_date",
"report_type"
],
"properties": {
"end_date": {
"description": "_t__ReportCreate::END_DATE",
"type": "string"
},
"report_type": {
"description": "_t__ReportCreate::REPORT_TYPE",
"type": "array",
"items": {
"type": "string",
"enum": [
"user_activity",
"document_status"
]
},
"maxItems": 2,
"minItems": 1
},
"start_date": {
"description": "_t__ReportCreate::START_DATE",
"type": "string"
}
},
"type": "object"
}