fhirsmith 0.9.7 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,133 +0,0 @@
1
- {
2
- "resourceType": "OperationDefinition",
3
- "id": "ValueSet-related",
4
- "url": "http://hl7.org/fhir/OperationDefinition/ValueSet-related",
5
- "version": "5.0.0",
6
- "name": "ValueSetRelated",
7
- "title": "Value Set Related Determination",
8
- "status": "active",
9
- "kind": "operation",
10
- "experimental": false,
11
- "date": "2023-03-26T15:21:02+11:00",
12
- "publisher": "FHIRsmith",
13
- "description": "Determine the relationship between two value sets. Different versions of code systems are considered compatible unless versionNeeded = true for the code system",
14
- "jurisdiction": [
15
- {
16
- "coding": [
17
- {
18
- "system": "http://unstats.un.org/unsd/methods/m49/m49.htm",
19
- "code": "001",
20
- "display": "World"
21
- }
22
- ]
23
- }
24
- ],
25
- "affectsState": false,
26
- "code": "related",
27
- "comment": "An $expand will be performed internally if needed.",
28
- "resource": [
29
- "ValueSet"
30
- ],
31
- "system": false,
32
- "type": true,
33
- "instance": false,
34
- "parameter": [
35
- {
36
- "name": "thisUrl",
37
- "use": "in",
38
- "scope": [
39
- "type"
40
- ],
41
- "min": 0,
42
- "max": "1",
43
- "documentation": "Value set Canonical URL for the first value set of the pair (the base). The server must know the value set (e.g. it is provided as an attached resource, it is defined explicitly in the server's value sets, or it is defined implicitly by some code system known to the server",
44
- "type": "uri"
45
- },
46
- {
47
- "name": "otherUrl",
48
- "use": "in",
49
- "scope": [
50
- "type"
51
- ],
52
- "min": 0,
53
- "max": "1",
54
- "documentation": "Value set Canonical URL for the second value set of the pair (the one being compared to base). The server must know the value set (e.g. it is provided as an attached resource, it is defined explicitly in the server's value sets, or it is defined implicitly by some code system known to the server",
55
- "type": "uri"
56
- },
57
- {
58
- "name": "thisValueSet",
59
- "use": "in",
60
- "scope": [
61
- "type"
62
- ],
63
- "min": 0,
64
- "max": "1",
65
- "documentation": "The first value set is provided directly as part of the request. Servers may choose not to accept value sets in this fashion. This parameter is used when the client wants the server to expand a value set that is not stored on the server",
66
- "type": "ValueSet"
67
- },
68
- {
69
- "name": "otherValueSet",
70
- "use": "in",
71
- "scope": [
72
- "type"
73
- ],
74
- "min": 0,
75
- "max": "1",
76
- "documentation": "The other value set is provided directly as part of the request. Servers may choose not to accept value sets in this fashion. This parameter is used when the client wants the server to expand a value set that is not stored on the server",
77
- "type": "ValueSet"
78
- },
79
- {
80
- "name": "thisVersion",
81
- "use": "in",
82
- "scope": [
83
- "type"
84
- ],
85
- "min": 0,
86
- "max": "1",
87
- "documentation": "The identifier that is used to identify a specific version of the value set to be used when validating the code. This is an arbitrary value managed by the value set author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available.",
88
- "type": "string"
89
- },
90
- {
91
- "name": "otherVersion",
92
- "use": "in",
93
- "scope": [
94
- "type"
95
- ],
96
- "min": 0,
97
- "max": "1",
98
- "documentation": "The identifier that is used to identify a specific version of the value set to be used when validating the code. This is an arbitrary value managed by the value set author and is not expected to be globally unique. For example, it might be a timestamp (e.g. yyyymmdd) if a managed version is not available.",
99
- "type": "string"
100
- },
101
- {
102
- "name": "useSupplement",
103
- "use": "in",
104
- "min": 0,
105
- "max": "*",
106
- "documentation": "The supplement must be used when validating the code. Use of this parameter should result in $validate-code behaving the same way as if the supplements were included in the value set definition using the [http://hl7.org/fhir/StructureDefinition/valueset-supplement](http://hl7.org/fhir/extensions/StructureDefinition-valueset-supplement.html)",
107
- "type": "canonical"
108
- },
109
- {
110
- "name": "diagnostics",
111
- "use": "in",
112
- "min": 0,
113
- "max": "1",
114
- "documentation": "Whether to return information about the reasoning process"
115
- },
116
- {
117
- "name": "result",
118
- "use": "out",
119
- "min": 1,
120
- "max": "1",
121
- "documentation": "The relationship between the ValueSets. One of: same, superset, subset, overlapping, dsjoint, empty, and indeterminate",
122
- "type": "boolean"
123
- },
124
- {
125
- "name": "message",
126
- "use": "out",
127
- "min": 0,
128
- "max": "1",
129
- "documentation": "Explanation of the code, with reason if appropriate",
130
- "type": "string"
131
- }
132
- ]
133
- }