|
| 1 | +### Liste des profils |
| 2 | + |
| 3 | +Cette page contient la liste des profils FHIR définis dans le guide **ANS IG Document Core**, utilisés pour l'implémentation de la partie corps des documents médicaux et médico-sociaux. |
| 4 | + |
| 5 | +{% sql { |
| 6 | + "query": " |
| 7 | + SELECT title AS Title, Description, Web |
| 8 | + FROM Resources |
| 9 | + WHERE Type = 'StructureDefinition' |
| 10 | + AND ( |
| 11 | + Title LIKE 'Observation%' |
| 12 | + OR Title LIKE 'Condition%' |
| 13 | + OR Title LIKE 'Specimen%' |
| 14 | + OR Title LIKE 'Encounter%' |
| 15 | + OR Title LIKE 'Device%' |
| 16 | + OR Title LIKE 'Procedure%' |
| 17 | + OR Title LIKE 'Medication%' |
| 18 | + OR Title LIKE 'MedicationAdministration%' |
| 19 | + OR Title LIKE 'MedicationRequest%' |
| 20 | + OR Title LIKE 'AllergyIntolerance%' |
| 21 | + OR Title LIKE 'MedicationDispense%' |
| 22 | + OR Title LIKE 'ServiceRequest%' |
| 23 | + OR Title LIKE 'Endpoint%' |
| 24 | + OR Title LIKE 'CarePlan%' |
| 25 | + OR Title LIKE 'Annotation%' |
| 26 | + OR Title LIKE 'DocumentReference%' |
| 27 | + OR Title LIKE 'FamilyMemberHistory%' |
| 28 | + OR Title LIKE 'Consent%' |
| 29 | + OR Title LIKE 'QuestionnaireResponse%' |
| 30 | + OR Title LIKE 'AdverseEvent%' |
| 31 | + OR Title LIKE 'DeviceRequest%' |
| 32 | + OR Title LIKE 'DeviceUseStatement%' |
| 33 | + OR Title LIKE 'DiagnosticReport%' |
| 34 | + ) |
| 35 | + ", |
| 36 | + "class": "lines", |
| 37 | + "columns": [ |
| 38 | + { "title": "Titre du profil", "type": "link", "source": "Title", "target": "Web" }, |
| 39 | + { "title": "Description", "type": "markdown", "source": "Description" } |
| 40 | + ] |
| 41 | +} %} |
0 commit comments