This repository was archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathopenapi-hsda-search.yaml
More file actions
812 lines (812 loc) · 31.3 KB
/
openapi-hsda-search.yaml
File metadata and controls
812 lines (812 loc) · 31.3 KB
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
openapi: 3.0.3
info:
title: Human Services Data Search API
description: This is a complimentary API to the HSDA API focusing just on search.
termsOfService: https://openreferral.org/documentation/
contact:
name: Open Referral
url: https://openreferral.org/
email: info@openreferral.org
license:
name: Open Data Commons Public Domain
url: https://creativecommons.org/licenses/by-sa/4.0/
version: v2.0
servers:
- url: "{{ hsda_base_url }}"
variables:
basePath:
default: "/v2"
paths:
/search/:
get:
summary: Search
description: Search across organizations, locations, services, and contacts
operationId: search
parameters:
- name: "query"
in: "query"
schema:
type: "string"
- name: "fields"
in: "query"
schema:
type: "string"
- name: "resources"
in: "query"
schema:
type: "string"
- name: "page"
in: "query"
schema:
type: "string"
- name: "per_page"
in: "query"
schema:
type: "string"
- name: "sort_by"
in: "query"
schema:
type: "string"
- name: "order"
in: "query"
schema:
type: "string"
responses:
"200":
description: Item Response
headers:
X-pagination-page:
description: The current page being returned.
schema:
type: integer
X-pagination-per-page:
description: The number of records returned per page.
schema:
type: integer
X-pagination-total-pages:
description: The total number of available pages.
schema:
type: integer
X-pagination-total-records:
description: The the total number of available records.
schema:
type: integer
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/search"
application/xml:
schema:
type: array
items:
$ref: "#/components/schemas/search"
tags:
- Search
components:
schemas:
search:
properties:
organizations:
type: array
items:
$ref: "#/components/schemas/organization"
locations:
type: array
items:
$ref: "#/components/schemas/location"
services:
type: array
items:
$ref: "#/components/schemas/service"
paymentAccepted:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each entry must have a unique identifier"
service_id:
type: "string"
description: "The identifier of the services for which the entry describes\
\ the\naccepted payment methods"
payment:
type: "string"
description: "The methods of payment accepted for the service"
description: "The payment_accepted table contains details of the methods of\
\ payment\nthat can be used in order to pay for services"
phones:
type: "array"
items:
$ref: "#/components/schemas/phone"
schedules:
type: "array"
items:
$ref: "#/components/schemas/schedule"
eligibility:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each entry must have a unique identifier"
service_id:
type: "string"
description: "The identifier of the service for which this entry describes\
\ the\neligibility criteria"
description: "The eligibility tables contains details of the eligibility criteria\n\
for particular services"
language:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each language must have a unique identifier"
service_id:
type: "string"
description: "The identifier of the service for which the entry describes\
\ the\nlanguages in which services are delivered"
location_id:
type: "string"
description: "The identifier of the location for which the entry describes\
\ the\nlanguages in which services are delivered"
language:
type: "string"
description: "Languages, other than English, in which the service is delivered.\n\
Languages are listed as ISO639-1 codes."
description: "The language table contains details of the languages that are\
\ spoken\nat locations or services. This does not include languages which\
\ can only be used\nwith interpretation."
eligibilities:
type: "array"
items:
$ref: "#/components/schemas/eligibility"
program:
required:
- "id"
- "name"
- "organization_id"
type: "object"
properties:
id:
type: "string"
description: "Each program must have a unique identifier."
organization_id:
type: "string"
description: "Each program must belong to a single organization. The identifier\n\
of the organization should be given here."
name:
type: "string"
description: "The name of the program"
alternate_name:
type: "string"
description: "An alternative name for the program"
description: "Some organizations organise their services into programs. A program\n\
brings together a number of related services."
postalAddresses:
type: "array"
items:
$ref: "#/components/schemas/postalAddress"
problem:
required:
- "detail"
- "status"
- "title"
- "type"
type: "object"
properties:
type:
type: "string"
description: "A URI reference [RFC3986] that identifies the problem type.\
\ This\nspecification encourages that, when dereferenced, it provide\
\ human-readable\ndocumentation for the problem type (e.g., using HTML\
\ [W3C.REC-html5-20141028]). When\nthis member is not present, its value\
\ is assumed to be \"about:blank\"."
title:
type: "string"
description: "A short, human-readable summary of the problem type. It SHOULD\n\
NOT change from occurrence to occurrence of the problem, except for purposes\n\
of localization (e.g., using proactive content negotiation; see [RFC7231],\n\
Section 3.4)'"
detail:
type: "string"
description: "A human-readable explanation specific to this occurrence of\n\
the problem."
status:
type: "string"
description: "The HTTP status code ([RFC7231], Section 6) generated by the\n\
origin server for this occurrence of the problem."
description: "The meta_table_description table contains metadata about individual\n\
tables."
fundings:
type: "array"
items:
$ref: "#/components/schemas/funding"
accessibilityForDisabilities:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each entry must have a unique identifier"
location_id:
type: "string"
description: "The identifier of the location for which the entry describes\
\ the\naccessibility provision"
accessibility:
type: "string"
description: "Description of assistance or infrastructure that facilitate\
\ access\nto clients with disabilities."
details:
type: "string"
description: "Any further details relating to the relevant accessibility\
\ arrangements\nat this location. E.g. whether advance notice is required\
\ to use an accessibility\nfacility."
description: "The accessibility_for_disabilities table contains details of the\
\ arrangements\nfor access to locations for people who have disabilities"
contact:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each contact must have a unique identifier"
organization_id:
type: "string"
description: "The identifier of the organization for which this is a contact"
service_id:
type: "string"
description: "The identifier of the service for which this is a contact"
service_at_location_id:
type: "string"
description: "The identifier of the 'service at location' table entry, when\
\ this\ncontact is specific to a service in a particular location."
name:
type: "string"
description: "The name of the person"
title:
type: "string"
description: "The job title of the person"
department:
type: "string"
description: "The department that the person is part of"
email:
type: "string"
description: "The email address of the person"
description: "The contact table contains details of the named contacts for services\n\
and organizations. Note that in the HSDS data package format, if an individual\n\
is the contact for multiple services, their details may be duplicated multiple\n\
times in this table, each time with a new identifier, and with the rows containing\n\
different service ids."
physicalAddresses:
type: "array"
items:
$ref: "#/components/schemas/physicalAddress"
physicalAddress:
required:
- "address_1"
- "city"
- "country"
- "id"
- "postal_code"
- "state_province"
type: "object"
properties:
id:
type: "string"
description: "Each physical address must have a unique identifier."
location_id:
type: "string"
description: "The identifier of the location for which this is the address."
attention:
type: "string"
description: "The person or entity whose attention should be sought at the\
\ location\n(Often included as 'care of' component of an address.)"
address_1:
type: "string"
description: "The first line(s) of the address, including office, building\
\ number\nand street."
address_2:
type: "string"
description: "(Deprecated) A second (additional) line of address information.\n\
(This field is deprecated: we recommend including all address information\n\
before 'city' as a comma or newline separated list in address_1. There\
\ is\nno guarantee that systems will read this line of address information.)"
address_3:
type: "string"
description: "(Deprecated) A third (additional) line of address information.\n\
(This field is deprecated: we recommend including all address information\n\
before 'city' as a comma or newline separated list in address_1. There\
\ is\nno guarantee that systems will read this line of address information.)"
address_4:
type: "string"
description: "(Deprecated) The fourth (additional) line of address information.\n\
(This field is deprecated: we recommend including all address information\n\
before 'city' as a comma or newline separated list in address_1. There\
\ is\nno guarantee that systems will read this line of address information.)"
city:
type: "string"
description: "The city in which the address is located."
region:
type: "string"
description: "The region in which the address is located (optional)."
state_province:
type: "string"
description: "The state or province in which the address is located."
postal_code:
type: "string"
description: "The postal code for the address."
country:
type: "string"
description: "The country in which the address is located. This should be\
\ given\nas an ISO 3361-1 country code (two letter abbreviation)."
description: "The addresses table contains the physical addresses for locations"
programs:
type: "array"
items:
$ref: "#/components/schemas/program"
locations:
type: "array"
items:
$ref: "#/components/schemas/location"
organizations:
type: "array"
items:
$ref: "#/components/schemas/organization"
paymentsAccepted:
type: "array"
items:
$ref: "#/components/schemas/paymentAccepted"
funding:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each entry must have a unique identifier"
organization_id:
type: "string"
description: "The identifier of the organization in receipt of this funding."
service_id:
type: "string"
description: "The identifier of the service in receipt of this funding"
source:
type: "string"
description: "A free text description of the source of funds for this organization\n\
or service."
description: "The funding table describes the sources of funding for a service\
\ or\norganisation"
serviceArea:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each service area must have a unique identifier"
service_id:
type: "string"
description: "The identifier of the service for which this entry describes\
\ the\nservice area"
service_area:
type: "string"
description: "The geographic area where a service is available. This is\
\ a free-text\ndescription, and so may be precise or indefinite as necessary."
description:
type: "string"
description: "A more detailed description of this service area. Used to\
\ provide\nany additional information that cannot be communicated using\
\ the structured\narea and geometry fields."
description: "The service_area table contains details of the geographic area\
\ for\nwhich a service is available."
Problems:
type: "array"
items:
$ref: "#/components/schemas/problem"
accessibilitiesForDisabilities:
type: "array"
items:
$ref: "#/components/schemas/accessibilityForDisabilities"
serviceAreas:
type: "array"
items:
$ref: "#/components/schemas/serviceArea"
schedule:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each entry must have a unique identifier"
service_id:
type: "string"
description: "The identifier of the service for which this is the regular\n\
schedule"
location_id:
type: "string"
description: "The identifier of the location for which this is the regular\n\
schedule"
service_at_location_id:
type: "string"
description: "The identifier of the 'service at location' table entry, when\
\ this\nschedule is specific to a service in a particular location."
valid_from:
type: "string"
description: "The date from which the schedule information is valid."
format: "date"
valid_to:
type: "string"
description: "The last date on which the schedule information is valid."
format: "date"
dtstart:
type: "string"
description: "iCal - The date of the first event is the schedule. Necessary\
\ when\nusing the 'interval' feature, optional otherwise."
format: "date"
timezone:
type: "number"
description: "The timezone that all dates are expressed as, expressed as\
\ a UTC\noffset. Dates are assumed to be UTC otherwise."
until:
type: "string"
description: "iCal - The date of the last occurence of the recurring event."
format: "date"
count:
type: "string"
description: "iCal - The number of times that the event occurs. Use this\
\ instead\nof 'until', if appropriate."
format: "date"
wkst:
type: "string"
description: "iCal - The day on which the week starts, eg MO."
format: "date"
freq:
type: "string"
description: "iCal - How often the frequency repeats. E.g. Frequency use\
\ one\nof WEEKLY or MONTHLY."
interval:
type: "number"
description: "iCal - How often the frequency repeats. E.g. Interval 2 for\
\ Frequency\nWEEKLY gives Fortnightly"
byday:
type: "string"
description: "iCal - Comma seperated days of the week. E.g. SU,MO,TU,WE,TH,FR,SA.\n\
Where freq is MONTHLY each part can be preceded by a positive or negative\n\
integer to represent which occurrence in a month; e.g. 2MO is the second\
\ Monday\nin a month. -1FR is the last Friday"
byweekno:
type: "string"
description: "iCal - Comma seperated numeric weeks of the year if freq is\
\ WEEKLY.\nCan be negative to represent weeks before the end of the year;\
\ e.g. -5 is\nthe 5th to last week in a year."
bymonthday:
type: "number"
description: "iCal - Comma separated numeric days of the month if frequency\
\ is\nMONTHLY. Can be negative to represent days before the end of the\
\ month; e.g.\n-5 is the 5th to last day in a month."
byyearday:
type: "number"
description: "iCal - Comma separated numeric days of the month if frequency\
\ is\nYEARLY. Can be negative to represent days before the end of the\
\ year; e.g.\n-1 is the last day in a year."
description:
type: "string"
description: "Human readable description of the availability of the service."
opens_at:
type: "string"
description: "The time when a service or location opens. This should use\
\ HH:MM\nformat and should include timezone information, either adding\
\ the suffix 'Z'\nwhen the date is in UTC, or including an offset from\
\ UTC (e.g. 09:00-05:00\nfor 9am EST.)"
format: "time"
closes_at:
type: "string"
description: "The time when a service or location closes. This should use\
\ HH:MM\nformat and should include timezone information, either adding\
\ the suffix 'Z'\nwhen the date is in UTC, or including an offset from\
\ UTC (e.g. 09:00-05:00\nfor 9am EST.)"
format: "time"
description: "The schedule table contains details of when a service or location\
\ is\nopen. Entries are RFC 5545 RRULES."
languages:
type: "array"
items:
$ref: "#/components/schemas/language"
postalAddress:
required:
- "address_1"
- "city"
- "country"
- "id"
- "postal_code"
- "state_province"
type: "object"
properties:
id:
type: "string"
description: "Each postal address must have a unique identifier"
location_id:
type: "string"
description: "The identifier of the location for which this is the postal\n\
address."
attention:
type: "string"
description: "The person or entity whose attention should be sought at the\
\ location\n(Often included as 'care of' component of an address.)"
address_1:
type: "string"
description: "The first line(s) of the address, including office, building\
\ number\nand street."
address_2:
type: "string"
description: "(Deprecated) A second (additional) line of address information.\n\
(This field is deprecated: we recommend including all address information\n\
before 'city' as a comma or newline separated list in address_1. There\
\ is\nno guarantee that systems will read this line of address information.)"
address_3:
type: "string"
description: "(Deprecated) A third (additional) line of address information.\n\
(This field is deprecated: we recommend including all address information\n\
before 'city' as a comma or newline separated list in address_1. There\
\ is\nno guarantee that systems will read this line of address information.)"
address_4:
type: "string"
description: "(Deprecated) The fourth (additional) line of address information.\n\
(This field is deprecated: we recommend including all address information\n\
before 'city' as a comma or newline separated list in address_1. There\
\ is\nno guarantee that systems will read this line of address information.)"
city:
type: "string"
description: "The city in which the address is located."
region:
type: "string"
description: "The region in which the address is located (optional)."
state_province:
type: "string"
description: "The state or province in which the address is located."
postal_code:
type: "string"
description: "The postal code for the address."
country:
type: "string"
description: "The country in which the address is located. This should be\
\ given\nas an ISO 3361-1 country code (two letter abbreviation)"
description: "The postalAddress table contains the postal addresses for mail\
\ to\na certain location. This may differ from the physical location."
requiredDocuments:
type: "array"
items:
$ref: "#/components/schemas/requiredDocument"
requiredDocument:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each document must have a unique identifier"
service_id:
type: "string"
description: "The identifier of the service for which this entry describes\
\ the\nrequired document"
document:
type: "string"
description: "The document required to apply for or receive the service.\
\ e.g.\n'Government-issued ID', 'EU Passport'"
description: "The required_document table contains details of any documents\
\ that\nare required in order to access or use services."
phone:
required:
- "id"
- "number"
type: "object"
properties:
id:
type: "string"
description: "Each entry must have a unique identifier"
location_id:
type: "string"
description: "The identifier of the location where this phone number is\
\ located"
service_id:
type: "string"
description: "The identifier of the service for which this is the phone\
\ number"
organization_id:
type: "string"
description: "The identifier of the organisation for which this is the phone\n\
number"
contact_id:
type: "string"
description: "The identifier of the contact for which this is the phone\
\ number"
service_at_location_id:
type: "string"
description: "The identifier of the 'service at location' table entry, when\
\ this\nphone number is specific to a service in a particular location."
number:
type: "string"
description: "The phone number"
extension:
type: "number"
description: "The extension of the phone number"
type:
type: "string"
description: "Indicates the type of phone service, drawing from the RFC6350\
\ list\nof types (text (for SMS), voice, fax, cell, video, pager, textphone)."
language:
type: "string"
description: "A comma separated list of ISO 639-1, or ISO 639-2 [language\
\ codes](available\nat http://www.loc.gov/standards/iso639-2/php/code_list.php)\
\ to represent the\nlanguages available from this phone service. The three-letter\
\ codes from ISO\n639-2 provide greater accuracy when describing variants\
\ of languages, which\nmay be relevant to particular communities."
description:
type: "string"
description: "A description providing extra information about the phone\
\ service\n(e.g. any special arrangements for accessing, or details of\
\ availability at\nparticular times."
department:
type: "string"
description: "(Deprecated) The department for which this is the phone number.\n\
This field is deprecated and will be removed in a future version of HSDS."
description: "The phone table contains details of the telephone numbers are\
\ used\nto contact organizations, services, and locations."
service:
required:
- "id"
- "name"
- "organization_id"
- "status"
type: "object"
properties:
id:
type: "string"
description: "Each service must have a unique identifier."
organization_id:
type: "string"
description: "The identifier of the organization that provides this service."
program_id:
type: "string"
description: "The identifier of the program this service is delivered under."
name:
type: "string"
description: "The official or public name of the service."
alternate_name:
type: "string"
description: "Alternative or commonly used name for a service."
description:
type: "string"
description: "A description of the service."
url:
type: "string"
description: "URL of the service"
email:
type: "string"
description: "Email address for the service"
status:
type: "string"
description: "The current status of the service."
interpretation_services:
type: "string"
description: "A description of any interpretation services available for\
\ accessing\nthis service."
application_process:
type: "string"
description: "The steps needed to access the service."
wait_time:
type: "string"
description: "Time a client may expect to wait before receiving a service."
fees:
type: "string"
description: "Details of any charges for service users to access this service."
accreditations:
type: "string"
description: "Details of any accreditations. Accreditation is the formal\
\ evaluation\nof an organization or program against best practice standards\
\ set by an accrediting\norganization."
licenses:
type: "string"
description: "An organization may have a license issued by a government\
\ entity\nto operate legally. A list of any such licenses can be provided\
\ here."
description: "Services are provided by organizations to a range of different\
\ groups.\nDetails on where each service is delivered are contained in the\
\ services_at_location\ntable."
organization:
required:
- "description"
- "id"
- "name"
type: "object"
properties:
id:
type: "string"
description: "Each organization must have a unique identifier."
name:
type: "string"
description: "The official or public name of the organization."
alternate_name:
type: "string"
description: "Alternative or commonly used name for the organization."
description:
type: "string"
description: "A brief summary about the organization. It can contain markup\
\ such\nas HTML or Markdown."
email:
type: "string"
description: "The contact e-mail address for the organization."
url:
type: "string"
description: "The URL (website address) of the organization."
tax_status:
type: "string"
description: "Government assigned tax designation for tax-exempt organizations."
tax_id:
type: "string"
description: "A government issued identifier used for the purpose of tax\n\
administration."
year_incorporated:
type: "string"
description: "The year in which the organization was legally formed."
format: "date"
legal_status:
type: "string"
description: "The legal status defines the conditions that an organization\
\ is\noperating under; e.g. non-profit, private corporation or a government\
\ organization."
description: "The organization record is used to provide basic description and\
\ details\nabout each organization delivering services. Each service should\
\ be linked to\nthe organization responsible for its delivery. One organization\
\ may deliver many\nservices."
services:
type: "array"
items:
$ref: "#/components/schemas/service"
location:
required:
- "id"
type: "object"
properties:
id:
type: "string"
description: "Each location must have a unique identifier"
organization_id:
type: "string"
description: "Each location entry should be linked to a single organization.\n\
This is the organization that is responsible for maintaining information\
\ about\nthis location. The identifier of the organization should be given\
\ here. Details\nof the services the organisation delivers at this location\
\ should be provided\nin the services_at_location table."
name:
type: "string"
description: "The name of the location"
alternate_name:
type: "string"
description: "An alternative name for the location"
description:
type: "string"
description: "A description of this location."
transportation:
type: "string"
description: "A description of the access to public or private transportation\n\
to and from the location."
latitude:
type: "number"
description: "Y coordinate of location expressed in decimal degrees in WGS84\n\
datum."
longitude:
type: "number"
description: "X coordinate of location expressed in decimal degrees in WGS84\n\
datum."
description: "The location tables provides details of the locations where organizations\n\
operate. Locations may be virtual, and one organization may have many locations."