mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
26 lines
722 B
JSON
26 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" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|