mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
27 lines
722 B
JSON
27 lines
722 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required": ["global_activities"],
|
||
|
"properties": {
|
||
|
"global_activities": {
|
||
|
"type": "object",
|
||
|
"required": ["activities", "more", "currentPage"],
|
||
|
"properties": {
|
||
|
"more": { "type": "boolean" },
|
||
|
"currentPage": { "type": "integer" },
|
||
|
"activities": {
|
||
|
"type": "array",
|
||
|
"items":{
|
||
|
"required": ["id", "message", "createdAt", "timezone"],
|
||
|
"properties": {
|
||
|
"id": { "type": "integer" },
|
||
|
"message": { "type": "string" },
|
||
|
"createdAt": { "type": "string" },
|
||
|
"timezone": { "type": "string" }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|