Skip to content

Commit

Permalink
issue #230 fixed learning_cfu from string to number
Browse files Browse the repository at this point in the history
  • Loading branch information
denismarini committed Oct 23, 2024
1 parent a4d4539 commit c789fe9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions release-note.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
- [IFS03, IFS08, IFS09] 10.10.2024 issue #227 Renamed the OperationID from Italian to English for consistency and clarity in the codebase
- [IFS04] 18.10.2024 fixed the null value definition in the enum file_status
- [IFS04] 23.10.2024 issue #232 fixed the null value definition in the enum file_status
- [IFS03] 23.10.2024 issue #230 fixed learning_cfu from string to number

## Version 2.0.5
- [IFS01.2] It was added the curriculum description of the learnings list
Expand Down
17 changes: 9 additions & 8 deletions src/IFS03-titoli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -334,21 +334,21 @@ paths:
learning_name: Analisi matematica I e Geometria
learning_start_date: '2018-12-01'
learning_end_date: '2019-03-01'
learning_cfu: '6'
learning_cfu: 6
- learning_grade_value: '22'
learning_grading_scale_min: '18'
learning_grading_scale_max: '30'
learning_name: Fisica sperimentale
learning_start_date: '2018-06-01'
learning_end_date: '2018-10-01'
learning_cfu: '6'
learning_cfu: 6
- learning_grade_value: QUALIFIED
learning_grading_scale_min: null
learning_grading_scale_max: null
learning_name: Fisica tecnica
learning_start_date: '2018-07-01'
learning_end_date: '2019-07-01'
learning_cfu: '6'
learning_cfu: 6

'400':
description: <b>Bad Request</b> - il server non può elaborare la richiesta del client a causa di una sintassi errata o di una richiesta non valida. <br> Esempi di cause
Expand Down Expand Up @@ -919,11 +919,12 @@ components:
description: Detailed information on completed courses / Informazioni dettagliate sui corsi completati
properties:
learning_cfu:
type: string
description: exam cfu / cfu esame
example: '6'
minLength: 0
maxLength: 64
type: integer
format: int32
description: Learning CFU / CFU insegnamento
example: 10
minimum: 1
maximum: 999
nullable: true
learning_grade_value:
type: string
Expand Down

0 comments on commit c789fe9

Please sign in to comment.