Skip to content

Templates dtd

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT waittext (#PCDATA)>
<!ELEMENT waitcommand (#PCDATA)>
<!ELEMENT versions (#PCDATA | version)*>
<!ELEMENT version (#PCDATA | alternate | line)*>
<!ELEMENT value (#PCDATA)>
<!ATTLIST value
    device_parameter CDATA #IMPLIED
    display_name CDATA #IMPLIED
    name CDATA #IMPLIED
    type CDATA #IMPLIED
    value CDATA #IMPLIED
>
<!ELEMENT usertools ((usertool+))>
<!ELEMENT usertool EMPTY>
<!ATTLIST usertool
    display_name CDATA #REQUIRED
    protocol CDATA #REQUIRED
>
<!ELEMENT usertasks (#PCDATA | usertask)*>
<!ELEMENT usertask EMPTY>
<!ATTLIST usertask
    display_name CDATA #REQUIRED
    taskname CDATA #REQUIRED
>
<!ELEMENT username_prompt (#PCDATA)>
<!ELEMENT username (#PCDATA)>
<!ELEMENT userName (#PCDATA)>
<!ELEMENT user ((id, password))>
<!ATTLIST user
    type CDATA #REQUIRED
>
<!ELEMENT update_env EMPTY>
<!ATTLIST update_env
    attribute CDATA #REQUIRED
>
<!ELEMENT to_client ((header))>
<!ELEMENT testRe EMPTY>
<!ATTLIST testRe
    name CDATA #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT testREq EMPTY>
<!ATTLIST testREq
    name CDATA #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT testNonBlank EMPTY>
<!ATTLIST testNonBlank
    name CDATA #REQUIRED
>
<!ELEMENT testNe EMPTY>
<!ATTLIST testNe
    name CDATA #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT testExists EMPTY>
<!ATTLIST testExists
    name CDATA #REQUIRED
>
<!ELEMENT testEq EMPTY>
<!ATTLIST testEq
    name CDATA #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT telnet_preamble (#PCDATA)>
<!ELEMENT telnet_postamble (#PCDATA)>
<!ELEMENT tasks (#PCDATA | task)*>
<!ELEMENT task (#PCDATA | command | parameter | input | value | commands)*>
<!ATTLIST task
    display_name CDATA #IMPLIED
    access CDATA #IMPLIED
    name CDATA #REQUIRED
    type CDATA #REQUIRED
    xpath CDATA #IMPLIED
>
<!ELEMENT shellprompt (#PCDATA)>
<!ELEMENT set ((conditions?))>
<!ATTLIST set
    command_postfix CDATA #REQUIRED
>
<!ELEMENT server (#PCDATA)>
<!ELEMENT sendtext (#PCDATA | charactercode)*>
<!ATTLIST sendtext
    newline (none | lf) #IMPLIED
    waitprompt CDATA #IMPLIED
>
<!ELEMENT send (#PCDATA | method_payload)*>
<!ATTLIST send
    entity CDATA #IMPLIED
    facility CDATA #IMPLIED
>
<!ELEMENT searchStr (#PCDATA)>
<!ELEMENT roleId (#PCDATA)>
<!ELEMENT rewrite (#PCDATA | append | formfield)*>
<!ATTLIST rewrite
    filter CDATA #REQUIRED
    type (POST | GET) #REQUIRED
    url CDATA #REQUIRED
>
<!ELEMENT retrieve (#PCDATA | process)*>
<!ATTLIST retrieve
    extract CDATA #IMPLIED
    type CDATA #REQUIRED
    url CDATA #REQUIRED
>
<!ELEMENT response (#PCDATA)>
<!ATTLIST response
    end_delim CDATA #IMPLIED
    key CDATA #IMPLIED
    length CDATA #IMPLIED
    line CDATA #IMPLIED
    line_nr CDATA #IMPLIED
    message CDATA #IMPLIED
    name CDATA #IMPLIED
    offset CDATA #IMPLIED
    pri CDATA #IMPLIED
    regex CDATA #IMPLIED
    status (SUCCESS | FAILED) #IMPLIED
    token_delimiter CDATA #IMPLIED
    token_nr CDATA #IMPLIED
    type CDATA #IMPLIED
    value CDATA #IMPLIED
    word_nr CDATA #IMPLIED
    xpath CDATA #IMPLIED
>
<!ELEMENT remote_filename (#PCDATA)>
<!ELEMENT release_note (#PCDATA)>
<!ATTLIST release_note
    timestamp CDATA #REQUIRED
>
<!ELEMENT regedit ((fieldparams, get, set?))>
<!ATTLIST regedit
    aslookup CDATA #IMPLIED
    display_name CDATA #REQUIRED
    fieldname CDATA #REQUIRED
    fieldtype CDATA #REQUIRED
    groupname CDATA #REQUIRED
    key CDATA #REQUIRED
    ordering CDATA #IMPLIED
>
<!ELEMENT redirect (#PCDATA)>
<!ATTLIST redirect
    filter CDATA #REQUIRED
    type CDATA #REQUIRED
    url CDATA #REQUIRED
>
<!ELEMENT proxy_parameters (#PCDATA | logout | postamble | rewrite | redirect | passthrough | forms_login | preamble | to_client)*>
<!ATTLIST proxy_parameters
    connection CDATA #IMPLIED
    headers CDATA #IMPLIED
>
<!ELEMENT propagate (#PCDATA)>
<!ELEMENT process EMPTY>
<!ATTLIST process
    eval CDATA #REQUIRED
    name CDATA #REQUIRED
>
<!ELEMENT private_note (#PCDATA)>
<!ELEMENT principal (#PCDATA)>
<!ELEMENT preamble_task ((commands))>
<!ATTLIST preamble_task
    name CDATA #REQUIRED
>
<!ELEMENT preamble (#PCDATA | commands | sendtext | waitcommand | waittext)*>
<!ATTLIST preamble
    name CDATA #IMPLIED
    nr CDATA #IMPLIED
    response_timeout CDATA #IMPLIED
    waitprompt (yes | no) #IMPLIED
>
<!ELEMENT postamble_task ((commands))>
<!ATTLIST postamble_task
    name CDATA #REQUIRED
>
<!ELEMENT postamble ((commands | sendtext | (waittext, sendtext?))?)>
<!ATTLIST postamble
    name CDATA #IMPLIED
    nr CDATA #IMPLIED
    response_timeout CDATA #IMPLIED
    waitprompt (yes | no) #IMPLIED
>
<!ELEMENT permission ((entity, group, principal, propagate, roleId))>
<!ATTLIST permission
    type CDATA #REQUIRED
>
<!ELEMENT password_prompt (#PCDATA)>
<!ELEMENT password (#PCDATA)>
<!ELEMENT passthrough EMPTY>
<!ATTLIST passthrough
    filter CDATA #REQUIRED
    type CDATA #REQUIRED
>
<!ELEMENT parameters ((parameter+))>
<!ELEMENT parameter (#PCDATA | fieldparams | value)*>
<!ATTLIST parameter
    aslookup (yes | no) #IMPLIED
    connectioncritical (yes | no) #IMPLIED
    device_parameter CDATA #IMPLIED
    display_name CDATA #IMPLIED
    fieldname CDATA #IMPLIED
    fieldtype CDATA #IMPLIED
    groupname CDATA #IMPLIED
    max_occur CDATA #IMPLIED
    min_occur CDATA #IMPLIED
    name CDATA #IMPLIED
    ondevice (yes | no) #IMPLIED
    ordering CDATA #IMPLIED
    readonly (yes | no) #IMPLIED
    type CDATA #IMPLIED
>
<!ELEMENT pagemarker (#PCDATA)>
<!ATTLIST pagemarker
    send_for_next CDATA #REQUIRED
>
<!ELEMENT option EMPTY>
<!ATTLIST option
    name CDATA #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT ntpConfig ((server+))>
<!ELEMENT name (#PCDATA)>
<!ELEMENT method_payload ((changedValue | config | user | userName | (searchStr, exactMatch, findUsers, findGroups) | (entity, permission)))>
<!ELEMENT logout (#PCDATA | retrieve)*>
<!ATTLIST logout
    filter CDATA #REQUIRED
    type (POST | GET) #REQUIRED
    url CDATA #IMPLIED
>
<!ELEMENT local_filename (#PCDATA)>
<!ELEMENT line (#PCDATA)>
<!ATTLIST line
    nr CDATA #REQUIRED
    type (num_le | num_ge | ci_match | ci_lt | ci_le | ci_in | ci_gt | ci_ge) #REQUIRED
>
<!ELEMENT keyparameters (#PCDATA | keyparameter)*>
<!ELEMENT keyparameter EMPTY>
<!ATTLIST keyparameter
    delete CDATA #REQUIRED
    name CDATA #REQUIRED
    set CDATA #REQUIRED
    show CDATA #REQUIRED
>
<!ELEMENT key (#PCDATA)>
<!ELEMENT input EMPTY>
<!ATTLIST input
    device_parameter CDATA #REQUIRED
    display_name CDATA #REQUIRED
    hide (true | false) #REQUIRED
    name CDATA #REQUIRED
    type CDATA #REQUIRED
>
<!ELEMENT id (#PCDATA)>
<!ELEMENT hostName (#PCDATA)>
<!ELEMENT header EMPTY>
<!ATTLIST header
    name (set-cookie | referer | X-UA-Compatible | X-Osirium) #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT group (#PCDATA)>
<!ELEMENT get ((attribute))>
<!ATTLIST get
    preamble_end_delimiter CDATA #REQUIRED
    section_line_count (80 | 60 | 50 | 200 | 20) #REQUIRED
>
<!ELEMENT forms_login (((retrieve, formfield+, ((header, to_client) | (cookie+, header?))?) | (formfield+, (append | cookie+ | header)?)))>
<!ATTLIST forms_login
    already_loggedin CDATA #IMPLIED
    filter CDATA #REQUIRED
    type CDATA #REQUIRED
    url CDATA #REQUIRED
>
<!ELEMENT formfield EMPTY>
<!ATTLIST formfield
    attribute CDATA #IMPLIED
    field CDATA #REQUIRED
    value CDATA #IMPLIED
    valueformat CDATA #IMPLIED
>
<!ELEMENT findUsers (#PCDATA)>
<!ELEMENT findGroups (#PCDATA)>
<!ELEMENT fieldparams (#PCDATA | option)*>
<!ELEMENT externalaccounts ((externalaccount+))>
<!ELEMENT externalaccount EMPTY>
<!ATTLIST externalaccount
    accesstoken CDATA #REQUIRED
    name CDATA #REQUIRED
>
<!ELEMENT exit_codes ((exit_code+))>
<!ELEMENT exit_code (#PCDATA)>
<!ELEMENT exactMatch (#PCDATA)>
<!ELEMENT entity EMPTY>
<!ATTLIST entity
    ref CDATA #REQUIRED
>
<!ELEMENT element (#PCDATA)>
<!ATTLIST element
    default_value CDATA #REQUIRED
    display_name CDATA #REQUIRED
    form_item_type (text | boolean) #REQUIRED
    name CDATA #REQUIRED
    ordering CDATA #REQUIRED
    validators CDATA #REQUIRED
>
<!ELEMENT edit_note (#PCDATA)>
<!ATTLIST edit_note
    timestamp CDATA #REQUIRED
>
<!ELEMENT domainName (#PCDATA)>
<!ELEMENT directorys (#PCDATA | directory)*>
<!ELEMENT directory EMPTY>
<!ATTLIST directory
    name CDATA #REQUIRED
    path CDATA #REQUIRED
>
<!ELEMENT dhcp (#PCDATA)>
<!ELEMENT devicetemplates (devicetemplate)>
<!ATTLIST devicetemplates
    locale CDATA #REQUIRED
    template_format CDATA #REQUIRED
    xmlns:auth CDATA #FIXED "http://templates.osirium.com/AuthenticationServices"
>
<!ELEMENT devicetemplate (((((private_note, versions, access, accounts, accesstokens, usertools, configurations, parameters, tasks, parameters, keyparameters, tasks, usertasks, parameters, keyparameters, tasks+, regedit+, usertasks, parameters, tasks, usertasks) | (edit_note+, versions, access+, accesstokens, externalaccounts, usertools, configurations, parameters, tasks, parameters, keyparameters, tasks, usertasks, parameters)), tasks) | (versions, ((parameters, access, accounts, externalaccounts, accesstokens, usertools, configurations, tasks) | (access+, ((usertools, accounts, accesstokens, configurations, parameters, tasks, parameters, keyparameters, tasks, usertasks, tasks) | (accounts, ((externalaccounts, accesstokens, usertools, configurations, parameters, tasks+, ((parameters, keyparameters, tasks, directorys, usertasks, tasks, task+) | (directorys, usertasks, tasks))?) | (configurations, accesstokens, usertools, ((parameters, tasks, parameters, keyparameters, tasks, usertasks, parameters, keyparameters, tasks+, regedit+, ((usertasks, parameters, ((tasks, (usertasks, tasks)?) | (keyparameters, tasks))) | (parameters+, usertasks, tasks, (usertasks, tasks)?))) | (configurations, parameters, tasks, parameters, keyparameters, tasks, usertasks, parameters, keyparameters, tasks+, regedit+, usertasks, parameters, tasks, usertasks, tasks))) | (accesstokens, usertools, configurations, parameters, tasks, parameters, keyparameters, tasks+, ((usertasks, (tasks | (parameters, keyparameters, tasks+, regedit+, usertasks, parameters, keyparameters, tasks, (usertasks, tasks, parameters, keyparameters, tasks, configurations, usertasks, tasks, usertasks, tasks)?))) | (parameters, keyparameters, tasks, directorys, usertasks, tasks, parameters, keyparameters, tasks, usertasks, tasks) | (directorys, usertasks, tasks, parameters, keyparameters, tasks+, (parameters, keyparameters, tasks, parameters, keyparameters, tasks, usertasks, parameters, tasks, (usertasks, tasks, usertasks, tasks)?)?))?))))))) | (usertools, access, configurations, accounts, accesstokens, ((versions, ((parameters, (keyparameters, tasks, usertasks, parameters)?, tasks) | (compositedefinitions, parameters+, tasks))) | (usertasks, directorys, versions, parameters, keyparameters, tasks))) | (release_note+, ((((edit_note, usertools, access, configurations, accounts, accesstokens, versions, parameters, keyparameters) | (versions, access+, accounts, accesstokens, usertools, configurations, parameters, tasks, parameters, keyparameters, tasks, parameters, keyparameters, tasks, directorys, usertasks, tasks, parameters, keyparameters, tasks, usertasks)), tasks) | (versions, ((parameters, access, accounts, externalaccounts, accesstokens, usertools, configurations, tasks+, usertasks, parameters, tasks) | (access+, ((usertools, ((compositedefinitions, accounts, accesstokens, configurations, parameters, tasks, parameters, keyparameters, tasks+) | (accounts, accesstokens, configurations, parameters, tasks, parameters, keyparameters, tasks, ((usertasks, tasks) | (compositedefinitions, parameters, keyparameters, tasks, compositedefinitions, parameters, keyparameters, tasks, (usertasks, tasks)?))))) | (accounts, ((((externalaccounts, accesstokens, usertools, configurations, parameters, tasks+, parameters, keyparameters, tasks, directorys, usertasks) | (configurations, accesstokens, usertools, parameters, tasks, parameters, keyparameters, tasks, parameters, keyparameters, tasks, regedit+, usertasks, parameters)), tasks) | (accesstokens, usertools, ((configurations, ((parameters, tasks+, parameters, keyparameters, tasks+, ((usertasks, tasks+, (usertasks, parameters, tasks)?) | (parameters, keyparameters, tasks+, regedit+, usertasks, parameters, tasks+) | (directorys, usertasks, tasks, (parameters, ((usertasks, tasks) | (keyparameters, tasks, ((usertasks, parameters?, tasks) | (parameters, (usertasks | (keyparameters, tasks, parameters, keyparameters, tasks, usertasks, parameters)), tasks))?)))?))?) | (compositedefinitions, parameters+, tasks))) | (compositedefinitions, externalaccounts, configurations, parameters, tasks, parameters, keyparameters, tasks, parameters, usertasks, tasks))))) | (accesstokens, externalaccounts, usertools, configurations, parameters, tasks, (parameters, keyparameters, tasks)?, usertasks, parameters, tasks))))) | (usertools, ((parameters, access, configurations, accounts, accesstokens, usertasks, directorys, versions, tasks) | (access+, configurations, ((externalaccounts, accesstokens, versions, parameters, keyparameters, tasks) | (accounts, accesstokens, ((versions, parameters, keyparameters, tasks, (parameters, keyparameters, tasks, usertasks, parameters, tasks)?) | (usertasks, directorys, versions, parameters, keyparameters, tasks))))))))) | (access+, ((configurations, externalaccounts, accesstokens, usertools, versions, parameters, ((tasks, (parameters, keyparameters, tasks, parameters, directorys, usertasks, tasks, parameters, keyparameters, tasks)?) | (keyparameters, tasks, parameters, keyparameters, tasks, parameters, directorys, usertasks, tasks, parameters, keyparameters, tasks))) | (accounts, accesstokens, usertools, configurations, parameters, tasks, parameters, keyparameters, tasks, directorys, usertasks, tasks+)))))>
<!ATTLIST devicetemplate
    auth:scheme CDATA #IMPLIED
    auth:vendor CDATA #IMPLIED
    display_name CDATA #REQUIRED
    guid CDATA #REQUIRED
    name CDATA #REQUIRED
    os_version_max CDATA #REQUIRED
    os_version_min CDATA #REQUIRED
    type CDATA #REQUIRED
    vendor CDATA #REQUIRED
    version_build CDATA #IMPLIED
    version_major CDATA #REQUIRED
    version_minor CDATA #REQUIRED
    version_patch CDATA #IMPLIED
>
<!ELEMENT delete_lines ((delete_line+))>
<!ELEMENT delete_line (#PCDATA)>
<!ELEMENT cookie EMPTY>
<!ATTLIST cookie
    name CDATA #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT configurations ((configuration+))>
<!ELEMENT configuration EMPTY>
<!ATTLIST configuration
    fieldname CDATA #REQUIRED
    fieldtype (system | device) #REQUIRED
    value CDATA #REQUIRED
>
<!ELEMENT config ((ntpConfig | (hostName, domainName, dhcp, address+)))>
<!ATTLIST config
    type (HostDnsConfig | HostDateTimeConfig) #REQUIRED
>
<!ELEMENT conditions ((testExists | testREq | ((testNe+ | testNonBlank+), (testEq+ | testRe)?) | (testRe, (testEq | testNe | testNonBlank)?) | (testEq+, (testNe | testRe)?)))>
<!ELEMENT compositedefinitions ((compositedefinition))>
<!ELEMENT compositedefinition ((element+))>
<!ATTLIST compositedefinition
    display_name CDATA #REQUIRED
    fieldtype CDATA #REQUIRED
    testing CDATA #REQUIRED
>
<!ELEMENT commandstep (#PCDATA)>
<!ATTLIST commandstep
    newline CDATA #IMPLIED
    random_filename CDATA #IMPLIED
    response_timeout CDATA #IMPLIED
    shellprompt CDATA #IMPLIED
    type CDATA #IMPLIED
>
<!ELEMENT commands (#PCDATA | commandstep | command)*>
<!ELEMENT command (#PCDATA | charactercode | response | local_filename | name | send | attribute | update_env | remote_filename | exit_codes | delete_lines | conditions | commandstep | arguments | success | failed)*>
<!ATTLIST command
    action CDATA #IMPLIED
    api_command CDATA #IMPLIED
    attribute CDATA #IMPLIED
    attributebase CDATA #IMPLIED
    command CDATA #IMPLIED
    debuglevel CDATA #IMPLIED
    delim CDATA #IMPLIED
    destination CDATA #IMPLIED
    entry_elem CDATA #IMPLIED
    epo_password CDATA #IMPLIED
    epo_port CDATA #IMPLIED
    epo_server CDATA #IMPLIED
    epo_username CDATA #IMPLIED
    format (xml_dataset | vmware_dict | vmo | update_env_filename | update_env | textual_dataset | text_capture | status | sax_dict | sax | output_text | json_dataset | fixed_text_dataset | delimited_text_dataset) #IMPLIED
    linefeed CDATA #FIXED "crlf"
    newline (none | lf) #IMPLIED
    noecho CDATA #IMPLIED
    parameter4 CDATA #IMPLIED
    parameter5 CDATA #IMPLIED
    parameter6 CDATA #IMPLIED
    postamble_line_count CDATA #IMPLIED
    postamble_start_delimiter CDATA #IMPLIED
    preamble_end_delimiter CDATA #IMPLIED
    preamble_line_count CDATA #IMPLIED
    random_filename CDATA #IMPLIED
    regex_capture CDATA #IMPLIED
    response_timeout CDATA #IMPLIED
    script CDATA #IMPLIED
    section_end_delimiter CDATA #IMPLIED
    section_line_count CDATA #IMPLIED
    section_line_split CDATA #IMPLIED
    section_postamble_count CDATA #IMPLIED
    section_preamble_count CDATA #IMPLIED
    section_start_delimiter CDATA #IMPLIED
    select_lines CDATA #IMPLIED
    select_lines_strip CDATA #IMPLIED
    shellprompt CDATA #IMPLIED
    source CDATA #IMPLIED
    taskname CDATA #IMPLIED
    template CDATA #IMPLIED
    type (vmware | tftp | scp | local_shell | call) #IMPLIED
    uninstall CDATA #IMPLIED
    until CDATA #IMPLIED
    valuename (sw_version | patch | osname | nodename | hw_version) #IMPLIED
    waitprompt (yes | no) #IMPLIED
    waittext CDATA #IMPLIED
    xml CDATA #IMPLIED
    xpath CDATA #IMPLIED
>
<!ELEMENT success (#PCDATA)*>
<!ATTLIST success
    type (default | num_le | num_ge | ci_match | ci_lt | ci_le | ci_in | ci_gt | ci_ge) #REQUIRED
    value CDATA #IMPLIED
>
<!ELEMENT failed (#PCDATA)*>
<!ATTLIST failed
    type (default | num_le | num_ge | ci_match | ci_lt | ci_le | ci_in | ci_gt | ci_ge) #REQUIRED
    value CDATA #IMPLIED
>
<!ELEMENT charactercode (#PCDATA)>
<!ELEMENT changedValue ((key, value))>
<!ATTLIST changedValue
    type CDATA #REQUIRED
>
<!ELEMENT attribute EMPTY>
<!ATTLIST attribute
    elem CDATA #IMPLIED
    end CDATA #IMPLIED
    end_delim CDATA #IMPLIED
    key CDATA #IMPLIED
    length CDATA #IMPLIED
    line CDATA #IMPLIED
    line_nr CDATA #IMPLIED
    name CDATA #REQUIRED
    offset CDATA #IMPLIED
    regex CDATA #IMPLIED
    start CDATA #IMPLIED
    start_delim CDATA #IMPLIED
    token_nr CDATA #IMPLIED
    value CDATA #IMPLIED
    word_nr CDATA #IMPLIED
    xpath CDATA #IMPLIED
>
<!ELEMENT arguments EMPTY>
<!ATTLIST arguments
    admin CDATA #IMPLIED
    disabled (true | false) #IMPLIED
    forceInstall CDATA #FIXED "true"
    names CDATA #IMPLIED
    notes CDATA #IMPLIED
    password CDATA #IMPLIED
    permSetId CDATA #IMPLIED
    useAllHandlers CDATA #IMPLIED
    userName CDATA #IMPLIED
    username CDATA #IMPLIED
>
<!ELEMENT append (#PCDATA)>
<!ELEMENT alternate EMPTY>
<!ATTLIST alternate
    name CDATA #REQUIRED
    version_major CDATA #REQUIRED
    version_minor CDATA #REQUIRED
>
<!ELEMENT address (#PCDATA)>
<!ELEMENT accounts (#PCDATA | account)*>
<!ELEMENT account EMPTY>
<!ATTLIST account
    hidden (yes | no) #REQUIRED
    name CDATA #REQUIRED
    system CDATA #FIXED "yes"
>
<!ELEMENT accesstokens ((accesstoken+))>
<!ELEMENT accesstoken EMPTY>
<!ATTLIST accesstoken
    display_name CDATA #IMPLIED
    level CDATA #REQUIRED
    logon_name_template CDATA #REQUIRED
    name CDATA #REQUIRED
    roname CDATA #IMPLIED
>
<!ELEMENT access (#PCDATA | telnet_preamble | username_prompt | password_prompt | telnet_postamble | shellprompt | preamble | postamble | proxy_parameters | preamble_task | postamble_task | pagemarker | address | username | password)*>
<!ATTLIST access
    default (yes | no) #IMPLIED
    http_port (8081 | 80 | 443) #IMPLIED
    https_port (9090 | 8443 | 8082 | 80 | 50001 | 443 | 10000) #IMPLIED
    login_url CDATA #FIXED "/index"
    nla CDATA #FIXED "yes"
    protocol (vnc | tty | sshtelnet | ssh | rdp | https | http | SSH) #REQUIRED
    type (vnc | shell | rdp | message) #REQUIRED
    write_delay CDATA #IMPLIED
    write_size CDATA #IMPLIED
>