Organization

This data model allows you to retrieve information about organizations from a clinical network (e.g., Carequality Interoperability Framework) or an EHR-maintained list. The most common use case is to see a list of available organizations to query via the Carequality Framework.

This data model has event types that allow you to:

  • create a new or update an existing organization record; or
  • query for and receive organization records.

QueryResponse

Receive organization details, along with its OID, based on the query parameters defined in Organization.Query.

Beta

Request Body Schema

  • Meta
    required, object
    • DataModel
      required, string
      Reliable

      Organization

    • EventType
      required, string
      Reliable

      QueryResponse

    • EventDateTime
      string, null
      Reliable

      Displays the UTC date and time that an outgoing request is delivered or an incoming request is received.
      ISO 8601 Format

    • Test
      boolean, null
      Reliable

      Indicates whether the request is a test or not.

    • Source
      object

      Contains the information for the system initiating the message, including the source ID and name.
      Included in messages from Redox

      • ID
        string, null
        Reliable

        Identifies the system initiating the message. If you have multiple OAuth API keys per environment type, this value is required. If you have only one OAuth API key per environment type, or you're using legacy API keys, this value is optional.
        UUID

      • Name
        string, null
        Reliable

        Displays the name of the system initiating the message.

    • Destinations
      Array of object

      Contains the information for the endpoint(s) receiving the request. A request must contain at least one destination, but asynchronous requests can have more than one destination. Synchronous requests like queries can only support one destination.
      Required when sending data to Redox.

      • ID
        string, null
        Reliable

        Identifies the endpoint that the request is directed to.
        UUID

      • Name
        string, null
        Reliable

        Displays the name of the endpoint that the request is directed to.

    • Logs
      Array of object

      Contains the log identifier(s) for the request.

      • ID
        string, null
        Reliable

        Identifies the request log(s) that correspond to this request. You can use this value to locate the relevant log in the Redox dashboard for support and reference.
        UUID

      • AttemptID
        string, null
        Reliable

        Identifies the request log attempt value, which is useful when retries are possible.
        UUID

    • FacilityCode
      string, null
      Possible

      Code for the facility related to the message.
      Only use this field if a health system indicates you should. The code is specific to the health system's EHR and might not be unique across health systems. In general, the facility fields within the data models (e.g. OrderingFacility) are more reliable and informative.

  • Directory
    required, string
    Probable

    Directory this organization belongs to.
    one of: Carequality

  • Organizations
    required, Array of object
    • Active
      required, boolean
      Probable

      If this organization is considered active

    • Name
      required, string
      Probable

      The name of the organization

    • Aliases
      Array of string

      Name aliases for this organization

    • Identifiers
      Array of object

      An array of IDs and IDTypes to identify this organization

      • ID
        string, null
        Probable

        The ID for the organization

      • IDType
        string, null
        Probable

        The IDType associated with the ID

    • Type
      object

      The type of organization

      • System
        string, null
        Probable

        The system used to define the type

      • Value
        string, null
        Probable

        The value of the type of organization

    • PartOf
      object

      Information/identifiers of the owning/maintaining organization

      • Identifier
        object

        Identifying information for the owning organization

        • Type
          string, null
          Probable

          ID Type

        • System
          string, null
          Probable

          The ID Type system used

        • Value
          string, null
          Probable

          The ID

    • Contacts
      Array of object

      Any specified contact information for the organization

      • Purpose
        string, null
        Probable

        The contact's role at this organization

      • Name
        string, null
        Probable

        The contact's full name

      • EmailAddresses
        Array of string

        The contact's emails

      • PhoneNumber
        object

        The contact's phone numbers

        • Home
          string, null
          Probable

          The contact's home number

        • Work
          string, null
          Probable

          The contact's work number

        • Mobile
          string, null
          Probable

          The contact's mobile number

    • Address
      object

      The address information for the organization

      • StreetAddress
        string, null
        Probable

        Street address

      • City
        string, null
        Probable

        City

      • State
        string, null
        Probable

        State

      • ZIP
        string, null
        Probable

        ZIP

      • County
        string, null
        Possible

        County

      • Country
        string, null
        Possible
        Value Set

        Country

    • ManagingOrg
      string, null
      Probable

      The managing organization

  • Paging
    object

    information related to a paged response

    • Count
      number, null
      Probable

      The count of responses returned in this response

    • Index
      number, null
      Probable

      The index used to return the above array of responses

Example
json
1
{
2
"Meta": {
3
"DataModel": "Organization",
4
"EventType": "QueryResponse",
5
"EventDateTime": "2024-11-18T21:23:08.746Z",
6
"Test": true,
7
"Source": {
8
"ID": "7ce6f387-c33c-417d-8682-81e83628cbd9",
9
"Name": "Redox Dev Tools"
10
},
11
"Destinations": [
12
{
13
"ID": "af394f14-b34a-464f-8d24-895f370af4c9",
14
"Name": "Redox EMR"
15
}
16
],
17
"Logs": [
18
{
19
"ID": "d9f5d293-7110-461e-a875-3beb089e79f3",
20
"AttemptID": "925d1617-2fe0-468c-a14c-f8c04b572c54"
21
}
22
],
23
"FacilityCode": null
24
},
25
"Directory": "Carequality",
26
"Organizations": [
27
{
28
"Active": true,
29
"Name": "Test Org",
30
"Aliases": [],
31
"Identifiers": [
32
{
33
"ID": "0000000001",
34
"IDType": "FACID"
35
},
36
{
37
"ID": "1.2.3.4.5",
38
"IDType": "OID"
39
}
40
],
41
"Type": {
42
"System": "http://hl7.org/fhir/organization-type",
43
"Value": "Implementer"
44
},
45
"PartOf": {
46
"Identifier": {
47
"Type": "HCID",
48
"System": "http://www.hl7.org/oid/",
49
"Value": "1.2.3.4"
50
}
51
},
52
"Contacts": [
53
{
54
"Purpose": null,
55
"Name": "Bixby, Barbara",
56
"EmailAddresses": [
57
"barb.bixby@test.net"
58
],
59
"PhoneNumber": {
60
"Home": "+18088675303",
61
"Work": null,
62
"Mobile": "+19189368865"
63
}
64
}
65
],
66
"Address": {
67
"StreetAddress": "123 Main St.",
68
"City": "ATown",
69
"State": "AL",
70
"ZIP": "86754",
71
"County": "Madison",
72
"Country": "USA"
73
},
74
"ManagingOrg": "Redox Health System"
75
}
76
],
77
"Paging": {
78
"Count": 1,
79
"Index": 0
80
}
81
}