11openapi : 3.0.3
22info :
33 title : APNF MAN Platform - BPCO API Reference
4- version : 1.5.0
4+ version : 1.5.1
55 license :
66 name : CC-BY-SA-4.0
77 url : https://creativecommons.org/licenses/by-sa/4.0/legalcode
7070
7171 # History
7272
73+ **1.5.0** - 2023/10/05
74+ - (GET /ca) Update `version` format from integer to float
75+ - (GET /ca/certs) Update `version` format from integer to float
76+
7377 **1.5.0** - 2023/09/27
7478 - Include in `Description` section rate limiting logic
7579 - Add CC-BY-SA-4.0 license
@@ -299,7 +303,7 @@ paths:
299303 * `payload` property contains the JWS payload encoded as Base64:
300304 ```
301305 base64UrlEncode({
302- "version": 1,
306+ "version": 1.0 ,
303307 "sequence": 1,
304308 "exp": 1300819380,
305309 "trustList": [
@@ -308,7 +312,7 @@ paths:
308312 })
309313 ```
310314 In this payload:
311- * `version` is an integer starting with `1` and incremented when the payload format is updated,
315+ * `version` is a float starting with `1.0 ` and incremented by 1 each time the payload format is updated,
312316 * `sequence` is an integer incremented each time the certificate list is updated,
313317 * `exp` contains the timestamp corresponding to the token expiration date. Expiration for this token is set to one week.
314318 * `trustList` contains the list of the CA root certificates in PEM format.
@@ -414,7 +418,7 @@ paths:
414418 * `payload` property contains the JWS payload encoded as Base64:
415419 ```
416420 base64UrlEncode({
417- "version": 1,
421+ "version": 1.0 ,
418422 "sequence": 1,
419423 "exp": 1300819380,
420424 "certList": [
@@ -424,7 +428,7 @@ paths:
424428 })
425429 ```
426430 In this payload:
427- * `version` is an integer starting with `1` and incremented when the payload format is updated,
431+ * `version` is a float starting with `1.0 ` and incremented by 1 each time the payload format is updated,
428432 * `sequence` is an integer incremented each time the certificate list is updated,
429433 * `exp` contains the timestamp corresponding to the token expiration date. Expiration for this token is set to one week.
430434 * `certList` contains the list of the CA intermediates certificates in PEM format.
0 commit comments