blob: 29fa59c8fa943ca2ee4846db0334a5a185f73443 [file] [log] [blame]
{
"$id": "https://unomi.apache.org/schemas/json/event/1-0-0",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"self":{
"vendor":"org.apache.unomi",
"name": "event",
"format":"jsonschema",
"version":"1-0-0"
},
"title": "Event",
"type": "object",
"allOf": [{ "$ref": "https://unomi.apache.org/schemas/json/timestampeditem/1-0-0" }],
"properties" : {
"eventType" : {
"type" : "string",
"pattern" : "^(\\w|[-_@\\.]){0,60}$"
},
"profileId" : {
"type" : [ "string"],
"pattern" : "^(\\w|[-_@\\.]){0,60}$"
},
"sessionId" : {
"type" : [ "string"],
"pattern" : "^(\\w|[-_@\\.]){0,60}$"
},
"scope" : {
"type" : [ "string"],
"pattern" : "^(\\w|[-_@\\.]){0,60}$"
},
"sourceId" : {
"type" : [ "string"],
"pattern" : "^(\\w|[-_@\\.]){0,60}$"
},
"persistent" : {
"type" : "boolean"
}
}
}