Expand | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
|
...
Koppeltaal maakt gebruik van een FHIR resource service. Deze service kan middels de FHIR RESTful API specificaties benaderd worden. Applicaties in een domein (applicatie-instanties) kunnen na authenticatie toegestane acties uitvoeren op de FHIR resource service. Geautoriseerde applicatie-instanties kunnen vervolgens deze informatie ophalen en waar nodig (en mogelijk) bijwerken. De resources dienen op een eenduidige manier aangemaakt en uitgewisseld te worden. Zo kunnen applicaties in het domein goed samenwerken. Ook moeten er uitbreidingen op de standaard gemaakt worden om bijvoorbeeld geautomatiseerd te voldoen aan wetgeving.
...
De StructureDefinition
resources dienen door de FHIR resource service ingeladen te worden. Applicatie-instanties mogen deze niet zelf aanmaken of bewerken.
Validatie
Zie TOP-KT-010 voor meer informatie over de validatie.
...
Instance Level Interactions | Ondersteund | Remark | |
---|---|---|---|
read | Read the current state of the resource | ✓ | |
conditional read | Read the current state of the resource if modified since of matches ETag | ✓ | |
vread | Read the state of a specific version of the resource | ✓ | |
update | Update an existing resource by its id (or create it if it is new) | ⚠ | If-Match header verplicht |
conditional update | Allows a client to update an existing resource based on some identification criteria | ⚠ | Trial use fase |
patch | Update an existing resource by posting a set of changes to it | ✗ | Wordt mogelijk in een toekomstige versie toegevoegd |
conditional patch | Allows a client to patch an existing resource based on some identification criteria | ✗ | |
delete | Delete a resource | ⚠ | Bij voorkeur gebruik maken van een end-of-life status i.p.v. een delete |
conditional delete | Allows a client to delete an existing resource based on some selection criteria | ⚠ | Trial use fase |
history | Retrieve the change history for a particular resource | ✓ | |
Type Level Interactions | Ondersteund | Remark | |
create | Create a new resource with a server assigned id | ✓ | |
conditional create | Allows a client to create a new resource only if some equivalent resource does not already exist on the server. | ⚠ | Trial use fase |
search | Search the resource type based on some filter criteria | ⚠ | Zie ondersteunde search result parameters |
search paging | Support paging for the results of a search or history interaction | ✓ | |
history | Retrieve the change history for a particular resource type | ✓ | |
Whole System Interactions | Ondersteund | Remark | |
capabilities | Get a capability statement for the system | ✓ | |
batch/transaction | Update, create or delete a set of resources in a single interaction (FHIR Bundle) | ✗ | |
history | Retrieve the change history for all resources | ✗ | |
search | Search across all resource types based on some filter criteria | ✗ |
...
Van tekst in zowel XML als JSON dienen bepaalde tekens specifiek geëncodeerd te worden. Dit heeft te maken met het specifiek formaat en is onderdeel van de specificatie van het formaat. Het wordt in Koppeltaal sterk aangeraden gebruik te maken van utf-8
als het gaat op speciale tekens (é, ö, ï) en NIET van formaat specifieke escapes (é, ö ï), XML unicode references (�C9 , �D6 �EF;) of JSON unicode reference (\u00C9, \u00D6, \u00EF).
Xml Syntax
De xml syntax wordt hier beschreven. Praktisch zijn de volgende escapes van toepassing:
...