diff options
author | Thomas <> | 2023-06-07 09:45:37 +0200 |
---|---|---|
committer | Thomas <> | 2023-06-07 09:45:37 +0200 |
commit | 26c31db942450519ba0ea5eac0c301a88841965c (patch) | |
tree | e44246a41845e745db42182cd2aa4d363df0611b /modules/authmodule-eIDAS-v2/src/main/resources | |
parent | 11520da12531f7484bc716f6c6284f65d4e5c201 (diff) | |
download | National_eIDAS_Gateway-26c31db942450519ba0ea5eac0c301a88841965c.tar.gz National_eIDAS_Gateway-26c31db942450519ba0ea5eac0c301a88841965c.tar.bz2 National_eIDAS_Gateway-26c31db942450519ba0ea5eac0c301a88841965c.zip |
fix(ernp): change JSON API because it has some bugs
Reason: some elements are 'date' now, but was defined as 'date-time'
Diffstat (limited to 'modules/authmodule-eIDAS-v2/src/main/resources')
-rw-r--r-- | modules/authmodule-eIDAS-v2/src/main/resources/wsdl/ernp_client/openapi.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/authmodule-eIDAS-v2/src/main/resources/wsdl/ernp_client/openapi.json b/modules/authmodule-eIDAS-v2/src/main/resources/wsdl/ernp_client/openapi.json index 3a4ed480..d9d68bb9 100644 --- a/modules/authmodule-eIDAS-v2/src/main/resources/wsdl/ernp_client/openapi.json +++ b/modules/authmodule-eIDAS-v2/src/main/resources/wsdl/ernp_client/openapi.json @@ -1010,7 +1010,7 @@ "properties" : { "datum" : { "type" : "string", - "format" : "date-time", + "format" : "date", "xml" : { "name" : "Datum" } @@ -1082,14 +1082,14 @@ }, "ausstellDatum" : { "type" : "string", - "format" : "date-time", + "format" : "date", "xml" : { "name" : "AusstellDatum" } }, "ablaufDatum" : { "type" : "string", - "format" : "date-time", + "format" : "date", "xml" : { "name" : "AblaufDatum" } @@ -2182,7 +2182,7 @@ "properties" : { "datum" : { "type" : "string", - "format" : "date-time", + "format" : "date", "xml" : { "name" : "Datum" } @@ -2215,14 +2215,14 @@ }, "ausstellDatum" : { "type" : "string", - "format" : "date-time", + "format" : "date", "xml" : { "name" : "AusstellDatum" } }, "ablaufDatum" : { "type" : "string", - "format" : "date-time", + "format" : "date", "xml" : { "name" : "AblaufDatum" } |