-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHUD_HMIS_AHAR.xsd
3215 lines (3189 loc) · 420 KB
/
HUD_HMIS_AHAR.xsd
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.hudhdx.info/Resources/Vendors/ahar/2_0_4/HUD_HMIS_AHAR_2_0_4.xsd"
xmlns="http://www.hudhdx.info/Resources/Vendors/ahar/2_0_4/HUD_HMIS_AHAR_2_0_4.xsd"
xmlns:ahar="http://www.hudhdx.info/Resources/Vendors/ahar/2_0_4/HUD_HMIS_AHAR_2_0_4.xsd"
elementFormDefault="qualified" attributeFormDefault="qualified">
<xsd:element name="AHARReport" type="ahar:aHARReport"/>
<xsd:complexType name="aHARReport">
<xsd:sequence>
<xsd:element name="ContactName" type="xsd:string"/>
<xsd:element name="ContinuumName" type="xsd:string"/>
<xsd:element name="DateCompleted" type="xsd:date"/>
<xsd:element name="ReportYear" type="ahar:year"/>
<xsd:element name="ReportType" type="ahar:reportType">
<xsd:annotation>
<xsd:documentation xml:lang="en">Select the type of report. Only one type can be selected for a single AHAR XML instance document.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Category" type="ahar:category"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="allCategoryItems">
<xsd:sequence>
<xsd:element name="Age_LT_1" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age under 1".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3a: # of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3a: # of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3a: # of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3a: # of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4a: # of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4a: # of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_Mx" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Age missing".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is "missing this information".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3i: # of people served at HMIS participating providers where age is "missing this information".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3i: # of people served at HMIS participating providers where age is "missing this information".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3i: # of people served at HMIS participating providers where age is "missing this information".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3i: # of people served at HMIS participating providers where age is "missing this information".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4i: # of people served at HMIS participating providers where age is "missing this information".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4i: # of people served at HMIS participating providers where age is "missing this information".</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_1_5" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 1-5".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 1 to 5.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3b: # of people served at HMIS participating providers where age is under 1.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3b: # of people served at HMIS participating providers where age is 1 to 5.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3b: # of people served at HMIS participating providers where age is 1 to 5.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3b: # of people served at HMIS participating providers where age is 1 to 5.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4b: # of people served at HMIS participating providers where age is 1 to 5.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4b: # of people served at HMIS participating providers where age is 1 to 5.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_6_12" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 6-12".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 6 to 12.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3c: # of people served at HMIS participating providers where age is 6 to 12.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3c: # of people served at HMIS participating providers where age is 6 to 12.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3c: # of people served at HMIS participating providers where age is 6 to 12.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3c: # of people served at HMIS participating providers where age is 6 to 12.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4c: # of people served at HMIS participating providers where age is 6 to 12.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4c: # of people served at HMIS participating providers where age is 6 to 12.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_13_17" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 13-17".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 13 to 17.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3d: # of people served at HMIS participating providers where age is 13 to 17.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3d: # of people served at HMIS participating providers where age is 13 to 17.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3d: # of people served at HMIS participating providers where age is 13 to 17.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3d: # of people served at HMIS participating providers where age is 13 to 17.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4d: # of people served at HMIS participating providers where age is 13 to 17.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4d: # of people served at HMIS participating providers where age is 13 to 17.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_18_24" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 18-24".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 18 to 24.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3e: # of people served at HMIS participating providers where age is 18 to 24.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3e: # of people served at HMIS participating providers where age is 18 to 24.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3e: # of people served at HMIS participating providers where age is 18 to 24.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3e: # of people served at HMIS participating providers where age is 18 to 24.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4e: # of people served at HMIS participating providers where age is 18 to 24.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4e: # of people served at HMIS participating providers where age is 18 to 24.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_25_30" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 25-30".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 25 to 30.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3e: # of people served at HMIS participating providers where age is 25 to 30.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3e: # of people served at HMIS participating providers where age is 25 to 30.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3e: # of people served at HMIS participating providers where age is 25 to 30.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3e: # of people served at HMIS participating providers where age is 25 to 30.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4e: # of people served at HMIS participating providers where age is 25 to 30.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4e: # of people served at HMIS participating providers where age is 25 to 30.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_31_50" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 31-50".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 31 to 50.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3f: # of people served at HMIS participating providers where age is 31 to 50.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3f: # of people served at HMIS participating providers where age is 31 to 50.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3f: # of people served at HMIS participating providers where age is 31 to 50.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3f: # of people served at HMIS participating providers where age is 31 to 50.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4f: # of people served at HMIS participating providers where age is 31 to 50.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4f: # of people served at HMIS participating providers where age is 31 to 50.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_51_61" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 51-61".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 51 to 61.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3g: # of people served at HMIS participating providers where age is 51 to 61.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3g: # of people served at HMIS participating providers where age is 51 to 61.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3g: # of people served at HMIS participating providers where age is 51 to 61.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3g: # of people served at HMIS participating providers where age is 51 to 61.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4g: # of people served at HMIS participating providers where age is 51 to 61.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4g: # of people served at HMIS participating providers where age is 51 to 61.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Age_62_GE" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Persons age 62 and older".</xsd:documentation>
<xsd:documentation xml:lang="en"># of people served at HMIS participating providers where age is 62 or older.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 3h: # of people served at HMIS participating providers where age is 62 or older.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 3h: # of people served at HMIS participating providers where age is 62 or older.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 3h: # of people served at HMIS participating providers where age is 62 or older.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 3h: # of people served at HMIS participating providers where age is 62 or older.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 4h: # of people served at HMIS participating providers where age is 62 or older.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 4h: # of people served at HMIS participating providers where age is 62 or older.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_Mx" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female nights missing".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14o: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14o: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14o: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14o: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19o: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19o: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_1_7" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 1-7 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14a: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14a: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14a: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14a: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19a: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19a: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_8_30" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 8-30 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14b: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14b: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14b: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14b: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19b: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19b: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_31_60" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 31-60 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14c: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14c: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14c: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14c: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19c: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19c: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_61_90" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 61-90 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14d: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14d: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14d: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14d: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19d: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19d: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_91_120" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 91-120 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14e: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14e: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14e: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14e: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19e: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19e: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_121_150" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 121-150 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14f: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14f: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14f: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14f: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19f: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19f: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_151_180" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 151-180 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14g: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14g: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14g: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14g: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19g: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19g: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_181_210" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 181-210 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14h: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14h: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14h: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14h: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19h: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19h: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_211_240" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 211-240 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14i: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14i: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14i: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14i: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19i: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19i: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_241_270" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 241-270 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14j: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14j: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14j: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14j: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19j: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19j: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_271_300" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 271-300 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14k: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14k: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14k: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14k: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19k: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19k: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_301_330" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 301-330 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14l: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14l: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14l: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14l: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19l: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19l: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_331_360" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 331-360 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14m: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is A_F_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14m: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is A_F_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14m: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is A_F_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14m: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is A_F_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19m: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is A_F_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19m: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is A_F_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_F_Nt_361_365" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult female 361-366 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14n: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14n: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14n: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14n: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19n: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19n: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_Mx" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender nights missing".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14o: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14o: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14o: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14o: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19o: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19o: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_1_7" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 1-7 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14a: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14a: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14a: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14a: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19a: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19a: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_8_30" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 8-30 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14b: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14b: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14b: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14b: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19b: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19b: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_31_60" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 31-60 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14c: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14c: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14c: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14c: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19c: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19c: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_61_90" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 61-90 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14d: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14d: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14d: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14d: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19d: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19d: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_91_120" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 91-120 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14e: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14e: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14e: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14e: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19e: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19e: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_121_150" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 121-150 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14f: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14f: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14f: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14f: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19f: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19f: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_151_180" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 151-180 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14g: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14g: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14g: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14g: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19g: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19g: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_181_210" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 181-210 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14h: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14h: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14h: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14h: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19h: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19h: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_211_240" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 211-240 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14i: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14i: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14i: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14i: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19i: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19i: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_241_270" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 241-270 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14j: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14j: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14j: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14j: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19j: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19j: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_271_300" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 271-300 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14k: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14k: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14k: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14k: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19k: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19k: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_301_330" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 301-330 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14l: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14l: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14l: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14l: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19l: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19l: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_331_360" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 331-360 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14m: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is A_Mx_Gnd_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14m: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is A_Mx_Gnd_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14m: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is A_Mx_Gnd_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14m: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is A_Mx_Gnd_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19m: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is A_Mx_Gnd_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19m: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is A_Mx_Gnd_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_Mx_Gnd_Nt_361_365" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult unknown gender 361-365 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14n: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (missing gender information) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14n: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (missing gender information) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14n: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (missing gender information) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14n: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (missing gender information) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19n: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (missing gender information) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19n: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (missing gender information) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_Mx" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male Nights missing".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14o : # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14o: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14o: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14o: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19o: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19o: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_1_7" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 1-7 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14a: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14a: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14a: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14a: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19a: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19a: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_8_30" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 8-30 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14b: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14b: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14b: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14b: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19b: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19b: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_31_60" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 31-60 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14c: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14c: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14c: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14c: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19c: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19c: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_61_90" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 61-90 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14d: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14d: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14d: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14d: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19d: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19d: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_91_120" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 91-120 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14e: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14e: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14e: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14e: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19e: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19e: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_121_150" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 121-150 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14f: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14f: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14f: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14f: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19f: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19f: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_151_180" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 151-180 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14g: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14g: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14g: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14g: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19g: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19g: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_181_210" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 181-210 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14h: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14h: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14h: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14h: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19h: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19h: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_211_240" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 211-240 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14i: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14i: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14i: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14i: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19i: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19i: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_241_270" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 241-270 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14j: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14j: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14j: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14j: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19j: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19j: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_271_300" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 271-300 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14k: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14k: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14k: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14k: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19k: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19k: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_301_330" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 301-330 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14l: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14l: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14l: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14l: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19l: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19l: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_331_360" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 331-360 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14m: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is A_M_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14m: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is A_M_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14m: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is A_M_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14m: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is A_M_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19m: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is A_M_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19m: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is A_M_Nt_331_60.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="A_M_Nt_361_365" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: adult male 361-365 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 14n: # of adults served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (male) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 14n: # of adults served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (male) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 14n: # of adults served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (male) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 14n: # of adults served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (male) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19n: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (male) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19n: # of adults served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (male) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Beds_Avail_April_Ngt" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Number of HMIS participating beds that were available on Wednesday of the last week in April."</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 2d: Number of HMIS participating emergency shelter beds that were available for persons in families on Wednesday of the last week in April?</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 2d: Number of HMIS participating emergency shelter beds that were available for individuals on Wednesday of the last week in April?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 2d: Number of HMIS participating transitional housing units that were available for persons in families on Wednesday of the last week in April?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 2d: Number of HMIS participating transitional housing units that were available for individuals on Wednesday of the last week in April?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 2d: Number of HMIS participating Permanent Supportive Housing units that were available for persons in families on Wednesday of the last week in April?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 2d: Number of HMIS participating Permanent Supportive Housing units that were available for individuals on Wednesday of the last week in April?</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: housing inventory records</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Beds_Avail_Avg_Ngt" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Number of HMIS participating beds that were available on average per night during covered time period."</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 2a: Number of HMIS participating emergency shelter beds that were available for persons in families on average per night during covered time period?</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 2a: Number of HMIS participating emergency shelter beds that were available for individuals on average per night during covered time period?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 2a: Number of HMIS participating transitional housing units that were available for persons in families on average per night during covered time period?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 2a: Number of HMIS participating transitional housing units that were available for individuals on average per night during covered time period?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 2a: Number of HMIS participating Permanent Supportive Housing units that were available for persons in families on average per night during covered time period?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 2a: Number of HMIS participating Permanent Supportive Housing units that were available for individuals on average per night during covered time period?</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: housing inventory records</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Beds_Avail_Jan_Ngt" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Number of HMIS participating beds that were available on Wednesday of the last week in January."</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 2c: Number of HMIS participating emergency shelter beds that were available for persons in families on Wednesday of the last week in January?</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 2c: Number of HMIS participating emergency shelter beds that were available for individuals on Wednesday of the last week in January?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 2c: Number of HMIS participating transitional housing units that were available for persons in families on Wednesday of the last week in January?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 2c: Number of HMIS participating transitional housing units that were available for individuals on Wednesday of the last week in January?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 2c: Number of HMIS participating Permanent Supportive Housing units that were available for persons in families on Wednesday of the last week in January?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 2c: Number of HMIS participating Permanent Supportive Housing units that were available for individuals on Wednesday of the last week in January?</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: housing inventory records</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Beds_Avail_Jul_Ngt" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Number of HMIS participating beds that were available on Wednesday of the last week in July."</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 2e: Number of HMIS participating emergency shelter beds that were available for persons in families on Wednesday of the last week in July?</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 2e: Number of HMIS participating emergency shelter beds that were available for individuals on Wednesday of the last week in July?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 2e: Number of HMIS participating transitional housing units that were available for persons in families on Wednesday of the last week in July?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 2e: Number of HMIS participating transitional housing units that were available for individuals on Wednesday of the last week in July?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 2e: Number of HMIS participating Permanent Supportive Housing units that were available for persons in families on Wednesday of the last week in July?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 2e: Number of HMIS participating Permanent Supportive Housing units that were available for individuals on Wednesday of the last week in July?</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: housing inventory records</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Beds_Avail_Oct_Ngt" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Number of HMIS participating beds that were available on Wednesday of the last week in October."</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 2b: Number of HMIS participating emergency shelter beds that were available for persons in families on Wednesday of the last week in October?</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 2b: Number of HMIS participating emergency shelter beds that were available for individuals on Wednesday of the last week in October?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 2b: Number of HMIS participating transitional housing units that were available for persons in families on Wednesday of the last week in October?</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 2b: Number of HMIS participating transitional housing units that were available for individuals on Wednesday of the last week in October?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 2b: Number of HMIS participating Permanent Supportive Housing units that were available for persons in families on Wednesday of the last week in October?</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 2b: Number of HMIS participating Permanent Supportive Housing units that were available for individuals on Wednesday of the last week in October?</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: housing inventory records</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Beds_nH" type="ahar:decimal">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Beds not in HMIS".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND or TH-FAM 1c: Number of transitional housing beds for individuals (TH-IND) or families (TH-FAM) at providers not participating in HMIS (i.e., bed capacity for non-participating providers). Data source: SuperNOFA Housing Inventory Chart.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 1c or ES-FAM 1c: Number of emergency, year-round equivalent shelter beds for individuals (ES-Ind) or families (ES-Fam) at providers not participating in HMIS (i.e., bed capacity for non-participating providers). Data source: SuperNOFA Housing Inventory Chart.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 1c: Number of PSH beds for Persons in Families at providers not participating in HMIS (i.e., bed capacity for non-participating providers). Data source: SuperNOFA Housing Inventory Chart.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 1c: Number of PSH beds for individuals at providers not participating in HMIS (i.e., bed capacity for non-participating providers). Data source: SuperNOFA Housing Inventory Chart.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Beds_H" type="ahar:decimal">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Beds in HMIS".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 1b or TH-FAM 1b: number of transitional or housing beds for individuals (TH-IND) or families (TH-FAM) included in HMIS (i.e., bed capacity for participating providers). Data source: HMIS Bed Inventory.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 1b or ES-FAM 1b: number of emergency, year-round equivalent shelter beds for individuals (ES-Ind) or persons in families (ES-Fam) included in HMIS (i.e., bed capacity for participating providers). Data source: HMIS Bed Inventory.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 1b: Number of PSH beds for Persons in Families included in HMIS (i.e., bed capacity for participating providers). Data Source: HMIS Bed Inventory.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 1b: Number of PSH beds for individuals included in HMIS (i.e., bed capacity for participating providers). Data Source: HMIS Bed Inventory.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_Mx" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female nights missing".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 20o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 20o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_1_7" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 1-7 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 20a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 20a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_8_30" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 8-30 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_31_60" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 31-60 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_61_90" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 61-90 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15d: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15d: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15d: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15d: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19d: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19d: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 61 to 90 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_91_120" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 91-120 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15e: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15e: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15e: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15e: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19e: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19e: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 91 to 120 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_121_150" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 121-150 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15f: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15f: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15f: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15f: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19f: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19f: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 121 to 150 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_151_180" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 151-180 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15g: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15g: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15g: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15g: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19g: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19g: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 151 to 180 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_181_210" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 181-210 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15h: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15h: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15h: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15h: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19h: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19h: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 181 to 210 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_211_240" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 211-240 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15i: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15i: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15i: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15i: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19i: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19i: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 211 to 240 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_241_270" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 241-270 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15j: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15j: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15j: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15j: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19j: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19j: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 241 to 270 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_271_300" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 271-300 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15k: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15k: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15k: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15k: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19k: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19k # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 271 to 300 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_301_330" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 301-330 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15l: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15l: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15l: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15l: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19l: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19l: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 301 to 330 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_331_360" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 331-360 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15m: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is C_F_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15m: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is C_F_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15m: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is C_F_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15m: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is C_F_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19m: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is C_F_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19m: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is C_F_Nt_331_360.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_F_Nt_361_365" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children female 361-365 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15n: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15n: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15n: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15n: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19n: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19n: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender (female) is 361 to 365 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_Mx_Gnd_Nt_Mx" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children unknown gender nights missing".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender ("missing gender information") is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender ("missing gender information") is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender ("missing gender information") is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender ("missing gender information") is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender ("missing gender information") is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19o: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender ("missing gender information") is "missing this info.".</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_Mx_Gnd_Nt_1_7" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children unknown gender 1-7 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender ("missing gender information") is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender ("missing gender information") is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender ("missing gender information") is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender ("missing gender information") is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender ("missing gender information") is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19a: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender ("missing gender information") is 1 to 7 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_Mx_Gnd_Nt_8_30" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children unknown gender 8-30 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender ("missing gender information") is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender ("missing gender information") is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender ("missing gender information") is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender ("missing gender information") is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender ("missing gender information") is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19b: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender ("missing gender information") is 8 to 30 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">Data source: Universal Data Element: 3.3 Date of Birth and 3.6 Gender and 3.12 Program Entry Date and 3.13 Program Exit Date.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="C_Mx_Gnd_Nt_31_60" type="xsd:nonNegativeInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">Data element name: "Stay: children unknown gender 31-60 nights".</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-FAM 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for persons in families during the covered time period by gender ("missing gender information") is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For TH-IND 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in transitional housing for individuals during the covered time period by gender ("missing gender information") is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-FAM 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for persons in families during the covered time period by gender ("missing gender information") is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For ES-IND 15c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in emergency shelters for individuals during the covered time period by gender ("missing gender information") is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-FAM 19c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for persons in families during the covered time period by gender ("missing gender information") is 31 to 60 nights.</xsd:documentation>
<xsd:documentation xml:lang="en">For PSH-IND 19c: # of children (i.e. unaccompanied youth) served at HMIS participating providers where the number of nights in permanent supportive housing for individuals during the covered time period by gender ("missing gender information") is 31 to 60 nights.</xsd:documentation>