Organization

Basert på FHIR-modellen for Organization.

Inkluderer disse feltene:

Feltnavn Type Beskrivelse Merknader
resourceType String Typen ressurs (Organization)
id string id på ressursen, tildeles av server
active boolean om organisasjonen er aktiv eller ikke
name string navn på organisasjonen
contact ExtendedContactDetail kontaktinformasjon for organisasjonen, for eksempel adresser og telefonnummer

Struktur:

{
  "resourceType" : "Organization",
  // from Resource: id
  "identifier" : [{ Identifier }], // Identifies this organization  across multiple systems
  "active" : <boolean>, // Whether the organization's record is still in active use
  "name" : "<string>", // Name used for the organization
  "contact" : [{ ExtendedContactDetail }] // Official contact details for the Organization
}

Eksempel:

{
  "resourceType": "Organization",
  "id": "883974832",
  "active": true,
  "name": "ST. OLAVS HOSPITAL HF",
  "contact": [
    {
      "address": {
        "use": "work",
        "type": "physical",
        "line": [
          "Prinsesse Kristinas gate 3"
        ],
        "city": "TRONDHEIM",
        "district": "TRONDHEIM",
        "postalCode": "7030",
        "country": "Norge"
      }
    },
    {
      "address": {
        "use": "billing",
        "type": "postal",
        "line": [
          "Postboks 3250 Torgarden"
        ],
        "city": "TRONDHEIM",
        "district": "TRONDHEIM",
        "postalCode": "7006",
        "country": "Norge"
      }
    }
  ]
}