Skip to content

Commit

Permalink
ANSC v1.36.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mttfranci committed Jan 9, 2025
1 parent 1c3afa2 commit 7de7495
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 19 deletions.
Binary file modified docs/Caratteristiche_servizi/R019_certificato_internazionale.pdf
Binary file not shown.
Binary file modified docs/Caratteristiche_servizi/Tracciato-Evento.pdf
Binary file not shown.
Binary file modified docs/Caratteristiche_servizi/Tracciato-Evento.xlsx
Binary file not shown.
16 changes: 16 additions & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,22 @@ NOTE:

## [Unreleased]

## [1.36.2 - 09-01-2025]

### Fixed

- model_evento.yaml non allineato alla release 1.36.0 <https://github.com/italia/ansc/issues/1234>

- Sistemata documentazione:
- [R019_certificato_internazionale.yaml]
- CertificatoNascitaDTO sostituiti i campi annotazione e siglaEnunciazioni con listaEnunciazioni
- CertificatoMatrimonioDTO sostituiti i campi annotazione e siglaEnunciazioni con listaEnunciazioni
- AnnotazioneEventoResponse modificato il tipo del campo listaAnnotazioni da ModelEvento a InfoAnnotazione

- [model_evento.yaml]
- Aggiunti i campi:
- dataPubblicazioneSentenza e dataDecorrenzaSentenza in ModelTrascrizioneSeparazione

## [1.36.1 - 30-12-2024]

### Fixed
Expand Down
70 changes: 52 additions & 18 deletions docs/openapi/R019_certificato_internazionale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,14 +252,10 @@ components:
allOf:
- type: object
properties:
annotazione:
type: string
description: Altre enunciazioni dell'atto
example: "annotazione"
siglaEnunciazioni:
type: string
description: Sigla enunciazioni (Mar,Sc,Div,A,D,Dm,Df).
example: 'Mar'
listaEnunciazioni:
type: array
items:
$ref: '#/components/schemas/Enunciazione'
CertificatoMatrimonioDTO:
description: Modello Certificato Internazionale di Matrimonio
allOf:
Expand All @@ -270,14 +266,10 @@ components:
description: Modello soggetto marito
moglie:
$ref: '#/components/schemas/ConiugeEstrattoMatrDTO'
annotazione:
type: string
description: Altre enunciazioni dell'atto
example: "annotazione"
siglaEnunciazioni:
type: string
description: Sigla enunciazioni (Sc,Div,A,Dm,Df). Obbligatorio nel caso ci siano annotazioni.
example: 'Sc'
listaEnunciazioni:
type: array
items:
$ref: '#/components/schemas/Enunciazione'
ConiugeEstrattoMatrDTO:
description: Modello Coniuge per l'estratto di matrimonio
allOf:
Expand Down Expand Up @@ -366,7 +358,7 @@ components:
listaAnnotazioni:
type: array
items:
$ref: 'https://italia.github.io/ansc/docs/openapi/model_evento.yaml#/components/schemas/ModelEvento'
$ref: '#/components/schemas/InfoAnnotazione'
SigleEnunciazioniRequest:
description: Richiesta del servizio che restituisce le sigle dell'enunciazioni
allOf:
Expand Down Expand Up @@ -428,4 +420,46 @@ components:
tipologiaCertificato:
type: string
description: Lista tipologia certificato in cui la sigla è visibile
example: "1,2,4"
example: "1,2,4"
InfoAnnotazione:
description: Enunciazioni per certificato di nascita e di matrimonio
properties:
id:
type: number
description: Id univoco assegnato dal sistema. (per uso interno)
example: '12'
dataEvento:
type: string
format: date
description: Data evento.
example: '2024-12-04T00:00:00'
luogoEvento:
$ref: 'https://italia.github.io/ansc/docs/openapi/model_evento.yaml#/components/schemas/ModelLuogo'
nomeCongiunto:
type: string
description: Nome congiunto solo per atti di matrimonio
example: "Gabriele"
cognomeCongiunto:
type: string
description: Cognome congiunto olo per atti di matrimonio
example: "Gabriele"
descrizione:
type: string
description: Descrizione caso d'uso dell'evento
example: "Gabriele"
composizioneCompleta:
type: string
description: Descrizione caso d'uso dell'evento
example: "Lorem Ipsum"
Enunciazione:
description: Enunciazioni per certificato di nascita e di matrimonio
properties:
siglaEnunciazioni:
type: string
description: Sigla enunciazioni per matrimonio=(Sc,Div,A,Dm,Df) per nascita (Mar,Sc,Div,A,D,Dm,Df). Obbligatorio nel caso ci siano annotazioni.
example: 'Sc'
infoAnnotazione:
type: object
description: Info annotazioni
items:
$ref: '#/components/schemas/InfoAnnotazione'
12 changes: 11 additions & 1 deletion docs/openapi/model_evento.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2155,7 +2155,17 @@ components:
tipoModificaMatrimonio:
type: string
description: Tipo di modifica al matrimonio (decodifica ANSC_54)
example: "1"
example: "1"
dataPubblicazioneSentenza:
type: string
format: date
description: Data di pubblicazione della sentenza
example: "2022-04-22"
dataDecorrenzaSentenza:
type: string
format: date
description: Data di decorrenza della sentenza
example: "2022-04-22"
ModelTrascrizioneUnioneCivile:
allOf:
- $ref: '#/components/schemas/ModelTrascrizione'
Expand Down

0 comments on commit 7de7495

Please sign in to comment.