Project

General

Profile

1
@namespace("eu.dnetlib.iis.websiteusage.schemas")
2
protocol IIS{
3

    
4
    record LogEntry {
5
		// WARNING: the records in data store conforming to this schema have to be ordered by 'timestamp' field from the oldest to the newest.   
6
        string timestamp;
7
        string action;
8
        union { null , string } user = null;
9
        union { null , string } session = null;
10
        union { null , string } data = null;
11
    }
12
}
(4-4/6)