-
Notifications
You must be signed in to change notification settings - Fork 0
/
sushi-config.yaml
1541 lines (1526 loc) · 121 KB
/
sushi-config.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
# Documentation à propos de cette page : https://fshschool.org/docs/sushi/configuration/
id: ans.fr.terminologies
canonical: https://interop.esante.gouv.fr/terminologies
name: Terminologies
title: Terminologies de Santé (Publiées par l'ANS)
publisher:
name: ANS
url: https://esante.gouv.fr
status: active
description: Les nomenclatures des objets de Santé sont mises à disposition du secteur santé-social par l’agence du numérique en santé
version: 1.1.0
date: 2023-03
fhirVersion: 4.0.1
copyrightYear: 2020+
releaseLabel: ci-build
jurisdiction: urn:iso:std:iso:3166#FR "France"
parameters:
apply-version: false
apply-contact : false
apply-publisher : false
apply-jurisdiction : false
path-expansion-params: '../../input/_resources/exp-params.json' # for using FR of SNOMED
logging:
- tx #tx: Messages describing the use of the terminology server (for debugging)
- html #html: Log when validating an html page (troubleshooting only - leave off)
- generate #generate: Log when producing an individual resource (troubleshooting only - leave off)
- init #init: Messages describing the start up process (for debugging)
- progress #progress: Overall progress messages
viewDefinition: input/sql/sql-add-info.json
shownav: 'true'
no-validate:
- 'CodeSystem/TRE-R13-Commune'
- 'ValueSet/JDV-J120-CommuneHistorisee'
- 'ConceptMap/ASS-X12-CommuneDeptRegionOM'
path-resource:
- DM/fsh-generated/resources
- input/ontoserver/JDV
- input/ontoserver/TRE
- input/ontoserver/ASS
- input/ontoserver/NamingSystem
special-url-base:
- https://smt.esante.gouv.fr/fhir
- https://mos.esante.gouv.fr/NOS
special-url:
- http://hl7.org/fhir/ValueSet/designation-use
- http://snomed.info/sct
- https://interop.esante.gouv.fr/ig/terminologie/ConceptMap/alignement-nuva-atc
- https://smt.esante.gouv.fr/fhir/ConceptMap/alignement-nuva-bdpm
- https://smt.esante.gouv.fr/fhir/ConceptMap/alignement-nuva-cipucd
- https://smt.esante.gouv.fr/fhir/ConceptMap/alignement-bdpm-cipucd
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.10
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.46
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.31
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.23
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.27
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.35
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.32
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.25
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.24
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.30
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.29
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.26
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.28
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.34
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.5
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.13
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.16
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.15
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.20
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.11
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.6
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.40
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.19
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.43
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.41
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.18
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.17
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.36
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.21
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.42
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.9
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.22
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.37
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.44
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.39
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.7
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.8
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.38
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.285.3
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.285.1
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.285.2
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.24
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.25
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.683
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.674
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.2
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.92
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.480
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.119
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.283.2
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.30
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.233
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.234
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.235
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.237
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.236
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.238
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.239
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.241
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.243
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.244
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.245
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.246
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.247
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.249
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.248
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.240
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.242
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.250
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.252
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.251
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.253
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.256
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.258
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.257
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.259
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.260
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.263
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.264
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.266
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.265
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.267
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.120
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.808
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.809
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.711
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.813
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.269
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.271
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.270
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.272
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.273
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.275
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.277
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.274
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.276
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.790
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.806
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.534
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.553
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.535
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.554
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.536
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.533
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.555
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.552
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.539
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.542
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.544
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.547
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.548
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.549
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.543
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.550
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.541
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.563
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.564
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.559
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.561
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.567
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.562
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.569
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.560
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.570
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.574
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.575
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.576
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.577
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.278
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.280
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.279
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.281
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.282
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.284
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.286
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.283
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.285
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.287
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.288
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.289
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.290
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.291
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.294
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.292
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.293
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.295
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.296
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.301
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.302
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.303
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.304
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.305
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.297
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.300
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.306
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.307
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.308
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.309
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.311
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.313
- https://smt.esante.gouv.fr/fhir/ValueSet/2.16.840.1.113883.1.11.10196
- https://smt.esante.gouv.fr/fhir/ValueSet/2.16.840.1.113883.1.11.19724
- https://smt.esante.gouv.fr/fhir/ValueSet/2.16.840.1.113883.5.4.642.3.289
- https://smt.esante.gouv.fr/fhir/ValueSet/2.16.840.1.113883.5.112
- https://smt.esante.gouv.fr/fhir/ValueSet/2.16.840.1.113883.1.11.16643
- https://smt.esante.gouv.fr/fhir/ValueSet/2.16.840.1.113883.21.327
- https://smt.esante.gouv.fr/fhir/ValueSet/2.16.840.1.113883.21.29
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.812
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.12
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.1
- https://mos.esante.gouv.fr/NOS/JDV_J277-NCIT-CISIS/FHIR/JDV-J277-NCIT-CISIS
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.316
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.315
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.317
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.318
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.321
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.325
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.319
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.320
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.322
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.323
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.324
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.482
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.326
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.327
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.328
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.329
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.331
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.334
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.330
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.332
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.333
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.207
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.581
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.803
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.578
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.49
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.16
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.15
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.18
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.19
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.20
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.12
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.43
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.11
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.14
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.13
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.38
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.21
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.22
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.23
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.41
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.26
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.46
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.47
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.48
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.17
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.27
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.28
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.30
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.40
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.39
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.286.1
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.289.3
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.599
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.337
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.336
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.339
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.341
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.343
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.340
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.342
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.479
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.344
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.346
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.347
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.345
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.348
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.349
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.350
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.352
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.353
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.355
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.357
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.356
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.359
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.361
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.363
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.360
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.364
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.366
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.365
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.367
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.368
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.370
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.372
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.369
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.371
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.375
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.374
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.377
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.381
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.385
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.378
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.379
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.380
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.382
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.383
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.386
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.387
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.388
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.389
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.394
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.391
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.393
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.530
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.531
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.532
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.4
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.283.3
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.395
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.396
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.397
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.398
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.400
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.401
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.402
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.404
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.403
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.405
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.690
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.583
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.407
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.408
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.410
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.409
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.412
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.414
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.416
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.413
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.415
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.807
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.814
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.774
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.417
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.418
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.419
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.420
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.421
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.423
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.424
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.422
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.426
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.428
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.432
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.433
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.431
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.430
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.434
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.435
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.427
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.429
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.36
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.579
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.572
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.789
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.436
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.437
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.439
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.441
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.443
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.440
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.442
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.444
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.445
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.446
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.447
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.452
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.448
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.450
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.451
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.3
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.18
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.802
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.811
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.14
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.752
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.801
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.529
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.580
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.9
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.118
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.582
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.584
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.453
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.454
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.455
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.457
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.472
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.474
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.459
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.473
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.2
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.4
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.5.713
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.48
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.47
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.321.45
- https://mos.esante.gouv.fr/NOS/TRE_R248-ModeAcces/FHIR/TRE-R248-ModeAcces
- http://terminology.hl7.org/CodeSystem/service-type
- https://interop.esante.gouv.fr/ig/terminologie/ImplementationGuide/ans.fr.terminologie
- https://interop.esante.gouv.fr/ig/terminologie/NamingSystem/Snomed-CT-core
- https://interop.esante.gouv.fr/ig/terminologie/NamingSystem/v3-loinc
- https://mos.esante.gouv.fr/NOS/JDV_J08-XdsConfidentialityCode-CISIS/FHIR/JDV-J08-XdsConfidentialityCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J282-TransportsLiesAuProjetIndividuel_SERAFIN/FHIR/JDV-J282-TransportsLiesAuProjetIndividuel-SERAFIN
- https://mos.esante.gouv.fr/NOS/JDV_J283-PrestationsIndirects_SERAFIN/FHIR/JDV-J283-PrestationsIndirects-SERAFIN
- https://mos.esante.gouv.fr/NOS/JDV_J284-PrestationsDirects_SERAFIN/FHIR/JDV-J284-PrestationsDirects-SERAFIN
- https://mos.esante.gouv.fr/NOS/JDV_J285-Besoins_SERAFIN/FHIR/JDV-J285-Besoins-SERAFIN
- https://mos.esante.gouv.fr/NOS/JDV_J286_ProfilUtilisateurReferentielNational_ROR/FHIR/JDV-J286-ProfilUtilisateurReferentielNational-ROR
- https://smt.esante.gouv.fr/terminologie-atc?vs
- https://smt.esante.gouv.fr/terminologie-cip_ucd?vs
- https://smt.esante.gouv.fr/terminologie-standardterms?vs
- https://smt.esante.gouv.fr/terminologie-nuva?vs
- https://smt.esante.gouv.fr/terminologie-sms?vs
- https://smt.esante.gouv.fr/terminologie-lahn
- https://mos.esante.gouv.fr/NOS/TRE_R368-StatutRessource/FHIR/TRE-R368-StatutRessource
- https://mos.esante.gouv.fr/NOS/TRE_R369_ProfilUtilisateurReferentielNational/FHIR/TRE-R369-ProfilUtilisateurReferentielNational
- https://mos.esante.gouv.fr/NOS/ASS_12_CorresMediaTypeCDANonStructure-XdsFormatCode-CISIS.json
- https://mos.esante.gouv.fr/NOS/ASS_A11-CorresModeleCDA-XdsFormatCode-CISIS
- https://mos.esante.gouv.fr/NOS/ASS_A13-TypeEvenement-FluxStandardise/FHIR/ASS-A13-TypeEvenement-FluxStandardise
- https://mos.esante.gouv.fr/NOS/ASS_A14-FamilleActivite-ActiviteOperationnelle/FHIR/ASS-A14-FamilleActivite-ActiviteOperationnelle
- https://mos.esante.gouv.fr/NOS/ASS_A15-SexeProvenanceISO-Sexe/FHIR/ASS-A15-SexeProvenanceISO-Sexe
- https://mos.esante.gouv.fr/NOS/ASS_A20-RolePriseCharge-GenreActivite/FHIR/ASS-A20-RolePriseCharge-GenreActivite
- https://mos.esante.gouv.fr/NOS/ASS_A21-AS-ActiviteModaliteForme/FHIR/ASS-A21-AS-ActiviteModaliteForme
- https://mos.esante.gouv.fr/NOS/ASS_A22-AASA-ActiviteModaliteForme/FHIR/ASS-A22-AASA-ActiviteModaliteForme
- https://mos.esante.gouv.fr/NOS/ASS_A23-ASR-ActiviteModaliteForme/FHIR/ASS-A23-ASR-ActiviteModaliteForme
- https://mos.esante.gouv.fr/NOS/ASS_A24-ModeExercice-TypeActivite-ENREG/FHIR/ASS-A24-ModeExercice-TypeActivite-ENREG
- https://mos.esante.gouv.fr/NOS/ASS_A25-PaysProvenanceISO-PaysProvenanceCOG/FHIR/ASS-A25-PaysProvenanceISO-PaysProvenanceCOG
- https://mos.esante.gouv.fr/NOS/ASS_A28-TypeDiplome-Diplome-Profession-EPARS/FHIR/ASS-A28-TypeDiplome-Diplome-Profession-EPARS
- https://mos.esante.gouv.fr/NOS/ASS_A29-Département-AE/FHIR/ASS-A29-Département-AE
- https://mos.esante.gouv.fr/NOS/ASS_A31_CorresDiabete-RegroupementDiabete
- https://mos.esante.gouv.fr/NOS/ASS_A32_StatutMotifPersonnePriseCharge
- https://mos.esante.gouv.fr/NOS/ASS_X01_TranscoSavFaireADELI_SavFaireR01
- https://mos.esante.gouv.fr/NOS/ASS_X10_AgregatCategorieEtablissement
- https://mos.esante.gouv.fr/NOS/ASS-X11-FinessAgregatStatutJuridique
- https://mos.esante.gouv.fr/NOS/ASS_X14_AgregatDisciplineEquipementSocial
- https://mos.esante.gouv.fr/NOS/ASS_X15_AgregatDisciplineEnseignement
- https://mos.esante.gouv.fr/NOS/JDV_J02-XdsHealthcareFacilityTypeCode-CISIS/FHIR/JDV-J02-XdsHealthcareFacilityTypeCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J279-Loinc-UPNOS/FHIR/JDV-J279-Loinc-UPNOS
- https://mos.esante.gouv.fr/NOS/JDV_J281-StatutsRessourcesMS/FHIR/JDV-J281-StatutsRessourcesMS
- https://mos.esante.gouv.fr/NOS/JDV_J04-XdsPracticeSettingCode-CISIS/FHIR/JDV-J04-XdsPracticeSettingCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J08-XdsConfidentialityCode-CISIS/FHIR/JDV-J08-XdsConfidentialityCode-CISIS)
- https://mos.esante.gouv.fr/NOS/JDV_J259-ModeFixationTarifaire-RASS/FHIR/JDV-J259-ModeFixationTarifaire-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J260-TypeFermeture-RASS/FHIR/JDV-J260-TypeFermeture-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J261-SourceInformationInstallation-RASS/FHIR/JDV-J261-SourceInformationInstallation-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J275-EMDN-UPNOS/FHIR/JDV-J275-EMDN-UPNOS
- https://mos.esante.gouv.fr/NOS/JDV_J270-NCIT-CISIS/FHIR/JDV-J277-NCIT-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J278-UcumUniteMesure-UPNOS/FHIR/JDV-J278-UcumUniteMesure-UPNOS
- https://mos.esante.gouv.fr/NOS/ASS_A30-TypeAutorisation-Profession-EPARS/FHIR/ASS-A30-TypeAutorisation-Profession-EPARS
- https://mos.esante.gouv.fr/NOS/ASS_A33-AdministrativeGender-Sexe/FHIR/ASS-A33-AdministrativeGender-Sexe
- https://mos.esante.gouv.fr/NOS/ASS_X02-TranscoSectActADELI-SectAct/FHIR/ASS-X02-TranscoSectActADELI-SectAct
- https://mos.esante.gouv.fr/NOS/ASS_X04-CorrespondanceType-Classe-CISIS/FHIR/ASS-X04-CorrespondanceType-Classe-CISIS
- https://mos.esante.gouv.fr/NOS/ASS_X08-TranscoSavoirFaireR01-SavoirFaire/FHIR/ASS-X08-TranscoSavoirFaireR01-SavoirFaire
- https://mos.esante.gouv.fr/NOS/ASS_X09-DepartementOM-RegionOM/FHIR/ASS-X09-DepartementOM-RegionOM
- https://mos.esante.gouv.fr/NOS/ASS_X12-CommuneDeptRegionOM/FHIR/ASS-X12-CommuneDeptRegionOM
- https://mos.esante.gouv.fr/NOS/ASS_X13-AgregatClientele/FHIR/ASS-X13-AgregatClientele
- https://mos.esante.gouv.fr/NOS/ASS_X16-CorrespondanceType-Classe-DMP/FHIR/ASS-X16-CorrespondanceType-Classe-DMP
- https://mos.esante.gouv.fr/NOS/JDV-MediaTypeCorpsCDANonStructure?vs
- https://mos.esante.gouv.fr/NOS/JDV-ModeleDocumentCDA
- https://mos.esante.gouv.fr/NOS/JDV_J01-XdsAuthorSpecialty-CISIS/FHIR/JDV-J01-XdsAuthorSpecialty-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J03-XdsContentTypeCode-CISIS/FHIR/JDV-J03-XdsContentTypeCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J05-SubjectRole-CISIS/FHIR/JDV-J05-SubjectRole-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J06-XdsClassCode-CISIS/FHIR/JDV-J06-XdsClassCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J07-XdsTypeCode-CISIS/FHIR/JDV-J07-XdsTypeCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J10-XdsFormatCode-CISIS/FHIR/JDV-J10-XdsFormatCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J100-FinessStatutJuridique-RASS/FHIR/JDV-J100-FinessStatutJuridique-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J101-SecteurActivite-RASS/FHIR/JDV-J101-SecteurActivite-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J103-TypeVoie-RASS/FHIR/JDV-J103-TypeVoie-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J104-TypeIdentifiantStructure-RASS/FHIR/JDV-J104-TypeIdentifiantStructure-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J105-EnsembleDiplome-RASS/FHIR/JDV-J105-EnsembleDiplome-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J106-EnsembleProfession-RASS/FHIR/JDV-J106-EnsembleProfession-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J107-EnsembleSavoirFaire-RASS/FHIR/JDV-J107-EnsembleSavoirFaire-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J108-EnsembleFonction-RASS/FHIR/JDV-J108-EnsembleFonction-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J11-RelationPatient-CISIS/FHIR/JDV-J11-RelationPatient-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J110-StatutVisibiliteDocument-CISIS/FHIR/JDV-J110-StatutVisibiliteDocument-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J111-StatutEtatCivil-ENREG/FHIR/JDV-J111-StatutEtatCivil-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J112-SexeAdministratif-ENREG/FHIR/JDV-J112-SexeAdministratif-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J113-Civilite-ENREG/FHIR/JDV-J113-Civilite-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J114-Pays-ENREG/FHIR/JDV-J114-Pays-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J115-Langue-ENREG/FHIR/JDV-J115-Langue-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J116-GenreActivite-ENREG/FHIR/JDV-J116-GenreActivite-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J117-ModeExercice-ENREG/FHIR/JDV-J117-ModeExercice-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J118-CategorieProfessionnelle-ENREG/FHIR/JDV-J118-CategorieProfessionnelle-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J119-TypeActiviteLiberale-ENREG/FHIR/JDV-J119-TypeActiviteLiberale-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J12-CiviliteTitre-CISIS/FHIR/JDV-J12-CiviliteTitre-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J120-CommuneHistorisee/FHIR/JDV-J120-CommuneHistorisee
- https://mos.esante.gouv.fr/NOS/JDV_J121-RolePriseCharge-ENREG/FHIR/JDV-J121-RolePriseCharge-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J122-Profession-ENREG/FHIR/JDV-J122-Profession-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J123-Pays-MDPH/FHIR/JDV-J123-Pays-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J124-Commune/FHIR/JDV-J124-Commune
- https://mos.esante.gouv.fr/NOS/JDV_J125-MotifRejet-ENREG/FHIR/JDV-J125-MotifRejet-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J126-SecteurActivite-ENREG/FHIR/JDV-J126-SecteurActivite-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J127-StatutJuridique-ENREG/FHIR/JDV-J127-StatutJuridique-ENREG
- https://mos.esante.gouv.fr/NOS/JDV_J128-TypeCarte-RASS/FHIR/JDV-J128-TypeCarte-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J129-CategorieEtablissement-RASS/FHIR/JDV-J129-CategorieEtablissement-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J13-ResponsableConsent-CISIS/FHIR/JDV-J13-ResponsableConsent-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J130-CNAMAmeliSecteurConventionnement-RASS/FHIR/JDV-J130-CNAMAmeliSecteurConventionnement-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J131-CategorieActiviteSanitaireRegulee-RASS/FHIR/JDV-J131-CategorieActiviteSanitaireRegulee-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J132-ModaliteActivite-RASS/FHIR/JDV-J132-ModaliteActivite-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J133-ActiviteSanitaireRegulee-RASS/FHIR/JDV-J133-ActiviteSanitaireRegulee-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J134-FormeActivite-RASS/FHIR/JDV-J134-FormeActivite-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J135-EquipementMaterielLourd-RASS/FHIR/JDV-J135-EquipementMaterielLourd-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J136-DisciplineEquipementSocial-RASS/FHIR/JDV-J136-DisciplineEquipementSocial-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J137-Clientele-RASS/FHIR/JDV-J137-Clientele-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J138-TypeActivite-RASS/FHIR/JDV-J138-TypeActivite-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J139-TypeBAL-RASS/FHIR/JDV-J139-TypeBAL-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J14-QualiteRepresentantLegal-CISIS/FHIR/JDV-J14-QualiteRepresentantLegal-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J140-EncounterParticipationType-CISIS/FHIR/JDV-J140-EncounterParticipationType-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J141-RoleClass-CISIS/FHIR/JDV-J141-RoleClass-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J142-TypeRencontre-CISIS/FHIR/JDV-J142-TypeRencontre-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J143-AdministrativeGender-CISIS/FHIR/JDV-J143-AdministrativeGender-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J144-ParticipationType-CISIS/FHIR/JDV-J144-ParticipationType-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J145-MethodBodyWeight-ENS/FHIR/JDV-J145-MethodBodyWeight-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J148-ReferenceRangeAppliesTo-CISIS/FHIR/JDV-J148-ReferenceRangeAppliesTo-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J149-BodySiteBP-ENS/FHIR/JDV-J149-BodySiteBP-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J146-MethodBodyHeight-ENS/FHIR/JDV-J146-MethodBodyHeight-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J147-MethodHeartrate-ENS/FHIR/JDV-J147-MethodHeartrate-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J15-ClasseAge-ROR/FHIR/JDV-J15-ClasseAge-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J150-MethodBP-ENS/FHIR/JDV-J150-MethodBP-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J151-BodySiteBodyTemperature-ENS/FHIR/JDV-J151-BodySiteBodyTemperature-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J152-MethodBodyTemperature-ENS/FHIR/JDV-J152-MethodBodyTemperature-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J153-TypeDiabete-ENS/FHIR/JDV-J153-TypeDiabete-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J154-TypeGlucose-ENS/FHIR/JDV-J154-TypeGlucose-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J156-MethodGlucoseInterstitiel-ENS/FHIR/JDV-J156-MethodGlucoseInterstitiel-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J157-MomentGlucose-ENS/FHIR/JDV-J157-MomentGlucose-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J158-MethodStepsByDay-ENS/FHIR/JDV-J158-MethodStepsByDay-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J155-MethodGlucoseSanguin-ENS/FHIR/JDV-J155-MethodGlucoseSanguin-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J159-MethodPainSeverity-ENS/FHIR/JDV-J159-MethodPainSeverity-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J16-ActeSpecifique-ROR/FHIR/JDV-J16-ActeSpecifique-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J161-Lateralite-CISIS/FHIR/JDV-J161-Lateralite-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J162-ESPIC-RASS/FHIR/JDV-J162-ESPIC-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J163-GlucoseUnits-ENS/FHIR/JDV-J163-GlucoseUnits-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J164-GlucoseNumberOfDays-ENS/FHIR/JDV-J164-GlucoseNumberOfDays-ENS
- https://mos.esante.gouv.fr/NOS/JDV_J165-TypeCreneau-SAS/FHIR/JDV-J165-TypeCreneau-SAS
- https://mos.esante.gouv.fr/NOS/JDV_J166-Profession-EPARS/FHIR/JDV-J166-Profession-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J167-DepartementOM-EPARS/FHIR/JDV-J167-DepartementOM-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J168-Pays-EPARS/FHIR/JDV-J168-Pays-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J169-MotifFinActivite-EPARS/FHIR/JDV-J169-MotifFinActivite-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J17-ActiviteOperationnelle-ROR/FHIR/JDV-J17-ActiviteOperationnelle-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J170-AutoriteEnregistrement-EPARS/FHIR/JDV-J170-AutoriteEnregistrement-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J171-TypeAutorisation-EPARS/FHIR/JDV-J171-TypeAutorisation-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J172-SecteurActivite-EPARS/FHIR/JDV-J172-SecteurActivite-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J173-FinessStatutJuridique-EPARS/FHIR/JDV-J173-FinessStatutJuridique-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J176-SituationVieQuotidienne-MDPH/FHIR/JDV-J176-SituationVieQuotidienne-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J177-BesoinAideMobilite-MDPH/FHIR/JDV-J177-BesoinAideMobilite-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J178-BesoinAideVieSociale-MDPH/FHIR/JDV-J178-BesoinAideVieSociale-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J179-BesoinCommunication-MDPH/FHIR/JDV-J179-BesoinCommunication-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J18-EquipementSpecifique-ROR/FHIR/JDV-J18-EquipementSpecifique-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J180-BesoinEntretienPersonnel-MDPH/FHIR/JDV-J180-BesoinEntretienPersonnel-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J181-BesoinMobilite-MDPH/FHIR/JDV-J181-BesoinMobilite-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J182-BesoinScolarite-MDPH/FHIR/JDV-J182-BesoinScolarite-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J183-Diplome-EPARS/FHIR/JDV-J183-Diplome-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J185-TypeFermeture-ROR/FHIR/JDV-J185-TypeFermeture-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J186-ProfessionRessource-ROR/FHIR/JDV-J186-ProfessionRessource-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J187-NatureCapacite-ROR/FHIR/JDV-J187-NatureCapacite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J188-TypeStatutCapacite-ROR/FHIR/JDV-J188-TypeStatutCapacite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J189-TemporaliteCapacite-ROR/FHIR/JDV-J189-TemporaliteCapacite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J19-ModePriseEnCharge-ROR/FHIR/JDV-J19-ModePriseEnCharge-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J190-GenreCapacite-ROR/FHIR/JDV-J190-GenreCapacite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J191-TypeFermetureCapacite-ROR/FHIR/JDV-J191-TypeFermetureCapacite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J192-TypeLitSupplementaire-ROR/FHIR/JDV-J192-TypeLitSupplementaire-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J193-TypeSourceCapacite-ROR/FHIR/JDV-J193-TypeSourceCapacite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J194-TypeCrise-ROR/FHIR/JDV-J194-TypeCrise-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J195-AffectationTemporaire-ROR/FHIR/JDV-J195-AffectationTemporaire-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J196-StatutCommunication-ROR/FHIR/JDV-J196-StatutCommunication-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J197-XdsTypesIdentifiantsReferenceId-CISIS/FHIR/JDV-J197-XdsTypesIdentifiantsReferenceId-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J198-FonctionLieu-ROR/FHIR/JDV-J198-FonctionLieu-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J199-StatutJuridique-ROR/FHIR/JDV-J199-StatutJuridique-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J20-ChampActivite-ROR/FHIR/JDV-J20-ChampActivite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J200-SousEnsembleAgregatStatutJuridique-ROR/FHIR/JDV-J200-SousEnsembleAgregatStatutJuridique-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J201-TypeFermeture-ROR/FHIR/JDV-J201-TypeFermeture-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J202-ESPIC-ROR/FHIR/JDV-J202-ESPIC-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J203-TypeOrganisationInterne-ROR/FHIR/JDV-J203-TypeOrganisationInterne-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J204-NiveauRecoursORSAN-ROR/FHIR/JDV-J204-NiveauRecoursORSAN-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J205-UnitePrix-ROR/FHIR/JDV-J205-UnitePrix-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J206-PrestationNonObligatoireIncluse-ROR/FHIR/JDV-J206-PrestationNonObligatoireIncluse-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J207-Civilite-ROR/FHIR/JDV-J207-Civilite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J208-CiviliteExercice-ROR/FHIR/JDV-J208-CiviliteExercice-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J209-TypeSavoirFaire-ROR/FHIR/JDV-J209-TypeSavoirFaire-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J21-PalierAuthentificationActeurPP/FHIR/JDV-J21-PalierAuthentificationActeurPP
- https://mos.esante.gouv.fr/NOS/JDV_J210-SpecialiteOrdinale-ROR/FHIR/JDV-J210-SpecialiteOrdinale-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J211-CompetenceExclusive-ROR/FHIR/JDV-J211-CompetenceExclusive-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J212-OrientationParticuliere-ROR/FHIR/JDV-J212-OrientationParticuliere-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J213-CapaciteSavoirFaire-ROR/FHIR/JDV-J213-CapaciteSavoirFaire-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J214-QualificationPAC-ROR/FHIR/JDV-J214-QualificationPAC-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J215-DESCnonQualifiant-ROR/FHIR/JDV-J215-DESCnonQualifiant-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J216-DroitExerciceCompl-ROR/FHIR/JDV-J216-DroitExerciceCompl-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J217-ModeExercice-ROR/FHIR/JDV-J217-ModeExercice-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J218-CNAMAmeliSecteurConventionnement-ROR/FHIR/JDV-J218-CNAMAmeliSecteurConventionnement-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J219-TypeVoie-ROR/FHIR/JDV-J219-TypeVoie-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J22-RestrictionAudienceVIHF-CISIS/FHIR/JDV-J22-RestrictionAudienceVIHF-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J220-FonctionContact-ROR/FHIR/JDV-J220-FonctionContact-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J221-NatureContact-ROR/FHIR/JDV-J221-NatureContact-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J222-NiveauConfidentialite-ROR/FHIR/JDV-J222-NiveauConfidentialite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J223-TypeDivisionTerritoriale-ROR/FHIR/JDV-J223-TypeDivisionTerritoriale-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J224-StatutLieu-ROR/FHIR/JDV-J224-StatutLieu-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J225-CanalCommunication-ROR/FHIR/JDV-J225-CanalCommunication-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J226-ModaliteAccueil-ROR/FHIR/JDV-J226-ModaliteAccueil-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J227-NiveauExpertise-ROR/FHIR/JDV-J227-NiveauExpertise-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J228-TypeCaracteristiqueEquipement-ROR/FHIR/JDV-J228-TypeCaracteristiqueEquipement-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J229-ProfessionSante-ROR/FHIR/JDV-J229-ProfessionSante-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J23-TypeNoteCahierLiaison-CISIS/FHIR/JDV-J23-TypeNoteCahierLiaison-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J231-XdsTypesIdentifiantsReferenceId-DMP/FHIR/JDV-J231-XdsTypesIdentifiantsReferenceId-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J232-Competence-ROR/FHIR/JDV-J232-Competence-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J233-TypeDiplome-EPARS/FHIR/JDV-J233-TypeDiplome-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J234-GenreActivite-EPARS/FHIR/JDV-J234-GenreActivite-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J235-LieuFormation-EPARS/FHIR/JDV-J235-LieuFormation-EPARS
- https://mos.esante.gouv.fr/NOS/JDV_J236-TypeIdentifiant-ROR/FHIR/JDV-J236-TypeIdentifiant-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J237-RegionOM-ROR/FHIR/JDV-J237-RegionOM-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J238-TypeOffre-ROR/FHIR/JDV-J238-TypeOffre-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J239-SpecialitesSNP-SAS/FHIR/JDV-J239-SpecialitesSNP-SAS
- https://mos.esante.gouv.fr/NOS/JDV_J24-ProfessionAuteurNote-CISIS/FHIR/JDV-J24-ProfessionAuteurNote-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J241-ThematiqueAnomalie-ROR/FHIR/JDV-J241-ThematiqueAnomalie-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J242-ActionAnomalie-ROR/FHIR/JDV-J242-ActionAnomalie-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J244-StatutMetierAnomalie-ROR/FHIR/JDV-J244-StatutMetierAnomalie-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J245-Civilite-CISIS/FHIR/JDV-J245-Civilite-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J246-Titre-CISIS/FHIR/JDV-J246-Titre-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J247-Pays-ROR/FHIR/JDV-J247-Pays-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J248-DepartementOM-ROR/FHIR/JDV-J248-DepartementOM-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J249-TerritoireSante-ROR/FHIR/JDV-J249-TerritoireSante-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J250-MotifStatutPersonnePriseChargeUnite/FHIR/JDV-J250-MotifStatutPersonnePriseChargeUnite
- https://mos.esante.gouv.fr/NOS/JDV_J251-MotifStatutPersonnePriseChargeESMS/FHIR/JDV-J251-MotifStatutPersonnePriseChargeESMS
- https://mos.esante.gouv.fr/NOS/JDV_J252-StatutPersonnePriseChargeESMS/FHIR/JDV-J252-StatutPersonnePriseChargeESMS
- https://mos.esante.gouv.fr/NOS/JDV_J253-StatutPersonnePriseChargeUnite/FHIR/JDV-J253-StatutPersonnePriseChargeUnite
- https://mos.esante.gouv.fr/NOS/JDV_J254-CategorieEtablissementESSMSPH/FHIR/JDV-J254-CategorieEtablissementESSMSPH
- https://mos.esante.gouv.fr/NOS/JDV_J255-SurspecialiteTransversale-RPPS/FHIR/JDV-J255-SurspecialiteTransversale-RPPS
- https://mos.esante.gouv.fr/NOS/JDV_J256-Pays/FHIR/JDV-J256-Pays
- https://mos.esante.gouv.fr/NOS/JDV_J257-Region/FHIR/JDV-J257-Region
- https://mos.esante.gouv.fr/NOS/JDV_J258-Departement/FHIR/JDV-J258-Departement
- https://mos.esante.gouv.fr/NOS/JDV_J26-ModeGestion-ROR/FHIR/JDV-J26-ModeGestion-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J262-Sexe/FHIR/JDV-J262-Sexe
- https://mos.esante.gouv.fr/NOS/JDV_J264-ModeEtCentreDePriseEnCharge-MDPH/FHIR/JDV-J264-ModeEtCentreDePriseEnCharge-MDPH
- https://mos.esante.gouv.fr/NOS/JDV_J265-RoleMembreCercleDeSoins-CISIS/FHIR/JDV-J265-RoleMembreCercleDeSoins-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J27-GroupeTarifaireDependance-ROR/FHIR/JDV-J27-GroupeTarifaireDependance-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J28-OuvertureAnnuelle-ROR/FHIR/JDV-J28-OuvertureAnnuelle-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J29-PublicPrisEnCharge-ROR/FHIR/JDV-J29-PublicPrisEnCharge-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J30-TemporaliteAccueil-ROR/FHIR/JDV-J30-TemporaliteAccueil-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J31-AideFinanciere-ROR/FHIR/JDV-J31-AideFinanciere-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J32-TypeHabitation-ROR/FHIR/JDV-J32-TypeHabitation-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J33-CompetenceSpecifique-ROR/FHIR/JDV-J33-CompetenceSpecifique-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J34-CategorieOrganisation-ROR/FHIR/JDV-J34-CategorieOrganisation-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J35-SpecialisationDePriseEnCharge-ROR/FHIR/JDV-J35-SpecialisationDePriseEnCharge-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J36-TypeTarif-ROR/FHIR/JDV-J36-TypeTarif-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J37-UcumUniteTemps/FHIR/JDV-J37-UcumUniteTemps
- https://mos.esante.gouv.fr/NOS/JDV_J38_ModeAcces-CISIS/FHIR/JDV-J38-ModeAcces-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J39-ConditionTarifaire-ROR/FHIR/JDV-J39-ConditionTarifaire-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J41-TypeHoraire-ROR/FHIR/JDV-J41-TypeHoraire-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J42-TypeMaternite-ROR/FHIR/JDV-J42-TypeMaternite-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J46-TypeEvenementNotification-CISIS/FHIR/JDV-J46-TypeEvenementNotification-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J47-FunctionCode-CISIS/FHIR/JDV-J47-FunctionCode-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J48-ProfessionNonPS-CISIS/FHIR/JDV-J48-ProfessionNonPS-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J49-UcumUniteLongueur/FHIR/JDV-J49-UcumUniteLongueur
- https://mos.esante.gouv.fr/NOS/JDV_J50-AccessibiliteLieu-ROR/FHIR/JDV-J50-AccessibiliteLieu-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J51-FamilleActiviteOperationnelle-ROR/FHIR/JDV-J51-FamilleActiviteOperationnelle-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J52-AvailabilityStatus-CISIS/FHIR/JDV-J52-AvailabilityStatus-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J53-TypeRequeteGestionDossier-CISIS/FHIR/JDV-J53-TypeRequeteGestionDossier-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J54-Profession-ROR/FHIR/JDV-J54-Profession-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J55-CategorieEG-ROR/FHIR/JDV-J55-CategorieEG-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J56-AuthorSpecialty-DMP/FHIR/JDV-J56-AuthorSpecialty-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J57-ClassCode-DMP/FHIR/JDV-J57-ClassCode-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J58-ConfidentialityCode-DMP/FHIR/JDV-J58-ConfidentialityCode-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J59-ContentTypeCode-DMP/FHIR/JDV-J59-ContentTypeCode-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J60-FormatCode-DMP/FHIR/JDV-J60-FormatCode-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J61-HealthcareFacilityTypeCode-DMP/FHIR/JDV-J61-HealthcareFacilityTypeCode-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J62-PracticeSettingCode-DMP/FHIR/JDV-J62-PracticeSettingCode-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J64-RestrictionAudienceVIHF-DMP/FHIR/JDV-J64-RestrictionAudienceVIHF-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J65-SubjectRole-DMP/FHIR/JDV-J65-SubjectRole-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J66-TypeCode-DMP/FHIR/JDV-J66-TypeCode-DMP
- https://mos.esante.gouv.fr/NOS/JDV_J67-TraitementDocument-CISIS/FHIR/JDV-J67-TraitementDocument-CISIS
- https://mos.esante.gouv.fr/NOS/JDV_J68-ProfilAccesReferentiel-ROR/FHIR/JDV-J68-ProfilAccesReferentiel-ROR
- https://mos.esante.gouv.fr/NOS/JDV_J69-ActiviteOperationnelle-Santefr/FHIR/JDV-J69-ActiviteOperationnelle-Santefr
- https://mos.esante.gouv.fr/NOS/JDV_J70-Equipement-Santefr/FHIR/JDV-J70-Equipement-Santefr
- https://mos.esante.gouv.fr/NOS/JDV_J71-ProfessionFonction-MSSante/FHIR/JDV-J71-ProfessionFonction-MSSante
- https://mos.esante.gouv.fr/NOS/JDV_J72-TypeProfessionFonction-MSSante/FHIR/JDV-J72-TypeProfessionFonction-MSSante
- https://mos.esante.gouv.fr/NOS/JDV_J73-MetierPharmacien-RASS/FHIR/JDV-J73-MetierPharmacien-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J74-Pays-RASS/FHIR/JDV-J74-Pays-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J75-TypeAutorisation-RASS/FHIR/JDV-J75-TypeAutorisation-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J76-DisciplineAutorisation-RASS/FHIR/JDV-J76-DisciplineAutorisation-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J77-TypeIdentifiantPersonne-RASS/FHIR/JDV-J77-TypeIdentifiantPersonne-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J78-Civilite-RASS/FHIR/JDV-J78-Civilite-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J79-CiviliteExercice-RASS/FHIR/JDV-J79-CiviliteExercice-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J80-Sexe-RASS/FHIR/JDV-J80-Sexe-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J81-TypeDiplome-RASS/FHIR/JDV-J81-TypeDiplome-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J82-Langue-RASS/FHIR/JDV-J82-Langue-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J83-AutoriteEnregistrement-RASS/FHIR/JDV-J83-AutoriteEnregistrement-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J84-DepartementOM-RASS/FHIR/JDV-J84-DepartementOM-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J85-StatutInscription-RASS/FHIR/JDV-J85-StatutInscription-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J86-NatCycleForm-RASS/FHIR/JDV-J86-NatCycleForm-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J87-NiveauFormAcquis-RASS/FHIR/JDV-J87-NiveauFormAcquis-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J88-AnneeUniversitaire-RASS/FHIR/JDV-J88-AnneeUniversitaire-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J89-CategorieProfessionnelle-RASS/FHIR/JDV-J89-CategorieProfessionnelle-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J90-AttributionParticuliere-RASS/FHIR/JDV-J90-AttributionParticuliere-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J91-TypeSavoirFaire-RASS/FHIR/JDV-J91-TypeSavoirFaire-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J92-MotifFinActivite-RASS/FHIR/JDV-J92-MotifFinActivite-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J93-RegionOM-RASS/FHIR/JDV-J93-RegionOM-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J94-GenreActivite-RASS/FHIR/JDV-J94-GenreActivite-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J95-ModeExercice-RASS/FHIR/JDV-J95-ModeExercice-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J96-TypeActiviteLiberale-RASS/FHIR/JDV-J96-TypeActiviteLiberale-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J97-StatutProfessionnelSSA-RASS/FHIR/JDV-J97-StatutProfessionnelSSA-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J98-StatutHospitalier-RASS/FHIR/JDV-J98-StatutHospitalier-RASS
- https://mos.esante.gouv.fr/NOS/JDV_J99-InseeNAFrav2Niveau5-RASS/FHIR/JDV-J99-InseeNAFrav2Niveau5-RASS
- https://mos.esante.gouv.fr/NOS/TRE_A00-ProducteurDocNonPS/FHIR/TRE-A00-ProducteurDocNonPS
- https://mos.esante.gouv.fr/NOS/TRE_A01-CadreExercice/FHIR/TRE-A01-CadreExercice
- https://mos.esante.gouv.fr/NOS/TRE_A02-ProfessionSavFaire-CISIS/FHIR/TRE-A02-ProfessionSavFaire-CISIS
- https://mos.esante.gouv.fr/NOS/TRE_A03-ClasseDocument/FHIR/TRE-A03-ClasseDocument
- https://mos.esante.gouv.fr/NOS/TRE_A05-TypeDocComplementaire/FHIR/TRE-A05-TypeDocComplementaire
- https://mos.esante.gouv.fr/NOS/TRE_A06-FormatCodeComplementaire/FHIR/TRE-A06-FormatCodeComplementaire
- https://mos.esante.gouv.fr/NOS/TRE_A07-StatutVisibiliteDocument/FHIR/TRE-A07-StatutVisibiliteDocument
- https://mos.esante.gouv.fr/NOS/TRE_A08-HL7Confidentiality/FHIR/TRE-A08-HL7Confidentiality
- https://mos.esante.gouv.fr/NOS/TRE_A09-DICOMuidRegistry/FHIR/TRE-A09-DICOMuidRegistry
- https://mos.esante.gouv.fr/NOS/TRE_A10-NomenclatureURN/FHIR/TRE-A10-NomenclatureURN
- https://mos.esante.gouv.fr/NOS/TRE_A11-IheFormatCode/FHIR/TRE-A11-IheFormatCode
- https://mos.esante.gouv.fr/NOS/TRE_A12-NomenclatureASTM/FHIR/TRE-A12-NomenclatureASTM
- https://mos.esante.gouv.fr/NOS/TRE_A13-HL7ParticipationType/FHIR/TRE-A13-HL7ParticipationType
- https://mos.esante.gouv.fr/NOS/TRE_G00-Langue/FHIR/TRE-G00-Langue
- https://mos.esante.gouv.fr/NOS/TRE_G01-CategorieProduit/FHIR/TRE-G01-CategorieProduit
- https://mos.esante.gouv.fr/NOS/TRE_G02-TypeProduit/FHIR/TRE-G02-TypeProduit
- https://mos.esante.gouv.fr/NOS/TRE_G03-CiviliteCPx/FHIR/TRE-G03-CiviliteCPx
- https://mos.esante.gouv.fr/NOS/TRE_G04-NiveauResponsabiliteCPx/FHIR/TRE-G04-NiveauResponsabiliteCPx
- https://mos.esante.gouv.fr/NOS/TRE_G05-SousSectionTableauCNOP/FHIR/TRE-G05-SousSectionTableauCNOP
- https://mos.esante.gouv.fr/NOS/TRE_G07-TypeIdentifiantStructure/FHIR/TRE-G07-TypeIdentifiantStructure
- https://mos.esante.gouv.fr/NOS/TRE_G08-TypeIdentifiantPersonne/FHIR/TRE-G08-TypeIdentifiantPersonne
- https://mos.esante.gouv.fr/NOS/TRE_G09-DepartementOM/FHIR/TRE-G09-DepartementOM
- https://mos.esante.gouv.fr/NOS/TRE_G100-Specialite-AM/FHIR/TRE-G100-Specialite-AM
- https://mos.esante.gouv.fr/NOS/TRE_G11-NatureQualificationADELI/FHIR/TRE-G11-NatureQualificationADELI
- https://mos.esante.gouv.fr/NOS/TRE_G12-SpecialiteADELI/FHIR/TRE-G12-SpecialiteADELI
- https://mos.esante.gouv.fr/NOS/TRE_G13-OrientationParticuliere/FHIR/TRE-G13-OrientationParticuliere
- https://mos.esante.gouv.fr/NOS/TRE_G15-ProfessionSante/FHIR/TRE-G15-ProfessionSante
- https://mos.esante.gouv.fr/NOS/TRE_G16-ProfessionFormation/FHIR/TRE-G16-ProfessionFormation
- https://mos.esante.gouv.fr/NOS/TRE_G17-ModeExerciceCPx/FHIR/TRE-G17-ModeExerciceCPx
- https://mos.esante.gouv.fr/NOS/TRE_G18-AttributionParticuliereADELI/FHIR/TRE-G18-AttributionParticuliereADELI
- https://mos.esante.gouv.fr/NOS/TRE_G19-SecteurActiviteADELI/FHIR/TRE-G19-SecteurActiviteADELI
- https://mos.esante.gouv.fr/NOS/TRE_G20-Specialisation/FHIR/TRE-G20-Specialisation
- https://mos.esante.gouv.fr/NOS/TRE_R01-EnsembleSavoirFaire-CISIS/FHIR/TRE-R01-EnsembleSavoirFaire-CISIS
- https://mos.esante.gouv.fr/NOS/TRE_R02-SecteurActivite/FHIR/TRE-R02-SecteurActivite
- https://mos.esante.gouv.fr/NOS/TRE_R03-AttributionParticuliere/FHIR/TRE-R03-AttributionParticuliere
- https://mos.esante.gouv.fr/NOS/TRE_R04-TypeSavoirFaire/FHIR/TRE-R04-TypeSavoirFaire
- https://mos.esante.gouv.fr/NOS/TRE_R06-SectionTableauCNOP/FHIR/TRE-R06-SectionTableauCNOP
- https://mos.esante.gouv.fr/NOS/TRE_R09-CategorieProfessionnelle/FHIR/TRE-R09-CategorieProfessionnelle
- https://mos.esante.gouv.fr/NOS/TRE_R10-SexeAdministratif/FHIR/TRE-R10-SexeAdministratif
- https://mos.esante.gouv.fr/NOS/TRE_R11-CiviliteExercice/FHIR/TRE-R11-CiviliteExercice
- https://mos.esante.gouv.fr/NOS/TRE_R13-Commune/FHIR/TRE-R13-Commune
- https://mos.esante.gouv.fr/NOS/TRE_R14-TypeDiplome/FHIR/TRE-R14-TypeDiplome
- https://mos.esante.gouv.fr/NOS/TRE_R16-LieuFormation/FHIR/TRE-R16-LieuFormation
- https://mos.esante.gouv.fr/NOS/TRE_R17-TypeAutorisation/FHIR/TRE-R17-TypeAutorisation
- https://mos.esante.gouv.fr/NOS/TRE_R18-DisciplineAutorisation/FHIR/TRE-R18-DisciplineAutorisation
- https://mos.esante.gouv.fr/NOS/TRE_R20-Pays/FHIR/TRE-R20-Pays
- https://mos.esante.gouv.fr/NOS/TRE_R200-CanalCommunication/FHIR/TRE-R200-CanalCommunication
- https://mos.esante.gouv.fr/NOS/TRE_R201-TypeDivisionTerritoriale/FHIR/TRE-R201-TypeDivisionTerritoriale
- https://mos.esante.gouv.fr/NOS/TRE_R202-AccessibiliteLieu/FHIR/TRE-R202-AccessibiliteLieu
- https://mos.esante.gouv.fr/NOS/TRE_R203-StatutLieu/FHIR/TRE-R203-StatutLieu
- https://mos.esante.gouv.fr/NOS/TRE_R204-DirectionLongitude/FHIR/TRE-R204-DirectionLongitude
- https://mos.esante.gouv.fr/NOS/TRE_R205-DirectionLatitude/FHIR/TRE-R205-DirectionLatitude
- https://mos.esante.gouv.fr/NOS/TRE_R206-TypeContact/FHIR/TRE-R206-TypeContact
- https://mos.esante.gouv.fr/NOS/TRE_R207-TypeOrganisationInterne/FHIR/TRE-R207-TypeOrganisationInterne
- https://mos.esante.gouv.fr/NOS/TRE_R208-ClasseAge/FHIR/TRE-R208-ClasseAge
- https://mos.esante.gouv.fr/NOS/TRE_R209-TypeActivite/FHIR/TRE-R209-TypeActivite
- https://mos.esante.gouv.fr/NOS/TRE_R21-Fonction/FHIR/TRE-R21-Fonction
- https://mos.esante.gouv.fr/NOS/TRE_R210-ActeSpecifique/FHIR/TRE-R210-ActeSpecifique
- https://mos.esante.gouv.fr/NOS/TRE_R211-ActiviteOperationnelle/FHIR/TRE-R211-ActiviteOperationnelle
- https://mos.esante.gouv.fr/NOS/TRE_R212-Equipement/FHIR/TRE-R212-Equipement
- https://mos.esante.gouv.fr/NOS/TRE_R213-ModePriseEnCharge/FHIR/TRE-R213-ModePriseEnCharge
- https://mos.esante.gouv.fr/NOS/TRE_R214-SpecialiteUnite/FHIR/TRE-R214-SpecialiteUnite
- https://mos.esante.gouv.fr/NOS/TRE_R215-UniteTemps/FHIR/TRE-R215-UniteTemps
- https://mos.esante.gouv.fr/NOS/TRE_R216-HL7RoleCode/FHIR/TRE-R216-HL7RoleCode
- https://mos.esante.gouv.fr/NOS/TRE_R217-ProtectionJuridique/FHIR/TRE-R217-ProtectionJuridique
- https://mos.esante.gouv.fr/NOS/TRE_R218-ModeAuthentification/FHIR/TRE-R218-ModeAuthentification
- https://mos.esante.gouv.fr/NOS/TRE_R219-AutreResponsableConsent/FHIR/TRE-R219-AutreResponsableConsent
- https://mos.esante.gouv.fr/NOS/TRE_R22-GenreActivite/FHIR/TRE-R22-GenreActivite
- https://mos.esante.gouv.fr/NOS/TRE_R220-ModeleDocumentCDAStructure/FHIR/TRE-R220-ModeleDocumentCDAStructure
- https://mos.esante.gouv.fr/NOS/TRE_R221-ModeleDocumentCDANonStructure/FHIR/TRE-R221-ModeleDocumentCDANonStructure
- https://mos.esante.gouv.fr/NOS/TRE_R221-ModeleDocumentCDANonStructure/FHIR/TRE-R221-ModeleDocumentCDANonStructure?vs
- https://mos.esante.gouv.fr/NOS/TRE_R222-MediaTypeCorpsCDANonStructure/FHIR/TRE-R222-MediaTypeCorpsCDANonStructure
- https://mos.esante.gouv.fr/NOS/TRE_R223-NatCycleForm/FHIR/TRE-R223-NatCycleForm
- https://mos.esante.gouv.fr/NOS/TRE_R224-NiveauFormAcquis/FHIR/TRE-R224-NiveauFormAcquis
- https://mos.esante.gouv.fr/NOS/TRE_R225-AnneeUniversitaire/FHIR/TRE-R225-AnneeUniversitaire
- https://mos.esante.gouv.fr/NOS/TRE_R226-Dip2iemeCycleNQ/FHIR/TRE-R226-Dip2iemeCycleNQ
- https://mos.esante.gouv.fr/NOS/TRE_R227-ChampActivite/FHIR/TRE-R227-ChampActivite
- https://mos.esante.gouv.fr/NOS/TRE_R228-UnitePrix/FHIR/TRE-R228-UnitePrix
- https://mos.esante.gouv.fr/NOS/TRE_R23-ModeExercice/FHIR/TRE-R23-ModeExercice
- https://mos.esante.gouv.fr/NOS/TRE_R230-Devise/FHIR/TRE-R230-Devise
- https://mos.esante.gouv.fr/NOS/TRE_R231-PalierAuthentification/FHIR/TRE-R231-PalierAuthentification
- https://mos.esante.gouv.fr/NOS/TRE_R232-TypeFermetureEJ/FHIR/TRE-R232-TypeFermetureEJ
- https://mos.esante.gouv.fr/NOS/TRE_R233-TypeFermetureEG/FHIR/TRE-R233-TypeFermetureEG
- https://mos.esante.gouv.fr/NOS/TRE_R234-TypeNote/FHIR/TRE-R234-TypeNote
- https://mos.esante.gouv.fr/NOS/TRE_R236-ModeGestion/FHIR/TRE-R236-ModeGestion
- https://mos.esante.gouv.fr/NOS/TRE_R237-GroupeTarifaireDependance/FHIR/TRE-R237-GroupeTarifaireDependance
- https://mos.esante.gouv.fr/NOS/TRE_R238-OuvertureAnnuelle/FHIR/TRE-R238-OuvertureAnnuelle
- https://mos.esante.gouv.fr/NOS/TRE_R239-PublicPrisEnCharge/FHIR/TRE-R239-PublicPrisEnCharge
- https://mos.esante.gouv.fr/NOS/TRE_R24-TypeActiviteLiberale/FHIR/TRE-R24-TypeActiviteLiberale
- https://mos.esante.gouv.fr/NOS/TRE_R240-TemporaliteAccueil/FHIR/TRE-R240-TemporaliteAccueil
- https://mos.esante.gouv.fr/NOS/TRE_R241-AideFinanciere/FHIR/TRE-R241-AideFinanciere
- https://mos.esante.gouv.fr/NOS/TRE_R242-TypeHabitation/FHIR/TRE-R242-TypeHabitation
- https://mos.esante.gouv.fr/NOS/TRE_R243-CompetenceSpecifique/FHIR/TRE-R243-CompetenceSpecifique
- https://mos.esante.gouv.fr/NOS/TRE_R244-CategorieOrganisation/FHIR/TRE-R244-CategorieOrganisation
- https://mos.esante.gouv.fr/NOS/TRE_R245-SpecialisationDePriseEnCharge/FHIR/TRE-R245-SpecialisationDePriseEnCharge
- https://mos.esante.gouv.fr/NOS/TRE_R246-TypeTarif/FHIR/TRE-R246-TypeTarif
- https://mos.esante.gouv.fr/NOS/TRE_R248_ModeAcces/FHIR/TRE-R248-ModeAcces
- https://mos.esante.gouv.fr/NOS/TRE_R249-Sexe/FHIR/TRE-R249-Sexe
- https://mos.esante.gouv.fr/NOS/TRE_R25-MotifFinActivite/FHIR/TRE-R25-MotifFinActivite
- https://mos.esante.gouv.fr/NOS/TRE_R250-ConditionTarifaire/FHIR/TRE-R250-ConditionTarifaire
- https://mos.esante.gouv.fr/NOS/TRE_R251-FonctionContact/FHIR/TRE-R251-FonctionContact
- https://mos.esante.gouv.fr/NOS/TRE_R252-TypeHoraire/FHIR/TRE-R252-TypeHoraire
- https://mos.esante.gouv.fr/NOS/TRE_R253-TypeMaternite/FHIR/TRE-R253-TypeMaternite
- https://mos.esante.gouv.fr/NOS/TRE_R254-TypeEvenement/FHIR/TRE-R254-TypeEvenement
- https://mos.esante.gouv.fr/NOS/TRE_R255-FluxStandardise/FHIR/TRE-R255-FluxStandardise
- https://mos.esante.gouv.fr/NOS/TRE_R256-TypeMessagerie/FHIR/TRE-R256-TypeMessagerie
- https://mos.esante.gouv.fr/NOS/TRE_R257-TypeBAL/FHIR/TRE-R257-TypeBAL
- https://mos.esante.gouv.fr/NOS/TRE_R258-RelationPriseCharge/FHIR/TRE-R258-RelationPriseCharge
- https://mos.esante.gouv.fr/NOS/TRE_R259-HL7ParticipationFunction/FHIR/TRE-R259-HL7ParticipationFunction
- https://mos.esante.gouv.fr/NOS/TRE_R260-HL7RoleClass/FHIR/TRE-R260-HL7RoleClass
- https://mos.esante.gouv.fr/NOS/TRE_R261-AutreSalarieStructureSante/FHIR/TRE-R261-AutreSalarieStructureSante
- https://mos.esante.gouv.fr/NOS/TRE_R262-CategorieSocioProfessionnelle/FHIR/TRE-R262-CategorieSocioProfessionnelle
- https://mos.esante.gouv.fr/NOS/TRE_R263-TypeNumeroIdentification/FHIR/TRE-R263-TypeNumeroIdentification
- https://mos.esante.gouv.fr/NOS/TRE_R264-PrestationNonObligatoireIncluse/FHIR/TRE-R264-PrestationNonObligatoireIncluse
- https://mos.esante.gouv.fr/NOS/TRE_R266-FamilleActiviteOperationnelleHorsSerafin/FHIR/TRE-R266-FamilleActiviteOperationnelleHorsSerafin
- https://mos.esante.gouv.fr/NOS/TRE_R267-SexeProvenanceISO/FHIR/TRE-R267-SexeProvenanceISO
- https://mos.esante.gouv.fr/NOS/TRE_R268-PaysProvenanceISO/FHIR/TRE-R268-PaysProvenanceISO
- https://mos.esante.gouv.fr/NOS/TRE_R269-AvailabilityStatusProvenanceOasis/FHIR/TRE-R269-AvailabilityStatusProvenanceOasis
- https://mos.esante.gouv.fr/NOS/TRE_R270-AvailabilityStatus/FHIR/TRE-R270-AvailabilityStatus
- https://mos.esante.gouv.fr/NOS/TRE_R271-TypeRequete/FHIR/TRE-R271-TypeRequete
- https://mos.esante.gouv.fr/NOS/TRE_R272-EquipementMaterielLourd/FHIR/TRE-R272-EquipementMaterielLourd
- https://mos.esante.gouv.fr/NOS/TRE_R274-ActiviteSanitaireRegulee/FHIR/TRE-R274-ActiviteSanitaireRegulee
- https://mos.esante.gouv.fr/NOS/TRE_R275-ModaliteActivite/FHIR/TRE-R275-ModaliteActivite
- https://mos.esante.gouv.fr/NOS/TRE_R276-FormeActivite/FHIR/TRE-R276-FormeActivite
- https://mos.esante.gouv.fr/NOS/TRE_R277-CategorieActiviteSanitaireRegulee/FHIR/TRE-R277-CategorieActiviteSanitaireRegulee
- https://mos.esante.gouv.fr/NOS/TRE_R278-FinessConvention/FHIR/TRE-R278-FinessConvention
- https://mos.esante.gouv.fr/NOS/TRE_R279-Clientele/FHIR/TRE-R279-Clientele
- https://mos.esante.gouv.fr/NOS/TRE_R280-DisciplineEquipementSocial/FHIR/TRE-R280-DisciplineEquipementSocial
- https://mos.esante.gouv.fr/NOS/TRE_R281-DisciplineEnseignement/FHIR/TRE-R281-DisciplineEnseignement
- https://mos.esante.gouv.fr/NOS/TRE_R282-CNAMAmeliSecteurConventionnement/FHIR/TRE-R282-CNAMAmeliSecteurConventionnement
- https://mos.esante.gouv.fr/NOS/TRE_R283-NiveauConfidentialite/FHIR/TRE-R283-NiveauConfidentialite
- https://mos.esante.gouv.fr/NOS/TRE_R284-NiveauRecoursORSAN/FHIR/TRE-R284-NiveauRecoursORSAN
- https://mos.esante.gouv.fr/NOS/TRE_R285-TraitementDocument/FHIR/TRE-R285-TraitementDocument
- https://mos.esante.gouv.fr/NOS/TRE_R286-TypeFermeture/FHIR/TRE-R286-TypeFermeture
- https://mos.esante.gouv.fr/NOS/TRE_R287-NatureContact/FHIR/TRE-R287-NatureContact
- https://mos.esante.gouv.fr/NOS/TRE_R288-TypeProfession/FHIR/TRE-R288-TypeProfession
- https://mos.esante.gouv.fr/NOS/TRE_R289-TypeFonction/FHIR/TRE-R289-TypeFonction
- https://mos.esante.gouv.fr/NOS/TRE_R290-RoleAdmTechSanitaireSocial/FHIR/TRE-R290-RoleAdmTechSanitaireSocial
- https://mos.esante.gouv.fr/NOS/TRE_R291-AutreProfession/FHIR/TRE-R291-AutreProfession
- https://mos.esante.gouv.fr/NOS/TRE_R292-INSEECategorieSocioProfessionnelleAgrNiv1/FHIR/TRE-R292-INSEECategorieSocioProfessionnelleAgrNiv1
- https://mos.esante.gouv.fr/NOS/TRE_R293-AgregatClienteleNiv2/FHIR/TRE-R293-AgregatClienteleNiv2
- https://mos.esante.gouv.fr/NOS/TRE_R294-AgregatClienteleNiv3/FHIR/TRE-R294-AgregatClienteleNiv3
- https://mos.esante.gouv.fr/NOS/TRE_R295-AgregatDisciplineEnseignNiv1/FHIR/TRE-R295-AgregatDisciplineEnseignNiv1
- https://mos.esante.gouv.fr/NOS/TRE_R296-AgregatDisciplineEnseignNiv2/FHIR/TRE-R296-AgregatDisciplineEnseignNiv2
- https://mos.esante.gouv.fr/NOS/TRE_R297-AgregatDisciplineEnseignNiv3/FHIR/TRE-R297-AgregatDisciplineEnseignNiv3
- https://mos.esante.gouv.fr/NOS/TRE_R298-AgregatDisciplineEquipSocNiv1/FHIR/TRE-R298-AgregatDisciplineEquipSocNiv1
- https://mos.esante.gouv.fr/NOS/TRE_R299-AgregatDisciplineEquipSocNiv2/FHIR/TRE-R299-AgregatDisciplineEquipSocNiv2
- https://mos.esante.gouv.fr/NOS/TRE_R30-RegionOM/FHIR/TRE-R30-RegionOM
- https://mos.esante.gouv.fr/NOS/TRE_R300-AgregatDisciplineEquipSocNiv3/FHIR/TRE-R300-AgregatDisciplineEquipSocNiv3
- https://mos.esante.gouv.fr/NOS/TRE_R301-SourceInformationInstallation/FHIR/TRE-R301-SourceInformationInstallation
- https://mos.esante.gouv.fr/NOS/TRE_R302-ContexteCodeComplementaire/FHIR/TRE-R302-ContexteCodeComplementaire
- https://mos.esante.gouv.fr/NOS/TRE_R303-HL7v3AdministrativeGender/FHIR/TRE-R303-HL7v3AdministrativeGender
- https://mos.esante.gouv.fr/NOS/TRE_R304-HL7v3ActCode/FHIR/TRE-R304-HL7v3ActCode
- https://mos.esante.gouv.fr/NOS/TRE_R305-TypeRencontre/FHIR/TRE-R305-TypeRencontre
- https://mos.esante.gouv.fr/NOS/TRE_R309-FMA/FHIR/TRE-R309-FMA
- https://mos.esante.gouv.fr/NOS/TRE_R31-StatutEtatCivil/FHIR/TRE-R31-StatutEtatCivil
- https://mos.esante.gouv.fr/NOS/TRE_R312-LPP/FHIR/TRE-R312-LPP
- https://mos.esante.gouv.fr/NOS/TRE_R314-TypeCreneau/FHIR/TRE-R314-TypeCreneau
- https://mos.esante.gouv.fr/NOS/TRE_R316-AutreCategorieEtablissement/FHIR/TRE-R316-AutreCategorieEtablissement
- https://mos.esante.gouv.fr/NOS/TRE_R317-SituationVieQuotidienne/FHIR/TRE-R317-SituationVieQuotidienne
- https://mos.esante.gouv.fr/NOS/TRE_R318-BesoinAideMobilite/FHIR/TRE-R318-BesoinAideMobilite
- https://mos.esante.gouv.fr/NOS/TRE_R319-BesoinAideVieSociales/FHIR/TRE-R319-BesoinAideVieSociale
- https://mos.esante.gouv.fr/NOS/TRE_R32-StatutHospitalier/FHIR/TRE-R32-StatutHospitalier
- https://mos.esante.gouv.fr/NOS/TRE_R320-BesoinCommunication/FHIR/TRE-R320-BesoinCommunication
- https://mos.esante.gouv.fr/NOS/TRE_R321-BesoinEntretienPersonnel/FHIR/TRE-R321-BesoinEntretienPersonnel
- https://mos.esante.gouv.fr/NOS/TRE_R322-BesoinMobilite/FHIR/TRE-R322-BesoinMobilite
- https://mos.esante.gouv.fr/NOS/TRE_R323-BesoinScolarite/FHIR/TRE-R323-BesoinScolarite
- https://mos.esante.gouv.fr/NOS/TRE_R324-BesoinSoutienProjetProfessionnel/FHIR/TRE-R324-BesoinSoutienProjetProfessionnel
- https://mos.esante.gouv.fr/NOS/TRE_R325-SituationProfessionnelle/FHIR/TRE-R325-SituationProfessionnelle
- https://mos.esante.gouv.fr/NOS/TRE_R326-SituationSansEmploi/FHIR/TRE-R326-SituationSansEmploi
- https://mos.esante.gouv.fr/NOS/TRE_R327-TypeDecision/FHIR/TRE-R327-TypeDecision
- https://mos.esante.gouv.fr/NOS/TRE_R328-TypeScolarisation/FHIR/TRE-R328-TypeScolarisation
- https://mos.esante.gouv.fr/NOS/TRE_R329-NatureCapacite/FHIR/TRE-R329-NatureCapacite
- https://mos.esante.gouv.fr/NOS/TRE_R33-StatutInscription/FHIR/TRE-R33-StatutInscription
- https://mos.esante.gouv.fr/NOS/TRE_R330-TypeStatutCapacite/FHIR/TRE-R330-TypeStatutCapacite
- https://mos.esante.gouv.fr/NOS/TRE_R331-TemporaliteCapacite/FHIR/TRE-R331-TemporaliteCapacite
- https://mos.esante.gouv.fr/NOS/TRE_R332-GenreCapacite/FHIR/TRE-R332-GenreCapacite
- https://mos.esante.gouv.fr/NOS/TRE_R333-TypeFermetureCapacite/FHIR/TRE-R333-TypeFermetureCapacite
- https://mos.esante.gouv.fr/NOS/TRE_R334-TypeLitSupplementaire/FHIR/TRE-R334-TypeLitSupplementaire
- https://mos.esante.gouv.fr/NOS/TRE_R335-TypeSourceCapacite/FHIR/TRE-R335-TypeSourceCapacite
- https://mos.esante.gouv.fr/NOS/TRE_R336-TypeCrise/FHIR/TRE-R336-TypeCrise
- https://mos.esante.gouv.fr/NOS/TRE_R337-AffectationTemporaire/FHIR/TRE-R337-AffectationTemporaire
- https://mos.esante.gouv.fr/NOS/TRE_R338-ModaliteAccueil/FHIR/TRE-R338-ModaliteAccueil
- https://mos.esante.gouv.fr/NOS/TRE_R34-StatutProfessionnelSSA/FHIR/TRE-R34-StatutProfessionnelSSA
- https://mos.esante.gouv.fr/NOS/TRE_R340-TypeCaracteristiqueEquipement/FHIR/TRE-R340-TypeCaracteristiqueEquipement
- https://mos.esante.gouv.fr/NOS/TRE_R341-StatutCommunication/FHIR/TRE-R341-StatutCommunication
- https://mos.esante.gouv.fr/NOS/TRE_R342-XdsTypesIdentifiantsReferenceId/FHIR/TRE-R342-XdsTypesIdentifiantsReferenceId
- https://mos.esante.gouv.fr/NOS/TRE_R343-FonctionLieu/FHIR/TRE-R343-FonctionLieu
- https://mos.esante.gouv.fr/NOS/TRE_R344-NiveauExpertise/FHIR/TRE-R344-NiveauExpertise
- https://mos.esante.gouv.fr/NOS/TRE_R345-TypeIdentifiantAutre/FHIR/TRE-R345-TypeIdentifiantAutre
- https://mos.esante.gouv.fr/NOS/TRE_R348-FormationSpecialiseeTransversale/FHIR/TRE-R348-FormationSpecialiseeTransversale
- https://mos.esante.gouv.fr/NOS/TRE_R349-ActionAnomalie/FHIR/TRE-R349-ActionAnomalie
- https://mos.esante.gouv.fr/NOS/TRE_R35-TypeVoie/FHIR/TRE-R35-TypeVoie
- https://mos.esante.gouv.fr/NOS/TRE_R350-ThematiqueAnomalie/FHIR/TRE-R350-ThematiqueAnomalie
- https://mos.esante.gouv.fr/NOS/TRE_R352-StatutMetierAnomalie/FHIR/TRE-R352-StatutMetierAnomalie
- https://mos.esante.gouv.fr/NOS/TRE_R354-TypeIdentifiantRessourceOperationnelle/FHIR/TRE-R354-TypeIdentifiantRessourceOperationnelle
- https://mos.esante.gouv.fr/NOS/TRE_R355-TypeIdentifiantOffre/FHIR/TRE-R355-TypeIdentifiantOffre
- https://mos.esante.gouv.fr/NOS/TRE_R356-ProfessionRessource/FHIR/TRE-R356-ProfessionRessource
- https://mos.esante.gouv.fr/NOS/TRE_R357-StatutPersonnePriseCharge/FHIR/TRE-R357-StatutPersonnePriseCharge
- https://mos.esante.gouv.fr/NOS/TRE_R358-MotifStatutPersonnePriseCharge/FHIR/TRE-R358-MotifStatutPersonnePriseCharge
- https://mos.esante.gouv.fr/NOS/TRE_R359-SurspecialiteTransversale/FHIR/TRE-R359-SurspecialiteTransversale
- https://mos.esante.gouv.fr/NOS/TRE_R36-AutreDiplomeObtenu/FHIR/TRE-R36-AutreDiplomeObtenu
- https://mos.esante.gouv.fr/NOS/TRE_R37-TypeProfessionFonction/FHIR/TRE-R37-TypeProfessionFonction
- https://mos.esante.gouv.fr/NOS/TRE_R38-SpecialiteOrdinale/FHIR/TRE-R38-SpecialiteOrdinale
- https://mos.esante.gouv.fr/NOS/TRE_R39-Competence/FHIR/TRE-R39-Competence
- https://mos.esante.gouv.fr/NOS/TRE_R40-CompetenceExclusive/FHIR/TRE-R40-CompetenceExclusive
- https://mos.esante.gouv.fr/NOS/TRE_R42-DESCnonQualifiant/FHIR/TRE-R42-DESCnonQualifiant
- https://mos.esante.gouv.fr/NOS/TRE_R43-CapaciteSavoirFaire/FHIR/TRE-R43-CapaciteSavoirFaire
- https://mos.esante.gouv.fr/NOS/TRE_R44-QualificationPAC/FHIR/TRE-R44-QualificationPAC
- https://mos.esante.gouv.fr/NOS/TRE_R45-FonctionQualifiee/FHIR/TRE-R45-FonctionQualifiee
- https://mos.esante.gouv.fr/NOS/TRE_R46-SpecialiteConcoursHospitalier/FHIR/TRE-R46-SpecialiteConcoursHospitalier
- https://mos.esante.gouv.fr/NOS/TRE_R48-DiplomeEtatFrancais/FHIR/TRE-R48-DiplomeEtatFrancais
- https://mos.esante.gouv.fr/NOS/TRE_R49-DiplomeEtudeSpecialisee/FHIR/TRE-R49-DiplomeEtudeSpecialisee
- https://mos.esante.gouv.fr/NOS/TRE_R50-DESCGroupe1Diplome/FHIR/TRE-R50-DESCGroupe1Diplome
- https://mos.esante.gouv.fr/NOS/TRE_R51-DESCGroupe2Diplome/FHIR/TRE-R51-DESCGroupe2Diplome
- https://mos.esante.gouv.fr/NOS/TRE_R52-CapaciteDiplome/FHIR/TRE-R52-CapaciteDiplome
- https://mos.esante.gouv.fr/NOS/TRE_R53-DiplomePaysEEE/FHIR/TRE-R53-DiplomePaysEEE
- https://mos.esante.gouv.fr/NOS/TRE_R54-DiplomeUniversiteInterUniversitaire/FHIR/TRE-R54-DiplomeUniversiteInterUniversitaire
- https://mos.esante.gouv.fr/NOS/TRE_R55-CertificatEtudeSpeciale/FHIR/TRE-R55-CertificatEtudeSpeciale
- https://mos.esante.gouv.fr/NOS/TRE_R56-Attestation/FHIR/TRE-R56-Attestation
- https://mos.esante.gouv.fr/NOS/TRE_R57-DiplomeEuropeenEtudeSpecialisee/FHIR/TRE-R57-DiplomeEuropeenEtudeSpecialisee
- https://mos.esante.gouv.fr/NOS/TRE_R58-AutreTypeDiplome/FHIR/TRE-R58-AutreTypeDiplome
- https://mos.esante.gouv.fr/NOS/TRE_R60-AutoriteEnregistrement/FHIR/TRE-R60-AutoriteEnregistrement
- https://mos.esante.gouv.fr/NOS/TRE_R62-Domaine/FHIR/TRE-R62-Domaine
- https://mos.esante.gouv.fr/NOS/TRE_R63-AgregatCategorieEtablissementNiv1/FHIR/TRE-R63-AgregatCategorieEtablissementNiv1
- https://mos.esante.gouv.fr/NOS/TRE_R64-AgregatCategorieEtablissementNiv2/FHIR/TRE-R64-AgregatCategorieEtablissementNiv2
- https://mos.esante.gouv.fr/NOS/TRE_R65-AgregatCategorieEtablissement/FHIR/TRE-R65-AgregatCategorieEtablissement
- https://mos.esante.gouv.fr/NOS/TRE_R66-CategorieEtablissement/FHIR/TRE-R66-CategorieEtablissement
- https://mos.esante.gouv.fr/NOS/TRE_R67-TypeStructure-EJ-EG/FHIR/TRE-R67-TypeStructure-EJ-EG
- https://mos.esante.gouv.fr/NOS/TRE_R68-FinessAgregatStatutJuridiqueNiv1/FHIR/TRE-R68-FinessAgregatStatutJuridiqueNiv1
- https://mos.esante.gouv.fr/NOS/TRE_R69-FinessAgregatStatutJuridiqueNiv2/FHIR/TRE-R69-FinessAgregatStatutJuridiqueNiv2
- https://mos.esante.gouv.fr/NOS/TRE_R70-FinessAgregatStatutJuridique/FHIR/TRE-R70-FinessAgregatStatutJuridique
- https://mos.esante.gouv.fr/NOS/TRE_R72-FinessStatutJuridique/FHIR/TRE-R72-FinessStatutJuridique
- https://mos.esante.gouv.fr/NOS/TRE_R73-ESPIC/FHIR/TRE-R73-ESPIC
- https://mos.esante.gouv.fr/NOS/TRE_R74-ModeFixationTarifaire/FHIR/TRE-R74-ModeFixationTarifaire
- https://mos.esante.gouv.fr/NOS/TRE_R75-InseeNAFrev2Niveau5/FHIR/TRE-R75-InseeNAFrev2Niveau5
- https://mos.esante.gouv.fr/NOS/TRE_R78-ProfilAccesReferentiel/FHIR/TRE-R78-ProfilAccesReferentiel
- https://mos.esante.gouv.fr/NOS/TRE_R81-Civilite/FHIR/TRE-R81-Civilite
- https://mos.esante.gouv.fr/NOS/TRE_R82-Ordre/FHIR/TRE-R82-Ordre
- https://mos.esante.gouv.fr/NOS/TRE_R84-ProfilAccesAnnuaire-MSSante/FHIR/TRE-R84-ProfilAccesAnnuaire-MSSante
- https://mos.esante.gouv.fr/NOS/TRE_R85-RolePriseCharge/FHIR/TRE-R85-RolePriseCharge
- https://mos.esante.gouv.fr/NOS/TRE_R86-ProfilVIHF/FHIR/TRE-R86-ProfilVIHF
- https://mos.esante.gouv.fr/NOS/TRE_R87-TypeCarte/FHIR/TRE-R87-TypeCarte
- https://mos.esante.gouv.fr/NOS/TRE_R88-TerritoireSante/FHIR/TRE-R88-TerritoireSante
- https://mos.esante.gouv.fr/NOS/TRE_R89-RegroupementPays/FHIR/TRE-R89-RegroupementPays
- https://mos.esante.gouv.fr/NOS/TRE_R90-TypeAE/FHIR/TRE-R90-TypeAE
- https://mos.esante.gouv.fr/NOS/TRE_R94-ProfessionSocial/FHIR/TRE-R94-ProfessionSocial
- https://mos.esante.gouv.fr/NOS/TRE_R95-UsagerTitre/FHIR/TRE-R95-UsagerTitre
- https://mos.esante.gouv.fr/NOS/TRE_R96-AutreFonctionSanitaire/FHIR/TRE-R96-AutreFonctionSanitaire
- https://mos.esante.gouv.fr/NOS/TRE_R97-DroitExerciceCompl/FHIR/TRE-R97-DroitExerciceCompl
- https://smt.esante.gouv.fr/fhir/CodeSystem/1.2.250.1.213.1.1.4.322
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.1
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.10
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.11
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.12
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.13
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.14
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.15
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.16
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.17
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.18
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.19
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.2
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.20
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.1
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.13
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.16
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.17
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.2
- https://smt.esante.gouv.fr/fhir/ValueSet/1.2.250.1.213.1.1.4.2.281.21