Implement SCUM direct data plane
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "SCUMActivityResult",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["rows"],
|
||||
"properties": {
|
||||
"rows": {
|
||||
"type": "array",
|
||||
"maxItems": 500,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["activityId", "activityType", "state"],
|
||||
"properties": {
|
||||
"activityId": { "type": "string", "minLength": 1, "maxLength": 160 },
|
||||
"activityType": { "type": "string", "minLength": 1, "maxLength": 64 },
|
||||
"userProfileId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
||||
"mapId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
||||
"subject": { "type": "string", "minLength": 1, "maxLength": 240 },
|
||||
"sequenceIndex": { "type": "integer" },
|
||||
"occurredAt": { "type": "string", "format": "date-time" },
|
||||
"state": { "type": "string", "minLength": 1, "maxLength": 64 }
|
||||
}
|
||||
}
|
||||
},
|
||||
"truncated": { "type": "boolean" }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user