This repository has been 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
/
Copy pathopenapi-hsda-taxonomy.yaml
1325 lines (1325 loc) · 47 KB
/
openapi-hsda-taxonomy.yaml
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
openapi: 3.0.3
info:
title: Human Services Data Taxonomy API
description: This is a complimentary API to the HSDA API focusing just on taxonomy.
termsOfService: 'https://openreferral.org/documentation/'
contact:
name: Open Referral
url: 'https://openreferral.org/'
email: [email protected]
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:
/taxonomies/:
get:
summary: Get Taxonomy
description: Get Taxonomy
operationId: listTaxonomy
parameters:
- in: query
name: query
description: |-
A query to filter list by (up to provider to determine what to
search)
schema:
type: string
- in: query
name: fields
description: A list of fields to be returned with the response, if not included,
all are returned.
schema:
type: string
- in: query
name: page
description: The particular page of results.
schema:
type: number
- in: query
name: per_page
description: Number of records to return per page, up to 100.
schema:
type: number
- in: query
name: sort_by
description: Which field to sort by.
schema:
type: string
- in: query
name: order
description: Which order to sort by (asc,desc).
schema:
type: string
- in: query
name: format
description: |-
The data format of the response (csv, json, xml).
schema:
type: string
security:
- appid: []
- appkey: []
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/taxonomies'
tags:
- Taxonomy
post:
summary: Add taxonomy
description: Addtaxonomy
operationId: addTaxonomy
requestBody:
$ref: '#/components/requestBodies/taxonomy'
security:
- appid: []
- appkey: []
responses:
'200':
description: Taxonomy Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/taxonomy'
'403':
description: No Access Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Taxonomy
'/taxonomies/{taxonomy_id}/':
get:
summary: Get Taxonomy
description: Get Taxonomy
operationId: getTaxonomy
parameters:
- in: path
required: true
name: taxonomy_id
description: The taxonomy id.
schema:
type: string
responses:
'200':
description: Taxonomy Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/taxonomy'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Taxonomy
put:
summary: Update Taxonomy
description: Update Taxonomy
operationId: updateTaxonomy
parameters:
- in: path
required: true
name: taxonomy_id
description: The unique taxonomy id.
schema:
type: string
requestBody:
$ref: '#/components/requestBodies/taxonomy'
security:
- appid: []
- appkey: []
responses:
'200':
description: Taxonomy Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/taxonomy'
'403':
description: No Access Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Taxonomy
delete:
summary: Delete Taxonomy
description: Delete Taxonomy
operationId: deleteTaxonomy
parameters:
- in: path
required: true
name: taxonomy_id
description: The taxonomy id.
schema:
type: string
tags:
- Taxonomy
security:
- appid: []
- appkey: []
responses:
'200':
description: Taxonomy Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/taxonomy'
'403':
description: No Access Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
'/{taxonomy_name}/services/':
get:
summary: Get Services by Taxonomy
description: Get all the services for a taxonmy term.
operationId: listTaxonomyServices
parameters:
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
- in: query
name: page
description: The particular page of results.
schema:
type: number
default: 0
- in: query
name: per_page
description: 'Number of records return per page, up to 100.'
schema:
type: number
default: 25
- in: query
name: sort_by
description: Which field to sort by.
schema:
type: string
default: name
- in: query
name: order
description: 'Which order to sort by (asc,desc).'
schema:
type: string
default: asc
responses:
'200':
description: Service Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/services'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Services
'/services/{service_id}/attributes/':
get:
summary: Get Service Attributes
description: Gets all of the attributes for a service.
operationId: listServiceAttributes
parameters:
- in: path
required: true
name: service_id
description: The id of the service.
schema:
type: string
responses:
'200':
description: Service Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/taxonomies'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Services
'/services/{service_id}/attributes/{taxonomy_name}/':
post:
summary: Add Taxonomy Keyword to Service
description: Associates a specific taxonomy keyword to a service.
operationId: addTaxonomyKeywordToService
parameters:
- in: path
required: true
name: service_id
description: The id of the service.
schema:
type: string
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
responses:
'204':
description: Service Response
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Services
- Taxonomy
delete:
summary: Delete Taxonomy Keyword to Service
description: Remove a specific taxonomy keyword from a service.
operationId: deleteTaxonomyKeywordFromService
parameters:
- in: path
required: true
name: service_id
description: The id of the service.
schema:
type: string
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
responses:
'204':
description: Service Response
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Services
- Taxonomy
'/{taxonomy_name}/organizations/':
get:
summary: Get Organizations by Taxonomy
description: Get all the organizations for a taxonmy term.
operationId: listTaxonomyOrganizations
parameters:
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
- in: query
name: page
description: The particular page of results.
schema:
type: number
default: 0
- in: query
name: per_page
description: 'Number of records return per page, up to 100.'
schema:
type: number
default: 25
- in: query
name: sort_by
description: Which field to sort by.
schema:
type: string
default: name
- in: query
name: order
description: 'Which order to sort by (asc,desc).'
schema:
type: string
default: asc
responses:
'200':
description: Service Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/organizations'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Organizations
'/organizations/{organization_id}/attributes/':
get:
summary: Get Service Attributes
description: Gets all of the attributes for a service.
operationId: listOrganizationAttributes
parameters:
- in: path
required: true
name: organization_id
description: The id of the organization.
schema:
type: string
responses:
'200':
description: Service Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/taxonomies'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Organizations
'/organizations/{organization_id}/attributes/{taxonomy_name}/':
post:
summary: Add Taxonomy Keyword to Service
description: Associates a specific taxonomy keyword to a service.
operationId: addTaxonomyKeywordToOrganization
parameters:
- in: path
required: true
name: organization_id
description: The id of the organization.
schema:
type: string
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
responses:
'204':
description: Service Response
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Organizations
- Taxonomy
delete:
summary: Delete Taxonomy Keyword to Service
description: Remove a specific taxonomy keyword from a service.
operationId: deleteTaxonomyKeywordFromOrganization
parameters:
- in: path
required: true
name: organization_id
description: The id of the organization.
schema:
type: string
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
responses:
'204':
description: Service Response
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Organizations
- Taxonomy
'/{taxonomy_name}/locations/':
get:
summary: Get Locations by Taxonomy
description: Get all the locations for a taxonmy term.
operationId: listTaxonomyLocations
parameters:
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
- in: query
name: page
description: The particular page of results.
schema:
type: number
default: 0
- in: query
name: per_page
description: 'Number of records return per page, up to 100.'
schema:
type: number
default: 25
- in: query
name: sort_by
description: Which field to sort by.
schema:
type: string
default: name
- in: query
name: order
description: 'Which order to sort by (asc,desc).'
schema:
type: string
default: asc
responses:
'200':
description: Service Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/locations'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Locations
'/locations/{location_id}/attributes/':
get:
summary: Get Service Attributes
description: Gets all of the attributes for a service.
operationId: listLocationsAttributes
parameters:
- in: path
required: true
name: location_id
description: The id of the location.
schema:
type: string
responses:
'200':
description: Service Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/taxonomies'
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Locations
'/locations/{location_id}/attributes/{taxonomy_name}/':
post:
summary: Add Taxonomy Keyword to Service
description: Associates a specific taxonomy keyword to a service.
operationId: addTaxonomyKeywordToLocation
parameters:
- in: path
required: true
name: location_id
description: The id of the location.
schema:
type: string
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
responses:
'204':
description: Service Response
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Locations
- Taxonomy
delete:
summary: Delete Taxonomy Keyword to Service
description: Remove a specific taxonomy keyword from a service.
operationId: deleteTaxonomyKeywordFromLocation
parameters:
- in: path
required: true
name: location_id
description: The id of the location.
schema:
type: string
- in: path
required: true
name: taxonomy_name
description: The taxonomy name.
schema:
type: string
responses:
'204':
description: Service Response
'500':
description: Error Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/problems'
tags:
- Locations
- Taxonomy
components:
requestBodies:
taxonomy:
content:
application/json:
schema:
$ref: '#/components/schemas/taxonomy'
securitySchemes:
appid:
type: apiKey
in: header
name: x-appid
appkey:
type: apiKey
in: header
name: x-appkey
schemas:
taxonomies:
type: array
items:
$ref: '#/components/schemas/taxonomy'
taxonomy:
properties:
id:
description: 'Each taxonomy term must have a unique identifier, within the scope of the dataset'
type: string
term:
description: The taxonomy term itself.
type: string
description:
description: What the term means.
type: string
parent_id:
description: 'If this is a child term in a hierarchical taxonomy, give the identifier of the parent category. For top-level categories, this should be left blank.'
type: string
taxonomy:
description: 'If this is an established taxonomy, detail which taxonomy is in use. For example, AIRS or Open Eligibility. If possible, provide a URI.'
type: string
language:
description: 'An ISO 639-1, or ISO 639-2 [language code](available at http://www.loc.gov/standards/iso639-2/php/code_list.php) to represent the language of the term. The three-letter codes from ISO 639-2 provide greater accuracy when describing variants of languages, which may be relevant to particular communities.'
type: string
required:
- id
- name
- description
contacts:
type: array
items:
$ref: '#/components/schemas/contact'
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 accepted 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 that 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 eligibility criteria
description: The eligibility tables contains details of the eligibility criteria 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 languages in which services are delivered
location_id:
type: string
description: The identifier of the location for which the entry describes the languages in which services are delivered
language:
type: string
description: 'Languages, other than English, in which the service is delivered. Languages are listed as ISO639-1 codes.'
description: The language table contains details of the languages that are spoken at locations or services. This does not include languages which can only be used with 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 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 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 specification encourages that, when dereferenced, it provide human-readable documentation for the problem type (e.g., using HTML [W3C.REC-html5-20141028]). When this 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 NOT change from occurrence to occurrence of the problem, except for purposes of localization (e.g., using proactive content negotiation; see [RFC7231], Section 3.4)'''
detail:
type: string
description: A human-readable explanation specific to this occurrence of the problem.
status:
type: string
description: 'The HTTP status code ([RFC7231], Section 6) generated by the origin server for this occurrence of the problem.'
description: The meta_table_description table contains metadata about individual 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 accessibility provision
accessibility:
type: string
description: Description of assistance or infrastructure that facilitate access to clients with disabilities.
details:
type: string
description: Any further details relating to the relevant accessibility arrangements at this location. E.g. whether advance notice is required to use an accessibility facility.
description: The accessibility_for_disabilities table contains details of the arrangements for 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 contact 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 and organizations. Note that in the HSDS data package format, if an individual is the contact for multiple services, their details may be duplicated multiple times in this table, each time with a new identifier, and with the rows containing 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 (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 and street.'
address_2:
type: string
description: '(Deprecated) A second (additional) line of address information. (This field is deprecated: we recommend including all address information before ''city'' as a comma or newline separated list in address_1. There is no guarantee that systems will read this line of address information.)'
address_3:
type: string
description: '(Deprecated) A third (additional) line of address information. (This field is deprecated: we recommend including all address information before ''city'' as a comma or newline separated list in address_1. There is no guarantee that systems will read this line of address information.)'
address_4:
type: string
description: '(Deprecated) The fourth (additional) line of address information. (This field is deprecated: we recommend including all address information before ''city'' as a comma or newline separated list in address_1. There is no 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 as 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 or service.
description: The funding table describes the sources of funding for a service or organisation
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 service area
service_area:
type: string
description: 'The geographic area where a service is available. This is a free-text description, and so may be precise or indefinite as necessary.'
description:
type: string
description: A more detailed description of this service area. Used to provide any additional information that cannot be communicated using the structured area and geometry fields.
description: The service_area table contains details of the geographic area for which a service is available.
accessibilitiesForDisabilities: