Skip to content

Commit

Permalink
Rename to UAB
Browse files Browse the repository at this point in the history
  • Loading branch information
jmandel committed Jan 26, 2024
1 parent 7791140 commit d6889c7
Show file tree
Hide file tree
Showing 19 changed files with 145 additions and 145 deletions.
10 changes: 5 additions & 5 deletions input/includes/fsh-link-references.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[PatientAccessBrandsBundle]: StructureDefinition-patient-access-brands-bundle.html
[PatientAccessBrand]: StructureDefinition-patient-access-brand.html
[PatientAccessEndpoint]: StructureDefinition-patient-access-endpoint.html
[PatientAccessCategoryCodeSystem]: CodeSystem-patient-access-category.html
[PatientAccessCategoryValueSet]: ValueSet-patient-access-category.html
[UserAccessBrandsBundle]: StructureDefinition-user-access-brands-bundle.html
[UserAccessBrand]: StructureDefinition-user-access-brand.html
[UserAccessEndpoint]: StructureDefinition-user-access-endpoint.html
[UserAccessCategoryCodeSystem]: CodeSystem-user-access-category.html
[UserAccessCategoryValueSet]: ValueSet-user-access-category.html
[example1]: Bundle-example1.html
[example2]: Bundle-example2.html
[example3]: Bundle-example3.html
Expand Down
4 changes: 2 additions & 2 deletions input/includes/menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@
</a>
<ul class="dropdown-menu">
<li>
<a href="brands.html">Patient-Access Brands and Endpoints</a>
<a href="brands.html">User-Access Brands and Endpoints</a>
</li>
<li>
<a href="example-brands.html">Patient-Access Brand Examples</a>
<a href="example-brands.html">User-Access Brand Examples</a>
</li>
</ul>
</li><li class="dropdown">
Expand Down
2 changes: 1 addition & 1 deletion input/includes/note-to-balloters.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

In this ballot:

* We have added support for [Patient Access Brands](./brands.html)
* We have added support for [User Access Brands](./brands.html)
* We have enhanced support for launch context, adding the ability to
* Supply launch context by [canonical URL or Identifier](./scopes-and-launch-context.html#fhir-context), in addition to Relative URL
* Request launch context [with a specific role](scopes-and-launch-context.html#standalone-apps)
Expand Down
78 changes: 39 additions & 39 deletions input/pages/brands.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions input/pages/conformance.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ A JSON document must be returned using the `application/json` mime type.
- `token_endpoint_auth_methods_supported`: **OPTIONAL**, array of client authentication methods supported by the token endpoint. The options are "client_secret_post", "client_secret_basic", and "private_key_jwt".
- `registration_endpoint`: **OPTIONAL**, If available, URL to the OAuth2 dynamic registration endpoint for this FHIR server.
- `smart_app_state_endpoint`: **CONDITIONAL**, URL to the EHR's app state endpoint. SHALL be present when the EHR supports the `smart-app-state` capability and the endpoint is distinct from the EHR's primary endpoint.
- `patientAccessBrandBundle`: **RECOMMENDED**, URL for a Brand Bundle. See [Patient Access Brands](brands.html).
- `patientAccessBrandIdentifier`: **RECOMMENDED**, Identifier for the primary entry in a Brand Bundle. See [Patient Access Brands](brands.html).
- `userAccessBrandBundle`: **RECOMMENDED**, URL for a Brand Bundle. See [User Access Brands](brands.html).
- `userAccessBrandIdentifier`: **RECOMMENDED**, Identifier for the primary entry in a Brand Bundle. See [User Access Brands](brands.html).
- `scopes_supported`: **RECOMMENDED**, Array of scopes a client may request. See [scopes and launch context](scopes-and-launch-context.html#quick-start). The server SHALL support all scopes listed here; additional scopes MAY be supported (so clients should not consider this an exhaustive list).
- `response_types_supported`: **RECOMMENDED**, Array of OAuth2 `response_type` values that are supported. Implementers can refer to `response_type`s defined in OAuth 2.0 ([RFC 6749](https://datatracker.ietf.org/doc/html/rfc6749)) and in [OIDC Core](https://openid.net/specs/openid-connect-core-1_0.html#Authentication).
- `management_endpoint`: **RECOMMENDED**, URL where an end-user can view which applications currently have access to data and can make adjustments to these access rights.
Expand Down
4 changes: 2 additions & 2 deletions input/pages/example-brands.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ Nearest location: 1 mile (Madison)

The FHIR server's `.well-known/smart-configuration` file would include a link like

"patientAccessBrands": "https://labs.example.com/branding.json"
"userAccessBrands": "https://labs.example.com/branding.json"

And the hosted Patient Access Brands Bundle file would look like:
And the hosted User Access Brands Bundle file would look like:

[Raw JSON](Bundle-example1.json)

Expand Down
2 changes: 1 addition & 1 deletion input/pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SMART uses a language of "scopes" to define specific access permissions that can

SMART defines a Token Introspection API allowing Resource Servers or software components to understand the scopes, users, patients, and other context associated with access tokens. This pattern allows a looser coupling between Resource Servers and Authorization Servers.

### [Patient-Access Brands](brands.html)
### [User-Access Brands](brands.html)

SMART defines a publication format for API providers to make branding information available to patient-facing apps. This helps apps offer a "connect to my records" UX where providers appear with the names, logos, and descriptions they choose.

Expand Down
2 changes: 1 addition & 1 deletion input/resources/Bundle-example1.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
{
"coding": [
{
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"code": "laboratory",
"display": "Laboratory"
}
Expand Down
6 changes: 3 additions & 3 deletions input/resources/Bundle-example2.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"coding": [
{
"code": "clinical",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"display": "Clinical"
}
]
Expand Down Expand Up @@ -160,7 +160,7 @@
"coding": [
{
"code": "clinical",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"display": "Clinical"
}
]
Expand Down Expand Up @@ -215,7 +215,7 @@
"coding": [
{
"code": "clinical",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"display": "Clinical"
}
]
Expand Down
2 changes: 1 addition & 1 deletion input/resources/Bundle-example3.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"coding": [
{
"code": "clinical",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"display": "Clinical"
}
]
Expand Down
4 changes: 2 additions & 2 deletions input/resources/Bundle-example4.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
{
"coding": [
{
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"code": "insurance",
"display": "Insurance"
}
Expand Down Expand Up @@ -129,7 +129,7 @@
{
"coding": [
{
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"code": "insurance",
"display": "Insurance"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"resourceType": "CodeSystem",
"status": "active",
"content": "complete",
"name": "PatientAccessCategoryCodeSystem",
"id": "patient-access-category",
"title": "Patient Access Category Code System",
"description": "Categorizes a PatientAccessBrand into high-level taxonomy",
"url": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"name": "UserAccessCategoryCodeSystem",
"id": "user-access-category",
"title": "User Access Category Code System",
"description": "Categorizes a UserAccessBrand into high-level taxonomy",
"url": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"concept": [
{
"code": "clinical",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
"grouping": [
{
"id": "PABProfiles",
"name": "Patient Access Brands",
"description": "Helping patients find and connect to the right API endpoints, by enabling publication of branding information for API providers, portals, and endpoints.\n\nFor an overview, see [Patient Access Brands](brands.html)."
"name": "User Access Brands",
"description": "Helping patients find and connect to the right API endpoints, by enabling publication of branding information for API providers, portals, and endpoints.\n\nFor an overview, see [User Access Brands](brands.html)."
},
{
"id": "PAB",
"name": "Patient Access Brand Examples",
"description": "The following examples demonstrate use of Patient Access Brands. See [example-brands](./example-brands.html) for a guided tour."
"name": "User Access Brand Examples",
"description": "The following examples demonstrate use of User Access Brands. See [example-brands](./example-brands.html) for a guided tour."
},
{
"id": "SMARTAppState",
Expand All @@ -74,44 +74,44 @@
"resource": [
{
"reference": {
"reference": "StructureDefinition/patient-access-brands-bundle"
"reference": "StructureDefinition/user-access-brands-bundle"
},
"name": "Patient Access Brands Bundle Profile",
"name": "User Access Brands Bundle Profile",
"description": "FHIR Bundle of Organizations and Endpoints that is hosted at a stable, publicly available location",
"exampleBoolean": false,
"groupingId": "PABProfiles"
},
{
"reference": {
"reference": "StructureDefinition/patient-access-brand"
"reference": "StructureDefinition/user-access-brand"
},
"name": "Patient Access Brand (Organization) Profile",
"description": "Profile on Organization to convey a Patient Access Brand",
"name": "User Access Brand (Organization) Profile",
"description": "Profile on Organization to convey a User Access Brand",
"exampleBoolean": false,
"groupingId": "PABProfiles"
},
{
"reference": {
"reference": "StructureDefinition/patient-access-endpoint"
"reference": "StructureDefinition/user-access-endpoint"
},
"name": "Patient Access Endpoint Profile",
"description": "Profile on Endpoint associated with a Patient Access Brand",
"name": "User Access Endpoint Profile",
"description": "Profile on Endpoint associated with a User Access Brand",
"exampleBoolean": false,
"groupingId": "PABProfiles"
},
{
"reference": {
"reference": "CodeSystem/patient-access-category"
"reference": "CodeSystem/user-access-category"
},
"name": "Patient Access Category Code System",
"name": "User Access Category Code System",
"exampleBoolean": false,
"groupingId": "PABProfiles"
},
{
"reference": {
"reference": "ValueSet/patient-access-category"
"reference": "ValueSet/user-access-category"
},
"name": "Patient Access Category Value Set",
"name": "User Access Category Value Set",
"exampleBoolean": false,
"groupingId": "PABProfiles"
},
Expand All @@ -120,47 +120,47 @@
"reference": "Bundle/example1"
},
"name": "Lab with Locations Nationwide",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/patient-access-brands-bundle",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/user-access-brands-bundle",
"groupingId": "PAB"
},
{
"reference": {
"reference": "Bundle/example2"
},
"name": "Regional Health System With Independently Branded Affiliates",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/patient-access-brands-bundle",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/user-access-brands-bundle",
"groupingId": "PAB"
},
{
"reference": {
"reference": "Bundle/example3"
},
"name": "Different EHRs for different sub-populations displayed in a unified card",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/patient-access-brands-bundle",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/user-access-brands-bundle",
"groupingId": "PAB"
},
{
"reference": {
"reference": "Bundle/example4"
},
"name": "Two co-equal brands",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/patient-access-brands-bundle",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/user-access-brands-bundle",
"groupingId": "PAB"
},
{
"reference": {
"reference": "Organization/example"
},
"name": "Example Brand",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/patient-access-brand",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/user-access-brand",
"groupingId": "PAB"
},
{
"reference": {
"reference": "Endpoint/example"
},
"name": "Example Endpoint",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/patient-access-endpoint",
"exampleCanonical": "http://hl7.org/fhir/smart-app-launch/StructureDefinition/user-access-endpoint",
"groupingId": "PAB"
},
{
Expand Down Expand Up @@ -324,12 +324,12 @@
},
{
"nameUrl": "brands.html",
"title": "Patient-Access Brands and Endpoints",
"title": "User-access Brands and Endpoints",
"generation": "markdown",
"page": [
{
"nameUrl": "example-brands.html",
"title": "Patient-Access Brand Examples",
"title": "User-access Brand Examples",
"generation": "markdown"
}
]
Expand Down
2 changes: 1 addition & 1 deletion input/resources/Organization-example.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"coding": [
{
"code": "clinical",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category",
"system": "http://hl7.org/fhir/smart-app-launch/CodeSystem/user-access-category",
"display": "Clinical"
}
]
Expand Down
Loading

0 comments on commit d6889c7

Please sign in to comment.