Configuring CapabilityStatement template

The Kodjin FHIR server supports configuring common static parameters, such as contacts, description, publisher, etc., for the metadata endpoint (e.g., https://demo.kodjin.com/fhir/metadata).

Follow CapabilityStatement configuration for more details.

To define this configuration, use the configuration file located at etc/kodjin/{environment}/values/fhir-config/capability-statement-template.json

Example of capability-statement-template.json

    {
      "resourceType": "CapabilityStatement",
      "publisher": "EdenLab",
      "fhirVersion": "4.0.1",
      "name": "Kodjin FHIR server 4.0.1 CapabilityStatement",
      "contact": [
        {
          "name": "EdenLab",
          "telecom": [
            {
              "system": "email",
              "value": "welcome@edenlab.io",
              "use": "work"
            }
          ]
        }
      ],
      "description": "This is the FHIR capability statement",
      "date": "_",
      "experimental": true,
      "software": {
        "name": "Kodjin FHIR Server"
      },
      "implementation": {
        "description": "Kodjin FHIR Server"
      },
      "format": ["application/fhir+xml", "application/fhir+json"],
      "patchFormat": ["application/fhir+json", "application/fhir+xml"],
      "id": "_",
      "kind": "instance",
      "status": "active",
      "url": "metadata",
      "version": "1.0.0",
      "rest": []
  }