Page tree


Beispiel - ZSR-Nr. von Ärzteorganisationen

Neu
      "businessScope": {
        "key": "60bd4a67-8828-4b20-b4ae-49a7d0ae9b26",
        "nameTranslations": {
          "de": "Ärzte und Ärztinnen",
          "fr": "Médecins",
          "it": "Medici"
        },
        "id": 502
      },
      "businessActivity": "GROUP_PRACTICES",
Bisher
	  "businessScope": {
        "key": "b2faa5fd-f313-49c0-925d-0554aeda2dff",
        "nameTranslations": {
          "de": "Einrichtungen der amb. Krankenpflege durch Ärzte & Ärztinnen",
          "fr": "Institutions de soins ambulatoires dispensés par des médecins",
          "it": "Istituti di cure ambulatoriali effettuate da medici"
        },
        "id": 700
      },
      "businessActivity": "GROUP_PRACTICES",


Beispiel - Stammdaten im Endpoint api/v1/healthservices neu ohne validFrom 

Neu
   {
    "affiliation": {
      "key": "41ba50b7-cc86-48af-9a1d-b2da836e5f19",
      "nameTranslations": {
        "de": "ASCA",
        "fr": "ASCA",
        "it": "ASCA"
      },
      "id": 50000
    },
    "key": "fc7441ed-ea2f-4df0-b7a6-0040a22f789a",
    "nameTranslations": {
      "de": "Therapeutische Massage",
      "fr": "Massage thérapeutique",
      "it": "Massaggio terapeutico"
    },
    "externalId": "169",
    "__typename": "HealthServiceCertifier",
    "startDate": "2005-10-27",
    "endDate": "9999-12-31",
    "isValid": true,
    "id": 206
  },
Bisher
  {
    "__typename": "HealthServiceCertifier",
    "id": 206,
    "key": "fc7441ed-ea2f-4df0-b7a6-0040a22f789a",
    "validFrom": "2020-08-28T19:00:50.429834Z",
    "startDate": "2005-10-27T00:00:00Z",
    "endDate": "9999-12-31T00:00:00Z",
    "isValid": true,
    "nameTranslations": {
      "de": "Therapeutische Massage",
      "fr": "Massage thérapeutique",
      "it": "Massaggio terapeutico"
    },
    "externalId": "169",
    "affiliation": {
      "id": 50000,
      "key": "41ba50b7-cc86-48af-9a1d-b2da836e5f19",
      "validFrom": "2020-08-28T19:00:27.5860536Z",
      "startDate": "2014-10-28T00:00:00Z",
      "endDate": "9999-12-31T00:00:00Z",
      "isValid": true,
      "nameTranslations": {
        "de": "ASCA",
        "fr": "ASCA",
        "it": "ASCA"
      }
    }
  },


Beispiel - Korrektur des Swagger Contracts betreffend "date-time"-Format in contract BaseValidity

Neu
      "Sasis.Register.CareProvider.Common.Models.ApiGateway.V1.BaseValidity": {
        "type": "object",
        "properties": {
          "startDate": {
            "type": "string",
            "description": "Date of the validity start (=fachliches Startdatum). Time information will be ignored. Validity starts at the beginning of the specified day.",
            "format": "date"
          },
          "endDate": {
            "type": "string",
            "description": "Date of the validity end (=fachliches Enddatum). Time information will be ignored. Validity ends at the end of the specified day. If the period lasts indefinitely, the max date '9999-12-31 23:59:59.9999999' must be provided.",
            "format": "date"
          }
        },
        "additionalProperties": false
      },
Bisher
      "Sasis.Register.CareProvider.Common.Models.ApiGateway.V1.BaseValidity": {
        "type": "object",
        "properties": {
          "startDate": {
            "type": "string",
            "description": "Date of the validity start (=fachliches Startdatum). Time information will be ignored. Validity starts at the beginning of the specified day.",
            "format": "date-time"
          },
          "endDate": {
            "type": "string",
            "description": "Date of the validity end (=fachliches Enddatum). Time information will be ignored. Validity ends at the end of the specified day. If the period lasts indefinitely, the max date '9999-12-31 23:59:59.9999999' must be provided.",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },


  • No labels