1# CHART Activity algorithm specification files
 2
 3namespace xsi = "http://www.w3.org/2001/XMLSchema-instance"
 4
 5element roles {
 6    attribute xsi:noNamespaceSchemaLocation { "http://chart/schemas/roles.xsd" } &
 7
 8    element user {
 9        element username { text }? &
10        element name { text }? &
11        element email { text }?
12    }* &
13
14    element role {
15        element username { text }? &
16        element name { text }? &
17        element description { text }? &
18        element members {
19            element username { text }* &
20            element email { text }*
21        }* &
22        element daemon-notification { xsd:boolean }? &
23        element job-notification { text }* &
24        element event-notification { text }* &
25        element report-notification { text }*
26    }*
27}