![]() | Metadata Description |
AGID guidelines on the documents composition, management and preservation
The XML JSDC FLOW file must respect this XSD format:
1<?xml version="1.0" encoding="UTF-8"?> 2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> 3 <xs:element name="DocumentFlow"> 4 <xs:complexType> 5 <xs:sequence> 6 <xs:element name="DigitalSafeId" type="xs:string" /> 7 <xs:element name="ContainerId" minOccurs="0"> 8 <xs:simpleType> 9 <xs:restriction base="xs:integer"> 10 <xs:minInclusive value="1"/> 11 </xs:restriction> 12 </xs:simpleType> 13 </xs:element> 14 <xs:element name="CustomerCode" minOccurs="1"> 15 <xs:simpleType> 16 <xs:restriction base="xs:integer"> 17 <xs:minInclusive value="1"/> 18 </xs:restriction> 19 </xs:simpleType> 20 </xs:element> 21 <xs:element name="IndexingDate" type="xs:dateTime" minOccurs="0"/> 22 <xs:element name="IdLot" type="xs:string" minOccurs="0"/> 23 <xs:element name="DocumentSchema"> 24 <xs:simpleType> 25 <xs:restriction base="xs:string"> 26 <xs:enumeration value="DocumentoInformatico"/> 27 <xs:enumeration value="DocumentoAmministrativoInformatico"/> 28 <xs:enumeration value="AggregazioneDocumentaliInformatiche"/> 29 </xs:restriction> 30 </xs:simpleType> 31 </xs:element> 32 </xs:sequence> 33 <xs:attribute name="version" use="required"> 34 <xs:simpleType> 35 <xs:restriction base="xs:string" /> 36 </xs:simpleType> 37 </xs:attribute> 38 </xs:complexType> 39 </xs:element> 40</xs:schema>
Example:
1<?xml version="1.0" encoding="utf-8"?> 2<DocumentFlow version="1.0"> 3 <DigitalSafeId>2cc233bc-fc0c-42c6-a389-b11bdc2366ce</DigitalSafeId> 4 <CustomerCode>819</CustomerCode> 5 <DocumentSchema>DocumentoInformatico</DocumentSchema> 6</DocumentFlow>
The XML "DOCUMENTO INFORMATICO" file must respect this XSD format:
1<?xml version="1.0" encoding="UTF-8"?> 2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> 3 <xs:element name="DocumentoInformatico" type="DocumentoInformaticoType"/> 4 <xs:complexType name="DocumentoInformaticoType"> 5 <xs:sequence> 6 <xs:element name="IdDoc" type="IdDocType"/> 7 <xs:element name="ModalitaDiFormazione" type="ModalitaDiFormazioneType"/> 8 <xs:element name="TipologiaDocumentale" type="xs:string"/> 9 <xs:element name="DatiDiRegistrazione" type="DatiDiRegistrazioneType"/> 10 <xs:element name="Soggetti" type="SoggettiType"/> 11 <xs:element name="ChiaveDescrittiva" type="ChiaveDescrittivaType"/> 12 <xs:element name="CampiVariabili" type="CampiVariabiliType" minOccurs="0"/> 13 <xs:element name="Allegati" type="AllegatiType"/> 14 <xs:element name="Classificazione" type="ClassificazioneType" minOccurs="0"/> 15 <xs:element name="Riservato" type="xs:boolean"/> 16 <xs:element name="IdentificativoDelFormato" type="IdentificativoDelFormatoType"/> 17 <xs:element name="Verifica" type="VerificaType"/> 18 <xs:element name="Agg" type="AggType" minOccurs="0"/> 19 <xs:element name="IdIdentificativoDocumentoPrimario" type="IdDocType" minOccurs="0"/> 20 <xs:element name="NomeDelDocumento" type="xs:string"/> 21 <xs:element name="VersioneDelDocumento" type="xs:string"/> 22 <xs:element name="TracciatureModificheDocumento" type="TracciatureModificheDocumentoType" minOccurs="0"/> 23 <xs:element name="TempoDiConservazione" type="TempoDiConservazioneType" minOccurs="0"/> 24 <xs:element name="Note" type="xs:string" minOccurs="0"/> 25 </xs:sequence> 26 <xs:attribute name="version" use="required"> 27 <xs:simpleType> 28 <xs:restriction base="xs:string"/> 29 </xs:simpleType> 30 </xs:attribute> 31 </xs:complexType> 32 <xs:complexType name="IdDocType"> 33 <xs:sequence> 34 <xs:element name="ImprontaCrittograficaDelDocumento" type="ImprontaCrittograficaDelDocumentoType"/> 35 <xs:element name="Identificativo" type="xs:string"/> 36 </xs:sequence> 37 </xs:complexType> 38 <xs:complexType name="ImprontaCrittograficaDelDocumentoType"> 39 <xs:sequence> 40 <xs:element name="Impronta" type="xs:string"/> 41 <xs:element name="Algoritmo" type="xs:string" default="SHA-256"/> 42 </xs:sequence> 43 </xs:complexType> 44 <xs:simpleType name="ModalitaDiFormazioneType"> 45 <xs:restriction base="xs:string"> 46 <xs:pattern value="[A-D]"/> 47 </xs:restriction> 48 </xs:simpleType> 49 <xs:complexType name="DatiDiRegistrazioneType"> 50 <xs:sequence> 51 <xs:element name="TipologiaDiFlusso" type="TipologiaDiFlussoType"/> 52 <xs:element name="TipoRegistro" type="TipoRegistroType"/> 53 </xs:sequence> 54 </xs:complexType> 55 <xs:simpleType name="TipologiaDiFlussoType"> 56 <xs:restriction base="xs:string"> 57 <xs:enumeration value="E"/> 58 <xs:enumeration value="U"/> 59 <xs:enumeration value="I"/> 60 </xs:restriction> 61 </xs:simpleType> 62 <xs:complexType name="TipoRegistroType"> 63 <xs:sequence> 64 <xs:choice> 65 <xs:element name="Nessuno" type="NoRegistroType"/> 66 <xs:element name="ProtocolloOrdinario_ProtocolloEmergenza" type="ProtocolloType"/> 67 <xs:element name="Repertorio_Registro" type="NoProtocolloType"/> 68 </xs:choice> 69 </xs:sequence> 70 </xs:complexType> 71 <xs:complexType name="NoRegistroType"> 72 <xs:sequence> 73 <xs:element name="TipoRegistro" type="xs:string" fixed='Nessuno'/> 74 <xs:element name="DataDocumento" type="xs:date"/> 75 <xs:element name="OraDocumento" type="xs:time" minOccurs="0"/> 76 <xs:element name="NumeroDocumento" type="xs:string"/> 77 </xs:sequence> 78 </xs:complexType> 79 <xs:complexType name="ProtocolloType"> 80 <xs:sequence> 81 <xs:element name="TipoRegistro" type="xs:string" fixed='ProtocolloOrdinario\ProtocolloEmergenza'/> 82 <xs:element name="DataProtocollazioneDocumento" type="xs:date"/> 83 <xs:element name="OraProtocollazioneDocumento" type="xs:time" minOccurs="0"/> 84 <xs:element name="NumeroProtocolloDocumento" type="NumProtType"/> 85 <xs:element name="CodiceRegistro" type="CodiceRegistroType"/> 86 </xs:sequence> 87 </xs:complexType> 88 <xs:complexType name="NoProtocolloType"> 89 <xs:sequence> 90 <xs:element name="TipoRegistro" type="xs:string" fixed='Repertorio\Registro'/> 91 <xs:element name="DataRegistrazioneDocumento" type="xs:date"/> 92 <xs:element name="OraRegistrazioneDocumento" type="xs:time" minOccurs="0"/> 93 <xs:element name="NumeroRegistrazioneDocumento" type="xs:string"/> 94 <xs:element name="CodiceRegistro" type="CodiceRegistroType"/> 95 </xs:sequence> 96 </xs:complexType> 97 <xs:simpleType name="NumProtType"> 98 <xs:restriction base="xs:string"> 99 <xs:pattern value="[0-9]{7,}"/> 100 </xs:restriction> 101 </xs:simpleType> 102 <xs:simpleType name="CodiceRegistroType"> 103 <xs:restriction base="xs:string"> 104 <xs:pattern value="[A-Za-z0-9_\.\-]{1,16}"/> 105 </xs:restriction> 106 </xs:simpleType> 107 <xs:complexType name="SoggettiType"> 108 <xs:sequence> 109 <xs:element name="Ruolo" type="RuoloType" minOccurs="1" maxOccurs="unbounded"/> 110 </xs:sequence> 111 </xs:complexType> 112 <xs:complexType name="RuoloType"> 113 <xs:choice> 114 <xs:element name="SoggettoCheEffettuaLaRegistrazione" type="TipoSoggetto21Type"/> 115 <xs:element name="Assegnatario" type="TipoSoggetto22Type"/> 116 <xs:element name="Destinatario" type="TipoSoggetto11Type"/> 117 <xs:element name="Mittente" type="TipoSoggetto12Type"/> 118 <xs:element name="Autore" type="TipoSoggetto31Type"/> 119 <xs:element name="Operatore" type="TipoSoggetto32Type"/> 120 <xs:element name="ResponsabileGestioneDocumentale" type="TipoSoggetto33Type"/> 121 <xs:element name="ResponsabileServizioProtocollo" type="TipoSoggetto34Type"/> 122 <xs:element name="Produttore" type="TipoSoggetto4Type"/> 123 <xs:element name="Altro" type="TipoSoggetto13Type"/> 124 </xs:choice> 125 </xs:complexType> 126 <xs:complexType name="TipoSoggetto11Type"> 127 <xs:sequence> 128 <xs:element name="TipoRuolo" type="xs:string" fixed='Destinatario'/> 129 <xs:choice> 130 <xs:element name="PF" type="PFType"/> 131 <xs:element name="PG" type="PGType"/> 132 <xs:element name="PAI" type="PAIType"/> 133 <xs:element name="PAE" type="PAEType"/> 134 </xs:choice> 135 </xs:sequence> 136 </xs:complexType> 137 <xs:complexType name="TipoSoggetto12Type"> 138 <xs:sequence> 139 <xs:element name="TipoRuolo" type="xs:string" fixed='Mittente'/> 140 <xs:choice> 141 <xs:element name="PF" type="PFType"/> 142 <xs:element name="PG" type="PGType"/> 143 <xs:element name="PAI" type="PAIType"/> 144 <xs:element name="PAE" type="PAEType"/> 145 </xs:choice> 146 </xs:sequence> 147 </xs:complexType> 148 <xs:complexType name="TipoSoggetto13Type"> 149 <xs:sequence> 150 <xs:element name="TipoRuolo" type="xs:string" fixed='Altro'/> 151 <xs:choice> 152 <xs:element name="PF" type="PFType"/> 153 <xs:element name="PG" type="PGType"/> 154 <xs:element name="PAI" type="PAIType"/> 155 <xs:element name="PAE" type="PAEType"/> 156 </xs:choice> 157 </xs:sequence> 158 </xs:complexType> 159 <xs:complexType name="TipoSoggetto21Type"> 160 <xs:sequence> 161 <xs:element name="TipoRuolo" type="xs:string" fixed='Soggetto Che Effettua La Registrazione'/> 162 <xs:choice> 163 <xs:element name="PF" type="PFType"/> 164 <xs:element name="PG" type="PGType"/> 165 </xs:choice> 166 </xs:sequence> 167 </xs:complexType> 168 <xs:complexType name="TipoSoggetto22Type"> 169 <xs:sequence> 170 <xs:element name="TipoRuolo" type="xs:string" fixed='Assegnatario'/> 171 <xs:element name="AS" type="ASType"/> 172 </xs:sequence> 173 </xs:complexType> 174 <xs:complexType name="ASType"> 175 <xs:sequence> 176 <xs:element name="Cognome" type="xs:string" minOccurs="0"/> 177 <xs:element name="Nome" type="xs:string" minOccurs="0"/> 178 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 179 <xs:element name="DenominazioneOrganizzazione" type="xs:string"/> 180 <xs:element name="DenominazioneUfficio" type="xs:string"/> 181 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 182 </xs:sequence> 183 </xs:complexType> 184 <xs:complexType name="TipoSoggetto31Type"> 185 <xs:sequence> 186 <xs:element name="TipoRuolo" type="xs:string" fixed='Autore'/> 187 <xs:choice> 188 <xs:element name="PF" type="PFType"/> 189 <xs:element name="PG" type="PGType"/> 190 <xs:element name="PAI" type="PAIType"/> 191 <xs:element name="PAE" type="PAEType"/> 192 </xs:choice> 193 </xs:sequence> 194 </xs:complexType> 195 <xs:complexType name="TipoSoggetto32Type"> 196 <xs:sequence> 197 <xs:element name="TipoRuolo" type="xs:string" fixed='Operatore'/> 198 <xs:element name="PF" type="PFType"/> 199 </xs:sequence> 200 </xs:complexType> 201 <xs:complexType name="TipoSoggetto33Type"> 202 <xs:sequence> 203 <xs:element name="TipoRuolo" type="xs:string" fixed='Responsabile della Gestione Documentale'/> 204 <xs:element name="PF" type="PFType"/> 205 </xs:sequence> 206 </xs:complexType> 207 <xs:complexType name="TipoSoggetto34Type"> 208 <xs:sequence> 209 <xs:element name="TipoRuolo" type="xs:string" fixed='Responsabile del Servizio di Protocollo'/> 210 <xs:element name="PF" type="PFType"/> 211 </xs:sequence> 212 </xs:complexType> 213 <xs:complexType name="TipoSoggetto4Type"> 214 <xs:sequence> 215 <xs:element name="TipoRuolo" type="xs:string" fixed='Produttore'/> 216 <xs:element name="SW" type="SWType"/> 217 </xs:sequence> 218 </xs:complexType> 219 <xs:complexType name="PFType"> 220 <xs:sequence> 221 <xs:element name="Cognome" type="xs:string"/> 222 <xs:element name="Nome" type="xs:string"/> 223 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 224 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 225 </xs:sequence> 226 </xs:complexType> 227 <xs:complexType name="PGType"> 228 <xs:sequence> 229 <xs:element name="DenominazioneOrganizzazione" type="xs:string"/> 230 <xs:element name="CodiceFiscale_PartitaIva" type="PIType" minOccurs="0"/> 231 <xs:element name="DenominazioneUfficio" type="xs:string" minOccurs="0"/> 232 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 233 </xs:sequence> 234 </xs:complexType> 235 <xs:complexType name="PAIType"> 236 <xs:sequence> 237 <xs:element name="IPAAmm" type="CodiceIPAType"/> 238 <xs:element name="IPAAOO" type="CodiceIPAType" minOccurs="0"/> 239 <xs:element name="IPAUOR" type="CodiceIPAType" minOccurs="0"/> 240 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 241 </xs:sequence> 242 </xs:complexType> 243 <xs:complexType name="PAEType"> 244 <xs:sequence> 245 <xs:element name="DenominazioneAmministrazione" type="xs:string"/> 246 <xs:element name="DenominazioneUfficio" type="xs:string" minOccurs="0"/> 247 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 248 </xs:sequence> 249 </xs:complexType> 250 <xs:complexType name="CodiceIPAType"> 251 <xs:sequence> 252 <xs:element name="Denominazione" type="xs:string"/> 253 <xs:element name="CodiceIPA" type="xs:string"/> 254 </xs:sequence> 255 </xs:complexType> 256 <xs:complexType name="SWType"> 257 <xs:sequence> 258 <xs:element name="DenominazioneSistema" type="xs:string"/> 259 </xs:sequence> 260 </xs:complexType> 261 <xs:complexType name="ChiaveDescrittivaType"> 262 <xs:sequence> 263 <xs:element name="Oggetto" type="xs:string"/> 264 <xs:element name="ParoleChiave" type="xs:string" minOccurs="0" maxOccurs="5"/> 265 </xs:sequence> 266 </xs:complexType> 267 <xs:complexType name="CampiVariabiliType"> 268 <xs:sequence> 269 <xs:element name="CampoVariabile" minOccurs="1" maxOccurs="unbounded"> 270 <xs:complexType> 271 <xs:sequence> 272 <xs:element name="Nome" type="xs:string"/> 273 <xs:element name="Descrizione"> 274 <xs:simpleType> 275 <xs:restriction base="xs:string"> 276 <xs:minLength value="1"/> 277 </xs:restriction> 278 </xs:simpleType> 279 </xs:element> 280 <xs:element name="Valore" type="xs:string"/> 281 </xs:sequence> 282 </xs:complexType> 283 </xs:element> 284 </xs:sequence> 285 </xs:complexType> 286 <xs:complexType name="AllegatiType"> 287 <xs:sequence> 288 <xs:element name="NumeroAllegati" type="NumeroAllegatiType"/> 289 <xs:element name="IndiceAllegati" type="IndiceAllegatiType" minOccurs="0" maxOccurs="9999"/> 290 </xs:sequence> 291 <xs:attribute name="ModalitaAllegati" default="Esterna"> 292 <xs:simpleType> 293 <xs:restriction base="xs:string"> 294 <xs:enumeration value="Esterna"/> 295 <xs:enumeration value="Interna"/> 296 </xs:restriction> 297 </xs:simpleType> 298 </xs:attribute> 299 </xs:complexType> 300 <xs:simpleType name="NumeroAllegatiType"> 301 <xs:restriction base="xs:integer"> 302 <xs:minInclusive value="0"/> 303 <xs:maxInclusive value="9999"/> 304 </xs:restriction> 305 </xs:simpleType> 306 <xs:complexType name="IndiceAllegatiType"> 307 <xs:sequence> 308 <xs:element name="IdDoc" type="IdDocType"/> 309 <xs:element name="Descrizione" type="xs:string"/> 310 </xs:sequence> 311 </xs:complexType> 312 <xs:complexType name="ClassificazioneType"> 313 <xs:sequence> 314 <xs:element name="IndiceDiClassificazione" type="xs:string" minOccurs="0"/> 315 <xs:element name="Descrizione" type="xs:string" minOccurs="0"/> 316 <xs:element name="PianoDiClassificazione" type="xs:string" minOccurs="0"/> 317 </xs:sequence> 318 </xs:complexType> 319 <xs:complexType name="IdentificativoDelFormatoType"> 320 <xs:sequence> 321 <xs:element name="Formato" type="xs:string"/> 322 <xs:element name="ProdottoSoftware" type="ProdottoSoftwareType" minOccurs="0"/> 323 </xs:sequence> 324 </xs:complexType> 325 <xs:complexType name="ProdottoSoftwareType"> 326 <xs:sequence> 327 <xs:element name="NomeProdotto" type="xs:string" minOccurs="0"/> 328 <xs:element name="VersioneProdotto" type="xs:string" minOccurs="0"/> 329 <xs:element name="Produttore" type="xs:string" minOccurs="0"/> 330 </xs:sequence> 331 </xs:complexType> 332 <xs:complexType name="VerificaType"> 333 <xs:sequence> 334 <xs:element name="FirmatoDigitalmente" type="xs:boolean"/> 335 <xs:element name="SigillatoElettronicamente" type="xs:boolean"/> 336 <xs:element name="MarcaturaTemporale" type="xs:boolean"/> 337 <xs:element name="ConformitaCopieImmagineSuSupportoInformatico" type="xs:boolean"/> 338 </xs:sequence> 339 </xs:complexType> 340 <xs:complexType name="AggType"> 341 <xs:sequence> 342 <xs:element name="TipoAgg" type="IdAggType" minOccurs="0" maxOccurs="unbounded"/> 343 </xs:sequence> 344 </xs:complexType> 345 <xs:complexType name="IdAggType"> 346 <xs:sequence> 347 <xs:element name="TipoAggregazione" type="TipoAggregazioneType"/> 348 <xs:element name="IdAggregazione" type="xs:string"/> 349 </xs:sequence> 350 </xs:complexType> 351 <xs:simpleType name="TipoAggregazioneType"> 352 <xs:restriction base="xs:string"> 353 <xs:enumeration value="Fascicolo"/> 354 <xs:enumeration value="Serie Documentale"/> 355 <xs:enumeration value="Serie Di Fascicoli"/> 356 </xs:restriction> 357 </xs:simpleType> 358 <xs:complexType name="TracciatureModificheDocumentoType"> 359 <xs:sequence> 360 <xs:element name="TipoModifica" type="TipoModificaType"/> 361 <xs:element name="SoggettoAutoreDellaModifica" type="PFType"/> 362 <xs:element name="DataModifica" type="xs:date"/> 363 <xs:element name="OraModifica" type="xs:time" minOccurs="0"/> 364 <xs:element name="IdDocVersionePrecedente" type="IdDocType"/> 365 </xs:sequence> 366 </xs:complexType> 367 <xs:simpleType name="TipoModificaType"> 368 <xs:restriction base="xs:string"> 369 <xs:enumeration value="Annullamento"/> 370 <xs:enumeration value="Rettifica"/> 371 <xs:enumeration value="Integrazione"/> 372 <xs:enumeration value="Annotazione"/> 373 </xs:restriction> 374 </xs:simpleType> 375 <xs:simpleType name="CFType"> 376 <xs:restriction base="xs:string"/> 377 </xs:simpleType> 378 <xs:simpleType name="PIType"> 379 <xs:restriction base="xs:string"/> 380 </xs:simpleType> 381 <xs:simpleType name="TempoDiConservazioneType"> 382 <xs:restriction base="xs:integer"> 383 <xs:minInclusive value="1"/> 384 <xs:maxInclusive value="9999"/> 385 </xs:restriction> 386 </xs:simpleType> 387</xs:schema>
Example:
1<?xml version="1.0" encoding="utf-8"?> 2<DocumentoInformatico version="1.0"> 3 <IdDoc> 4 <ImprontaCrittograficaDelDocumento> 5 <Impronta>320CB92BAFBF7FFC4B9B3FB398CF9335817FF2EFC1421B4B0F7A6D47662AF54A</Impronta> 6 <Algoritmo>SHA-256</Algoritmo> 7 </ImprontaCrittograficaDelDocumento> 8 <Identificativo>001A-2021</Identificativo> 9 </IdDoc> 10 <ModalitaDiFormazione>C</ModalitaDiFormazione> 11 <TipologiaDocumentale>Contratto</TipologiaDocumentale> 12 <DatiDiRegistrazione> 13 <TipologiaDiFlusso>U</TipologiaDiFlusso> 14 <TipoRegistro> 15 <Nessuno> 16 <TipoRegistro>Nessuno</TipoRegistro> 17 <DataDocumento>2021-01-12</DataDocumento> 18 <NumeroDocumento>CNTR-2101</NumeroDocumento> 19 </Nessuno> 20 </TipoRegistro> 21 </DatiDiRegistrazione> 22 <Soggetti> 23 <Ruolo> 24 <SoggettoCheEffettuaLaRegistrazione> 25 <TipoRuolo>Soggetto Che Effettua La Registrazione</TipoRuolo> 26 <PF> 27 <Cognome>Rossi</Cognome> 28 <Nome>Mario</Nome> 29 </PF> 30 </SoggettoCheEffettuaLaRegistrazione> 31 </Ruolo> 32 <Ruolo> 33 <Autore> 34 <TipoRuolo>Autore</TipoRuolo> 35 <PF> 36 <Cognome>Rossi</Cognome> 37 <Nome>Mario</Nome> 38 </PF> 39 </Autore> 40 </Ruolo> 41 <Ruolo> 42 <Destinatario> 43 <TipoRuolo>Destinatario</TipoRuolo> 44 <PG> 45 <DenominazioneOrganizzazione>Disneyland S.p.A.</DenominazioneOrganizzazione> 46 </PG> 47 </Destinatario> 48 </Ruolo> 49 </Soggetti> 50 <ChiaveDescrittiva> 51 <Oggetto>Contratto di affitto</Oggetto> 52 <ParoleChiave>Locazione</ParoleChiave> 53 </ChiaveDescrittiva> 54 <CampiVariabili> 55 <CampoVariabile> 56 <Nome>C13</Nome> 57 <Descrizione>Tipo Contratto</Descrizione> 58 <Valore>SERVI</Valore> 59 </CampoVariabile> 60 <CampoVariabile> 61 <Nome>C14</Nome> 62 <Descrizione>Anno Riferimento</Descrizione> 63 <Valore>2021</Valore> 64 </CampoVariabile> 65 <CampoVariabile> 66 <Nome>C16</Nome> 67 <Descrizione>Ente-Legale Rappresentante</Descrizione> 68 <Valore>AREA TECNICA COMUNE</Valore> 69 </CampoVariabile> 70 <CampoVariabile> 71 <Nome>C17</Nome> 72 <Descrizione>Oggetto del Contratto</Descrizione> 73 <Valore>CONTRATTO DI AFFITTO.</Valore> 74 </CampoVariabile> 75 <CampoVariabile> 76 <Nome>C19</Nome> 77 <Descrizione>CIG</Descrizione> 78 <Valore>F92F16000140004</Valore> 79 </CampoVariabile> 80 <CampoVariabile> 81 <Nome>C20</Nome> 82 <Descrizione>Importo</Descrizione> 83 <Valore>120,00</Valore> 84 </CampoVariabile> 85 <CampoVariabile> 86 <Nome>C22</Nome> 87 <Descrizione>CUP</Descrizione> 88 <Valore>03419611201</Valore> 89 </CampoVariabile> 90 <CampoVariabile> 91 <Nome>C32</Nome> 92 <Descrizione>Ufficiale Rogante</Descrizione> 93 <Valore>SEGRETARIO AGNELLI SANDRO</Valore> 94 </CampoVariabile> 95 </CampiVariabili> 96 <Allegati> 97 <NumeroAllegati>0</NumeroAllegati> 98 </Allegati> 99 <Riservato>true</Riservato> 100 <IdentificativoDelFormato> 101 <Formato>application/pdf</Formato> 102 </IdentificativoDelFormato> 103 <Verifica> 104 <FirmatoDigitalmente>true</FirmatoDigitalmente> 105 <SigillatoElettronicamente>false</SigillatoElettronicamente> 106 <MarcaturaTemporale>true</MarcaturaTemporale> 107 <ConformitaCopieImmagineSuSupportoInformatico>false</ConformitaCopieImmagineSuSupportoInformatico> 108 </Verifica> 109 <NomeDelDocumento>contratto_locazione.pdf</NomeDelDocumento> 110 <VersioneDelDocumento>1</VersioneDelDocumento> 111</DocumentoInformatico>
The XML "DOCUMENTO AMMINISTRATIVO INFORMATICO" file must respect this XSD format:
1<?xml version="1.0" encoding="UTF-8"?> 2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> 3 <xs:element name="DocumentoAmministrativoInformatico" type="DocumentoAmministrativoInformaticoType"/> 4 <xs:complexType name="DocumentoAmministrativoInformaticoType"> 5 <xs:sequence> 6 <xs:element name="IdDoc" type="IdDocType"/> 7 <xs:element name="ModalitaDiFormazione" type="ModalitaDiFormazioneType"/> 8 <xs:element name="TipologiaDocumentale" type="xs:string"/> 9 <xs:element name="DatiDiRegistrazione" type="DatiDiRegistrazioneType"/> 10 <xs:element name="Soggetti" type="SoggettiType"/> 11 <xs:element name="ChiaveDescrittiva" type="ChiaveDescrittivaType"/> 12 <xs:element name="CampiVariabili" type="CampiVariabiliType" minOccurs="0"/> 13 <xs:element name="Allegati" type="AllegatiType"/> 14 <xs:element name="Classificazione" type="ClassificazioneType"/> 15 <xs:element name="Riservato" type="xs:boolean"/> 16 <xs:element name="IdentificativoDelFormato" type="IdentificativoDelFormatoType"/> 17 <xs:element name="Verifica" type="VerificaType"/> 18 <xs:element name="Agg" type="AggType"/> 19 <xs:element name="IdIdentificativoDocumentoPrimario" type="IdDocType" minOccurs="0"/> 20 <xs:element name="NomeDelDocumento" type="xs:string"/> 21 <xs:element name="VersioneDelDocumento" type="xs:string"/> 22 <xs:element name="TracciatureModificheDocumento" type="TracciatureModificheDocumentoType" minOccurs="0"/> 23 <xs:element name="TempoDiConservazione" type="TempoDiConservazioneType" minOccurs="0"/> 24 <xs:element name="Note" type="xs:string" minOccurs="0"/> 25 </xs:sequence> 26 <xs:attribute name="version" use="required"> 27 <xs:simpleType> 28 <xs:restriction base="xs:string" /> 29 </xs:simpleType> 30 </xs:attribute> 31 </xs:complexType> 32 <xs:complexType name="IdDocType"> 33 <xs:sequence> 34 <xs:element name="ImprontaCrittograficaDelDocumento" type="ImprontaCrittograficaDelDocumentoType"/> 35 <xs:element name="Identificativo" type="xs:string"/> 36 <xs:element name="Segnatura" type="xs:string" minOccurs="0"/> 37 </xs:sequence> 38 </xs:complexType> 39 <xs:complexType name="ImprontaCrittograficaDelDocumentoType"> 40 <xs:sequence> 41 <xs:element name="Impronta" type="xs:string"/> 42 <xs:element name="Algoritmo" type="xs:string" default="SHA-256"/> 43 </xs:sequence> 44 </xs:complexType> 45 <xs:simpleType name="ModalitaDiFormazioneType"> 46 <xs:restriction base="xs:string"> 47 <xs:pattern value="[A-D]"/> 48 </xs:restriction> 49 </xs:simpleType> 50 <xs:complexType name="DatiDiRegistrazioneType"> 51 <xs:sequence> 52 <xs:element name="TipologiaDiFlusso" type="TipologiaDiFlussoType"/> 53 <xs:element name="TipoRegistro" type="TipoRegistroType"/> 54 </xs:sequence> 55 </xs:complexType> 56 <xs:simpleType name="TipologiaDiFlussoType"> 57 <xs:restriction base="xs:string"> 58 <xs:enumeration value="E"/> 59 <xs:enumeration value="U"/> 60 <xs:enumeration value="I"/> 61 </xs:restriction> 62 </xs:simpleType> 63 <xs:complexType name="TipoRegistroType"> 64 <xs:sequence> 65 <xs:choice> 66 <xs:element name="ProtocolloOrdinario_ProtocolloEmergenza" type="ProtocolloType"/> 67 <xs:element name="Repertorio_Registro" type="NoProtocolloType"/> 68 </xs:choice> 69 </xs:sequence> 70 </xs:complexType> 71 <xs:complexType name="ProtocolloType"> 72 <xs:sequence> 73 <xs:element name="TipoRegistro" type="xs:string" fixed='ProtocolloOrdinario\ProtocolloEmergenza'/> 74 <xs:element name="DataProtocollazioneDocumento" type="xs:date"/> 75 <xs:element name="OraProtocollazioneDocumento" type="xs:time" minOccurs="0"/> 76 <xs:element name="NumeroProtocolloDocumento" type="NumProtType"/> 77 <xs:element name="CodiceRegistro" type="CodiceRegistroType"/> 78 </xs:sequence> 79 </xs:complexType> 80 <xs:complexType name="NoProtocolloType"> 81 <xs:sequence> 82 <xs:element name="TipoRegistro" type="xs:string" fixed='Repertorio\Registro'/> 83 <xs:element name="DataRegistrazioneDocumento" type="xs:date"/> 84 <xs:element name="OraRegistrazioneDocumento" type="xs:time" minOccurs="0"/> 85 <xs:element name="NumeroRegistrazioneDocumento" type="xs:string"/> 86 <xs:element name="CodiceRegistro" type="CodiceRegistroType"/> 87 </xs:sequence> 88 </xs:complexType> 89 <xs:simpleType name="NumProtType"> 90 <xs:restriction base="xs:string"> 91 <xs:pattern value="[0-9]{7,}"/> 92 </xs:restriction> 93 </xs:simpleType> 94 <xs:simpleType name="CodiceRegistroType"> 95 <xs:restriction base="xs:string"> 96 <xs:pattern value="[A-Za-z0-9_\.\-]{1,16}"/> 97 </xs:restriction> 98 </xs:simpleType> 99 <xs:complexType name="SoggettiType"> 100 <xs:sequence> 101 <xs:element name="Ruolo" type="RuoloType" minOccurs="1" maxOccurs="unbounded"/> 102 </xs:sequence> 103 </xs:complexType> 104 <xs:complexType name="RuoloType"> 105 <xs:choice> 106 <xs:element name="AmministrazioneCheEffettuaLaRegistrazione" type="TipoSoggetto1Type"/> 107 <xs:element name="Assegnatario" type="TipoSoggetto2Type"/> 108 <xs:element name="Destinatario" type="TipoSoggetto31Type"/> 109 <xs:element name="Mittente" type="TipoSoggetto32Type"/> 110 <xs:element name="Autore" type="TipoSoggetto41Type"/> 111 <xs:element name="Operatore" type="TipoSoggetto42Type"/> 112 <xs:element name="ResponsabileGestioneDocumentale" type="TipoSoggetto43Type"/> 113 <xs:element name="ResponsabileServizioProtocollo" type="TipoSoggetto44Type"/> 114 <xs:element name="Produttore" type="TipoSoggetto5Type"/> 115 <xs:element name="RUP" type="TipoSoggetto6Type"/> 116 </xs:choice> 117 </xs:complexType> 118 <xs:complexType name="TipoSoggetto1Type"> 119 <xs:sequence> 120 <xs:element name="TipoRuolo" type="xs:string" fixed='Amministrazione Che Effettua La Registrazione'/> 121 <xs:element name="PAI" type="PAIType"/> 122 </xs:sequence> 123 </xs:complexType> 124 <xs:complexType name="TipoSoggetto2Type"> 125 <xs:sequence> 126 <xs:element name="TipoRuolo" type="xs:string" fixed='Assegnatario'/> 127 <xs:element name="AS" type="ASType"/> 128 </xs:sequence> 129 </xs:complexType> 130 <xs:complexType name="TipoSoggetto31Type"> 131 <xs:sequence> 132 <xs:element name="TipoRuolo" type="xs:string" fixed='Destinatario'/> 133 <xs:choice> 134 <xs:element name="PF" type="PFType"/> 135 <xs:element name="PG" type="PGType"/> 136 <xs:element name="PAI" type="PAIType"/> 137 <xs:element name="PAE" type="PAEType"/> 138 </xs:choice> 139 </xs:sequence> 140 </xs:complexType> 141 <xs:complexType name="TipoSoggetto32Type"> 142 <xs:sequence> 143 <xs:element name="TipoRuolo" type="xs:string" fixed='Mittente'/> 144 <xs:choice> 145 <xs:element name="PF" type="PFType"/> 146 <xs:element name="PG" type="PGType"/> 147 <xs:element name="PAI" type="PAIType"/> 148 <xs:element name="PAE" type="PAEType"/> 149 </xs:choice> 150 </xs:sequence> 151 </xs:complexType> 152 <xs:complexType name="TipoSoggetto41Type"> 153 <xs:sequence> 154 <xs:element name="TipoRuolo" type="xs:string" fixed='Autore'/> 155 <xs:choice> 156 <xs:element name="PF" type="PFType"/> 157 <xs:element name="PG" type="PGType"/> 158 <xs:element name="PAI" type="PAIType"/> 159 <xs:element name="PAE" type="PAEType"/> 160 </xs:choice> 161 </xs:sequence> 162 </xs:complexType> 163 <xs:complexType name="TipoSoggetto42Type"> 164 <xs:sequence> 165 <xs:element name="TipoRuolo" type="xs:string" fixed='Operatore'/> 166 <xs:element name="PF" type="PFType"/> 167 </xs:sequence> 168 </xs:complexType> 169 <xs:complexType name="TipoSoggetto43Type"> 170 <xs:sequence> 171 <xs:element name="TipoRuolo" type="xs:string" fixed='Responsabile della Gestione Documentale'/> 172 <xs:element name="PF" type="PFType"/> 173 </xs:sequence> 174 </xs:complexType> 175 <xs:complexType name="TipoSoggetto44Type"> 176 <xs:sequence> 177 <xs:element name="TipoRuolo" type="xs:string" fixed='Responsabile del Servizio di Protocollo'/> 178 <xs:element name="PF" type="PFType"/> 179 </xs:sequence> 180 </xs:complexType> 181 <xs:complexType name="TipoSoggetto5Type"> 182 <xs:sequence> 183 <xs:element name="TipoRuolo" type="xs:string" fixed='Produttore'/> 184 <xs:element name="SW" type="SWType"/> 185 </xs:sequence> 186 </xs:complexType> 187 <xs:complexType name="TipoSoggetto6Type"> 188 <xs:sequence> 189 <xs:element name="TipoRuolo" type="xs:string" fixed='RUP'/> 190 <xs:element name="RUP" type="RUPType"/> 191 </xs:sequence> 192 </xs:complexType> 193 <xs:complexType name="ASType"> 194 <xs:sequence> 195 <xs:element name="Cognome" type="xs:string" minOccurs="0"/> 196 <xs:element name="Nome" type="xs:string" minOccurs="0"/> 197 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 198 <xs:element name="IPAAmm" type="CodiceIPAType"/> 199 <xs:element name="IPAAOO" type="CodiceIPAType"/> 200 <xs:element name="IPAUOR" type="CodiceIPAType"/> 201 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 202 </xs:sequence> 203 </xs:complexType> 204 <xs:complexType name="RUPType"> 205 <xs:sequence> 206 <xs:element name="Cognome" type="xs:string"/> 207 <xs:element name="Nome" type="xs:string"/> 208 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 209 <xs:element name="IPAAmm" type="CodiceIPAType"/> 210 <xs:element name="IPAAOO" type="CodiceIPAType"/> 211 <xs:element name="IPAUOR" type="CodiceIPAType"/> 212 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 213 </xs:sequence> 214 </xs:complexType> 215 <xs:complexType name="PFType"> 216 <xs:sequence> 217 <xs:element name="Cognome" type="xs:string"/> 218 <xs:element name="Nome" type="xs:string"/> 219 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 220 <xs:element name="IPAAmm" type="CodiceIPAType" minOccurs="0"/> 221 <xs:element name="IPAAOO" type="CodiceIPAType" minOccurs="0"/> 222 <xs:element name="IPAUOR" type="CodiceIPAType" minOccurs="0"/> 223 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 224 </xs:sequence> 225 </xs:complexType> 226 <xs:complexType name="PGType"> 227 <xs:sequence> 228 <xs:element name="DenominazioneOrganizzazione" type="xs:string"/> 229 <xs:element name="CodiceFiscale_PartitaIva" type="PIType" minOccurs="0"/> 230 <xs:element name="DenominazioneUfficio" type="xs:string" minOccurs="0"/> 231 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 232 </xs:sequence> 233 </xs:complexType> 234 <xs:complexType name="PAIType"> 235 <xs:sequence> 236 <xs:element name="IPAAmm" type="CodiceIPAType"/> 237 <xs:element name="IPAAOO" type="CodiceIPAType"/> 238 <xs:element name="IPAUOR" type="CodiceIPAType" minOccurs="0"/> 239 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 240 </xs:sequence> 241 </xs:complexType> 242 <xs:complexType name="PAEType"> 243 <xs:sequence> 244 <xs:element name="DenominazioneAmministrazione" type="xs:string"/> 245 <xs:element name="DenominazioneUfficio" type="xs:string" minOccurs="0"/> 246 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 247 </xs:sequence> 248 </xs:complexType> 249 <xs:complexType name="CodiceIPAType"> 250 <xs:sequence> 251 <xs:element name="Denominazione" type="xs:string"/> 252 <xs:element name="CodiceIPA" type="xs:string"/> 253 </xs:sequence> 254 </xs:complexType> 255 <xs:complexType name="SWType"> 256 <xs:sequence> 257 <xs:element name="DenominazioneSistema" type="xs:string"/> 258 </xs:sequence> 259 </xs:complexType> 260 <xs:complexType name="ChiaveDescrittivaType"> 261 <xs:sequence> 262 <xs:element name="Oggetto" type="xs:string"/> 263 <xs:element name="ParoleChiave" type="xs:string" minOccurs="0" maxOccurs="5"/> 264 </xs:sequence> 265 </xs:complexType> 266 <xs:complexType name="CampiVariabiliType"> 267 <xs:sequence> 268 <xs:element name="CampoVariabile" minOccurs="1" maxOccurs="unbounded"> 269 <xs:complexType> 270 <xs:sequence> 271 <xs:element name="Nome" type="xs:string" /> 272 <xs:element name="Descrizione"> 273 <xs:simpleType> 274 <xs:restriction base="xs:string"> 275 <xs:minLength value="1"/> 276 </xs:restriction> 277 </xs:simpleType> 278 </xs:element> 279 <xs:element name="Valore" type="xs:string" /> 280 </xs:sequence> 281 </xs:complexType> 282 </xs:element> 283 </xs:sequence> 284 </xs:complexType> 285 <xs:complexType name="AllegatiType"> 286 <xs:sequence> 287 <xs:element name="NumeroAllegati" type="NumeroAllegatiType"/> 288 <xs:element name="IndiceAllegati" type="IndiceAllegatiType" minOccurs="0" maxOccurs="9999"/> 289 </xs:sequence> 290 <xs:attribute name="ModalitaAllegati" default="Esterna"> 291 <xs:simpleType> 292 <xs:restriction base="xs:string"> 293 <xs:enumeration value="Esterna"/> 294 <xs:enumeration value="Interna"/> 295 </xs:restriction> 296 </xs:simpleType> 297 </xs:attribute> 298 </xs:complexType> 299 <xs:simpleType name="NumeroAllegatiType"> 300 <xs:restriction base="xs:integer"> 301 <xs:minInclusive value="0"/> 302 <xs:maxInclusive value="9999"/> 303 </xs:restriction> 304 </xs:simpleType> 305 <xs:complexType name="IndiceAllegatiType"> 306 <xs:sequence> 307 <xs:element name="IdDoc" type="IdDocType"/> 308 <xs:element name="Descrizione" type="xs:string"/> 309 </xs:sequence> 310 </xs:complexType> 311 <xs:complexType name="ClassificazioneType"> 312 <xs:sequence> 313 <xs:element name="IndiceDiClassificazione" type="xs:string"/> 314 <xs:element name="Descrizione" type="xs:string"/> 315 <xs:element name="PianoDiClassificazione" type="xs:string" minOccurs="0"/> 316 </xs:sequence> 317 </xs:complexType> 318 <xs:complexType name="IdentificativoDelFormatoType"> 319 <xs:sequence> 320 <xs:element name="Formato" type="xs:string"/> 321 <xs:element name="ProdottoSoftware" type="ProdottoSoftwareType" minOccurs="0"/> 322 </xs:sequence> 323 </xs:complexType> 324 <xs:complexType name="ProdottoSoftwareType"> 325 <xs:sequence> 326 <xs:element name="NomeProdotto" type="xs:string" minOccurs="0"/> 327 <xs:element name="VersioneProdotto" type="xs:string" minOccurs="0"/> 328 <xs:element name="Produttore" type="xs:string" minOccurs="0"/> 329 </xs:sequence> 330 </xs:complexType> 331 <xs:complexType name="VerificaType"> 332 <xs:sequence> 333 <xs:element name="FirmatoDigitalmente" type="xs:boolean"/> 334 <xs:element name="SigillatoElettronicamente" type="xs:boolean"/> 335 <xs:element name="MarcaturaTemporale" type="xs:boolean"/> 336 <xs:element name="ConformitaCopieImmagineSuSupportoInformatico" type="xs:boolean"/> 337 </xs:sequence> 338 </xs:complexType> 339 <xs:complexType name="AggType"> 340 <xs:sequence> 341 <xs:element name="TipoAgg" type="IdAggType" minOccurs="1" maxOccurs="unbounded"/> 342 </xs:sequence> 343 </xs:complexType> 344 <xs:complexType name="IdAggType"> 345 <xs:sequence> 346 <xs:element name="TipoAggregazione" type="TipoAggregazioneType"/> 347 <xs:element name="IdAggregazione" type="xs:string"/> 348 </xs:sequence> 349 </xs:complexType> 350 <xs:simpleType name="TipoAggregazioneType"> 351 <xs:restriction base="xs:string"> 352 <xs:enumeration value="Fascicolo"/> 353 <xs:enumeration value="Serie Documentale"/> 354 <xs:enumeration value="Serie Di Fascicoli"/> 355 </xs:restriction> 356 </xs:simpleType> 357 <xs:complexType name="TracciatureModificheDocumentoType"> 358 <xs:sequence> 359 <xs:element name="TipoModifica" type="TipoModificaType"/> 360 <xs:element name="SoggettoAutoreDellaModifica" type="PFType"/> 361 <xs:element name="DataModifica" type="xs:date"/> 362 <xs:element name="OraModifica" type="xs:time" minOccurs="0"/> 363 <xs:element name="IdDocVersionePrecedente" type="IdDocType"/> 364 </xs:sequence> 365 </xs:complexType> 366 <xs:simpleType name="TipoModificaType"> 367 <xs:restriction base="xs:string"> 368 <xs:enumeration value="Annullamento"/> 369 <xs:enumeration value="Rettifica"/> 370 <xs:enumeration value="Integrazione"/> 371 <xs:enumeration value="Annotazione"/> 372 </xs:restriction> 373 </xs:simpleType> 374 <xs:simpleType name="CFType"> 375 <xs:restriction base="xs:string"/> 376 </xs:simpleType> 377 <xs:simpleType name="PIType"> 378 <xs:restriction base="xs:string"/> 379 </xs:simpleType> 380 <xs:simpleType name="TempoDiConservazioneType"> 381 <xs:restriction base="xs:integer"> 382 <xs:minInclusive value="1"/> 383 <xs:maxInclusive value="9999"/> 384 </xs:restriction> 385 </xs:simpleType> 386</xs:schema>
Example:
1<?xml version="1.0" encoding="utf-16"?> 2<DocumentoAmministrativoInformatico xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0"> 3 <IdDoc> 4 <ImprontaCrittograficaDelDocumento> 5 <Impronta>8B4ED660699A7AFF0806CFBBBF78A6588C594F32C60DE5046BB0E0E83EB755B3</Impronta> 6 <Algoritmo>SHA-256</Algoritmo> 7 </ImprontaCrittograficaDelDocumento> 8 <Identificativo>00000010</Identificativo> 9 </IdDoc> 10 <ModalitaDiFormazione>D</ModalitaDiFormazione> 11 <TipologiaDocumentale>PROTO</TipologiaDocumentale> 12 <DatiDiRegistrazione> 13 <TipologiaDiFlusso>E</TipologiaDiFlusso> 14 <TipoRegistro> 15 <Repertorio_Registro> 16 <TipoRegistro>Repertorio\Registro</TipoRegistro> 17 <DataRegistrazioneDocumento>2017-05-30</DataRegistrazioneDocumento> 18 <NumeroRegistrazioneDocumento>2</NumeroRegistrazioneDocumento> 19 <CodiceRegistro>ABCWASDFGVDERGGD</CodiceRegistro> 20 </Repertorio_Registro> 21 </TipoRegistro> 22 </DatiDiRegistrazione> 23 <Soggetti> 24 <Ruolo> 25 <AmministrazioneCheEffettuaLaRegistrazione> 26 <TipoRuolo>Amministrazione Che Effettua La Registrazione</TipoRuolo> 27 <PAI> 28 <IPAAmm> 29 <Denominazione>Denominazione Amministrazione</Denominazione> 30 <CodiceIPA>codiceIpaTest</CodiceIPA> 31 </IPAAmm> 32 <IPAAOO> 33 <Denominazione /> 34 <CodiceIPA /> 35 </IPAAOO> 36 <IPAUOR> 37 <Denominazione /> 38 <CodiceIPA /> 39 </IPAUOR> 40 <IndirizziDigitaliDiRiferimento>test@test.it</IndirizziDigitaliDiRiferimento> 41 </PAI> 42 </AmministrazioneCheEffettuaLaRegistrazione> 43 </Ruolo> 44 <Ruolo> 45 <Autore> 46 <TipoRuolo>Autore</TipoRuolo> 47 <PF> 48 <Cognome>Test</Cognome> 49 <Nome>Test</Nome> 50 </PF> 51 </Autore> 52 </Ruolo> 53 <Ruolo> 54 <ResponsabileServizioProtocollo> 55 <TipoRuolo>Responsabile del Servizio di Protocollo</TipoRuolo> 56 <PF> 57 <Cognome>none</Cognome> 58 <Nome>none</Nome> 59 <CodiceFiscale>LLLXXX91A51M123A</CodiceFiscale> 60 </PF> 61 </ResponsabileServizioProtocollo> 62 </Ruolo> 63 <Ruolo> 64 <Mittente> 65 <TipoRuolo>Mittente</TipoRuolo> 66 <PAI> 67 <IPAAmm> 68 <Denominazione>denominazioneTest</Denominazione> 69 <CodiceIPA>test</CodiceIPA> 70 </IPAAmm> 71 <IPAAOO> 72 <Denominazione /> 73 <CodiceIPA /> 74 </IPAAOO> 75 <IPAUOR> 76 <Denominazione /> 77 <CodiceIPA /> 78 </IPAUOR> 79 <IndirizziDigitaliDiRiferimento>test@test.it</IndirizziDigitaliDiRiferimento> 80 </PAI> 81 </Mittente> 82 </Ruolo> 83 <Ruolo> 84 <Destinatario> 85 <TipoRuolo>Destinatario</TipoRuolo> 86 <PF> 87 <Cognome>testCognome</Cognome> 88 <Nome>testNome</Nome> 89 <CodiceFiscale>LLLXXX91A51M123A</CodiceFiscale> 90 </PF> 91 </Destinatario> 92 </Ruolo> 93 </Soggetti> 94 <ChiaveDescrittiva> 95 <Oggetto>oggetto del documento</Oggetto> 96 </ChiaveDescrittiva> 97 <CampiVariabili> 98 <CampoVariabile> 99 <Nome>C12</Nome> 100 <Descrizione>Anno</Descrizione> 101 <Valore>2018</Valore> 102 </CampoVariabile> 103 <CampoVariabile> 104 <Nome>C17</Nome> 105 <Descrizione>Titolo</Descrizione> 106 <Valore>Test Invio Multiplo</Valore> 107 </CampoVariabile> 108 <CampoVariabile> 109 <Nome>C91</Nome> 110 <Descrizione>Categoria</Descrizione> 111 <Valore>PROTO</Valore> 112 </CampoVariabile> 113 <CampoVariabile> 114 <Nome>C95</Nome> 115 <Descrizione>Data Creazione</Descrizione> 116 <Valore>22/11/2018 10:10:10</Valore> 117 </CampoVariabile> 118 <CampoVariabile> 119 <Nome>C96</Nome> 120 <Descrizione>Data Chiusura</Descrizione> 121 <Valore>04/11/2021 12:12:27</Valore> 122 </CampoVariabile> 123 </CampiVariabili> 124 <Allegati> 125 <NumeroAllegati>1</NumeroAllegati> 126 <IndiceAllegati> 127 <IdDoc> 128 <ImprontaCrittograficaDelDocumento> 129 <Impronta>320CB92BAFBF7FFC4B9B3FB398CF9335817FF2EFC1421B4B0F7A6D47662AF54A</Impronta> 130 <Algoritmo>SHA-256</Algoritmo> 131 </ImprontaCrittograficaDelDocumento> 132 <Identificativo>00000002</Identificativo> 133 </IdDoc> 134 <Descrizione>Descrizione allegato</Descrizione> 135 </IndiceAllegati> 136 </Allegati> 137 <Classificazione> 138 <IndiceDiClassificazione /> 139 <Descrizione /> 140 <PianoDiClassificazione /> 141 </Classificazione> 142 <Riservato>true</Riservato> 143 <IdentificativoDelFormato> 144 <Formato>pdf</Formato> 145 <ProdottoSoftware> 146 <NomeProdotto>CiviliaNext</NomeProdotto> 147 <VersioneProdotto>0.1</VersioneProdotto> 148 <Produttore>Dedagroup</Produttore> 149 </ProdottoSoftware> 150 </IdentificativoDelFormato> 151 <Verifica> 152 <FirmatoDigitalmente>false</FirmatoDigitalmente> 153 <SigillatoElettronicamente>false</SigillatoElettronicamente> 154 <MarcaturaTemporale>false</MarcaturaTemporale> 155 <ConformitaCopieImmagineSuSupportoInformatico>false</ConformitaCopieImmagineSuSupportoInformatico> 156 </Verifica> 157 <Agg> 158 <TipoAgg> 159 <TipoAggregazione>Fascicolo</TipoAggregazione> 160 <IdAggregazione>idAggregazione</IdAggregazione> 161 </TipoAgg> 162 </Agg> 163 <NomeDelDocumento>contratto_locazione.pdf</NomeDelDocumento> 164 <VersioneDelDocumento>1</VersioneDelDocumento> 165</DocumentoAmministrativoInformatico>
The XML "AGGREGAZIONE DOCUMENTALI INFORMATICHE" file must respect this XSD format:
1<?xml version="1.0" encoding="UTF-8"?> 2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> 3 <xs:element name="AggregazioneDocumentaliInformatiche" type="AggregazioneDocumentaliInformaticheType"/> 4 <xs:complexType name="AggregazioneDocumentaliInformaticheType"> 5 <xs:sequence> 6 <xs:element name="IdAgg" type="IdAggType"/> 7 <xs:element name="TipologiaFascicolo" type="TipologiaFascicoloType" minOccurs="0"/> 8 <xs:element name="Soggetti" type="SoggettiType"/> 9 <xs:element name="Assegnazione" type="AssegnazioneType"/> 10 <xs:element name="DataApertura" type="xs:date"/> 11 <xs:element name="Classificazione" type="ClassificazioneType"/> 12 <xs:element name="Progressivo" type="ProgressivoType"/> 13 <xs:element name="ChiaveDescrittiva" type="ChiaveDescrittivaType"/> 14 <xs:element name="DataChiusura" type="xs:date" minOccurs="0"/> 15 <xs:element name="ProcedimentoAmministrativo" type="ProcedimentoAmministrativoType" minOccurs="0"/> 16 <xs:element name="IndiceDocumenti" type="IndiceDocumentiType"/> 17 <xs:element name="PosizioneFisicaAggregazioneDocumentale" type="xs:string" minOccurs="0"/> 18 <xs:element name="IdAggPrimario" type="IdAggType" minOccurs="0"/> 19 <xs:element name="TempoDiConservazione" type="TempoDiConservazioneType" minOccurs="0"/> 20 <xs:element name="Note" type="xs:string" minOccurs="0"/> 21 </xs:sequence> 22 <xs:attribute name="version" use="required"> 23 <xs:simpleType> 24 <xs:restriction base="xs:string" /> 25 </xs:simpleType> 26 </xs:attribute> 27 </xs:complexType> 28 <xs:complexType name="IdAggType"> 29 <xs:sequence> 30 <xs:element name="TipoAggregazione" type="TipoAggregazioneType"/> 31 <xs:element name="IdAggregazione" type="xs:string"/> 32 </xs:sequence> 33 </xs:complexType> 34 <xs:simpleType name="TipoAggregazioneType"> 35 <xs:restriction base="xs:string"> 36 <xs:enumeration value="Fascicolo"/> 37 <xs:enumeration value="Serie Documentale"/> 38 <xs:enumeration value="Serie Di Fascicoli"/> 39 </xs:restriction> 40 </xs:simpleType> 41 <xs:simpleType name="TipologiaFascicoloType"> 42 <xs:restriction base="xs:string"> 43 <xs:enumeration value="affare"/> 44 <xs:enumeration value="attivita"/> 45 <xs:enumeration value="persona fisica"/> 46 <xs:enumeration value="persona giuridica"/> 47 <xs:enumeration value="procedimento amministrativo"/> 48 </xs:restriction> 49 </xs:simpleType> 50 <xs:complexType name="SoggettiType"> 51 <xs:sequence> 52 <xs:element name="Ruolo" type="RuoloType" minOccurs="1" maxOccurs="unbounded"/> 53 </xs:sequence> 54 </xs:complexType> 55 <xs:complexType name="RuoloType"> 56 <xs:choice> 57 <xs:element name="AmministrazioneTitolare" type="TipoSoggetto1Type"/> 58 <xs:element name="AmministrazionePartecipante" type="TipoSoggetto6Type"/> 59 <xs:element name="SoggettoIntestatarioPersonaGiuridica" type="TipoSoggetto2Type"/> 60 <xs:element name="SoggettoIntestatarioPersonaFisica" type="TipoSoggetto3Type"/> 61 <xs:element name="RUP" type="TipoSoggetto4Type"/> 62 <xs:element name="Assegnatario" type="TipoSoggetto5Type"/> 63 </xs:choice> 64 </xs:complexType> 65 <xs:complexType name="TipoSoggetto1Type"> 66 <xs:sequence> 67 <xs:element name="TipoRuolo" type="xs:string" fixed='Amministrazione Titolare'/> 68 <xs:element name="PAI" type="PAIType"/> 69 </xs:sequence> 70 </xs:complexType> 71 <xs:complexType name="TipoSoggetto6Type"> 72 <xs:sequence> 73 <xs:element name="TipoRuolo" type="xs:string" fixed='Amministrazione Partecipante'/> 74 <xs:choice> 75 <xs:element name="PAI" type="PAIType"/> 76 <xs:element name="PAE" type="PAEType"/> 77 </xs:choice> 78 </xs:sequence> 79 </xs:complexType> 80 <xs:complexType name="TipoSoggetto2Type"> 81 <xs:sequence> 82 <xs:element name="TipoRuolo" type="xs:string" fixed='Soggetto Intestatario Persona Giuridica'/> 83 <xs:choice> 84 <xs:element name="PG" type="PGType"/> 85 <xs:element name="PAI" type="PAIType"/> 86 <xs:element name="PAE" type="PAEType"/> 87 </xs:choice> 88 </xs:sequence> 89 </xs:complexType> 90 <xs:complexType name="TipoSoggetto3Type"> 91 <xs:sequence> 92 <xs:element name="TipoRuolo" type="xs:string" fixed='Soggetto Intestatario Persona Fisica'/> 93 <xs:choice> 94 <xs:element name="PF" type="PFType"/> 95 </xs:choice> 96 </xs:sequence> 97 </xs:complexType> 98 <xs:complexType name="TipoSoggetto4Type"> 99 <xs:sequence> 100 <xs:element name="TipoRuolo" type="xs:string" fixed='RUP'/> 101 <xs:element name="RUP" type="RUPType"/> 102 </xs:sequence> 103 </xs:complexType> 104 <xs:complexType name="RUPType"> 105 <xs:sequence> 106 <xs:element name="Cognome" type="xs:string"/> 107 <xs:element name="Nome" type="xs:string"/> 108 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 109 <xs:element name="IPAAmm" type="CodiceIPAType"/> 110 <xs:element name="IPAAOO" type="CodiceIPAType"/> 111 <xs:element name="IPAUOR" type="CodiceIPAType"/> 112 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 113 </xs:sequence> 114 </xs:complexType> 115 <xs:complexType name="TipoSoggetto5Type"> 116 <xs:sequence> 117 <xs:element name="TipoRuolo" type="xs:string" fixed='Assegnatario'/> 118 <xs:element name="AS" type="ASType"/> 119 </xs:sequence> 120 </xs:complexType> 121 <xs:complexType name="ASType"> 122 <xs:sequence> 123 <xs:element name="Cognome" type="xs:string" minOccurs="0"/> 124 <xs:element name="Nome" type="xs:string" minOccurs="0"/> 125 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 126 <xs:element name="IPAAmm" type="CodiceIPAType"/> 127 <xs:element name="IPAAOO" type="CodiceIPAType"/> 128 <xs:element name="IPAUOR" type="CodiceIPAType"/> 129 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 130 </xs:sequence> 131 </xs:complexType> 132 <xs:complexType name="PFType"> 133 <xs:sequence> 134 <xs:element name="Cognome" type="xs:string"/> 135 <xs:element name="Nome" type="xs:string"/> 136 <xs:element name="CodiceFiscale" type="CFType" minOccurs="0"/> 137 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 138 </xs:sequence> 139 </xs:complexType> 140 <xs:complexType name="PGType"> 141 <xs:sequence> 142 <xs:element name="DenominazioneOrganizzazione" type="xs:string"/> 143 <xs:element name="CodiceFiscale_PartitaIva" type="PIType" minOccurs="0"/> 144 <xs:element name="DenominazioneUfficio" type="xs:string" minOccurs="0"/> 145 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> 146 </xs:sequence> 147 </xs:complexType> 148 <xs:complexType name="PAIType"> 149 <xs:sequence> 150 <xs:element name="IPAAmm" type="CodiceIPAType"/> 151 <xs:element name="IPAAOO" type="CodiceIPAType"/> 152 <xs:element name="IPAUOR" type="CodiceIPAType" minOccurs="0"/> 153 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 154 </xs:sequence> 155 </xs:complexType> 156 <xs:complexType name="CodiceIPAType"> 157 <xs:sequence> 158 <xs:element name="Denominazione" type="xs:string"/> 159 <xs:element name="CodiceIPA" type="xs:string"/> 160 </xs:sequence> 161 </xs:complexType> 162 <xs:complexType name="PAEType"> 163 <xs:sequence> 164 <xs:element name="DenominazioneAmministrazione" type="xs:string"/> 165 <xs:element name="DenominazioneUfficio" type="xs:string" minOccurs="0"/> 166 <xs:element name="IndirizziDigitaliDiRiferimento" type="xs:string" minOccurs="1" maxOccurs="unbounded"/> 167 </xs:sequence> 168 </xs:complexType> 169 <xs:complexType name="AssegnazioneType"> 170 <xs:sequence> 171 <xs:element name="TipoAssegnazione" type="TipoAssegnazioneType" minOccurs="0" maxOccurs="unbounded"/> 172 </xs:sequence> 173 </xs:complexType> 174 <xs:complexType name="TipoAssegnazioneType"> 175 <xs:choice> 176 <xs:element name="PerCompetenza" type="AssType"/> 177 <xs:element name="PerConoscenza" type="Ass1Type"/> 178 </xs:choice> 179 </xs:complexType> 180 <xs:complexType name="AssType"> 181 <xs:sequence> 182 <xs:element name="TipoAssegnazioneRuolo" type="xs:string" fixed='Per Competenza'/> 183 <xs:element name="SoggettoAssegnatario" type="ASType"/> 184 <xs:element name="DataInizioAssegnazione" type="xs:date"/> 185 <xs:element name="OraInizioAssegnazione" type="xs:time" minOccurs="0"/> 186 <xs:element name="DataFineAssegnazione" type="xs:date" minOccurs="0"/> 187 <xs:element name="OraFineAssegnazione" type="xs:time" minOccurs="0"/> 188 </xs:sequence> 189 </xs:complexType> 190 <xs:complexType name="Ass1Type"> 191 <xs:sequence> 192 <xs:element name="TipoAssegnazioneRuolo" type="xs:string" fixed='Per Conoscenza'/> 193 <xs:element name="SoggettoAssegnatario" type="ASType"/> 194 <xs:element name="DataInizioAssegnazione" type="xs:date"/> 195 <xs:element name="OraInizioAssegnazione" type="xs:time" minOccurs="0"/> 196 <xs:element name="DataFineAssegnazione" type="xs:date" minOccurs="0"/> 197 <xs:element name="OraFineAssegnazione" type="xs:time" minOccurs="0"/> 198 </xs:sequence> 199 </xs:complexType> 200 <xs:complexType name="ClassificazioneType"> 201 <xs:sequence> 202 <xs:element name="IndiceDiClassificazione" type="xs:string"/> 203 <xs:element name="Descrizione" type="xs:string"/> 204 <xs:element name="PianoDiClassificazione" type="xs:string" minOccurs="0"/> 205 </xs:sequence> 206 </xs:complexType> 207 <xs:simpleType name="ProgressivoType"> 208 <xs:restriction base="xs:integer"> 209 <xs:minInclusive value="1"/> 210 <xs:maxInclusive value="999999999"/> 211 </xs:restriction> 212 </xs:simpleType> 213 <xs:complexType name="ChiaveDescrittivaType"> 214 <xs:sequence> 215 <xs:element name="Oggetto" type="xs:string"/> 216 <xs:element name="ParoleChiave" type="xs:string" minOccurs="0" maxOccurs="5"/> 217 </xs:sequence> 218 </xs:complexType> 219 <xs:complexType name="ProcedimentoAmministrativoType"> 220 <xs:sequence> 221 <xs:element name="MateriaArgomentoStruttura" type="xs:string"/> 222 <xs:element name="Procedimento" type="xs:string"/> 223 <xs:element name="CatalogoProcedimenti" type="xs:string" minOccurs="0"/> 224 <xs:element name="Fasi" type="FaseType"/> 225 </xs:sequence> 226 </xs:complexType> 227 <xs:complexType name="FaseType"> 228 <xs:sequence> 229 <xs:element name="TipoFase" type="TipoFaseType" minOccurs="1" maxOccurs="unbounded"/> 230 </xs:sequence> 231 </xs:complexType> 232 <xs:complexType name="TipoFaseType"> 233 <xs:choice> 234 <xs:element name="Preparatoria" type="TipoFase1Type"/> 235 <xs:element name="Istruttoria" type="TipoFase2Type"/> 236 <xs:element name="Consultiva" type="TipoFase3Type"/> 237 <xs:element name="Decisoriaodeliberativa" type="TipoFase4Type"/> 238 <xs:element name="Integrazionedellefficacia" type="TipoFase5Type"/> 239 </xs:choice> 240 </xs:complexType> 241 <xs:complexType name="TipoFase1Type"> 242 <xs:sequence> 243 <xs:element name="Fase" type="xs:string" fixed='Preparatoria'/> 244 <xs:element name="DataInizioFase" type="xs:date"/> 245 <xs:element name="DataFineFase" type="xs:date" minOccurs="0"/> 246 </xs:sequence> 247 </xs:complexType> 248 <xs:complexType name="TipoFase2Type"> 249 <xs:sequence> 250 <xs:element name="Fase" type="xs:string" fixed='Istruttoria'/> 251 <xs:element name="DataInizioFase" type="xs:date"/> 252 <xs:element name="DataFineFase" type="xs:date" minOccurs="0"/> 253 </xs:sequence> 254 </xs:complexType> 255 <xs:complexType name="TipoFase3Type"> 256 <xs:sequence> 257 <xs:element name="Fase" type="xs:string" fixed='Consultiva'/> 258 <xs:element name="DataInizioFase" type="xs:date"/> 259 <xs:element name="DataFineFase" type="xs:date" minOccurs="0"/> 260 </xs:sequence> 261 </xs:complexType> 262 <xs:complexType name="TipoFase4Type"> 263 <xs:sequence> 264 <xs:element name="Fase" type="xs:string" fixed='Decisoria o deliberativa'/> 265 <xs:element name="DataInizioFase" type="xs:date"/> 266 <xs:element name="DataFineFase" type="xs:date" minOccurs="0"/> 267 </xs:sequence> 268 </xs:complexType> 269 <xs:complexType name="TipoFase5Type"> 270 <xs:sequence> 271 <xs:element name="Fase" type="xs:string" fixed='Integrazione dell’efficacia'/> 272 <xs:element name="DataInizioFase" type="xs:date"/> 273 <xs:element name="DataFineFase" type="xs:date" minOccurs="0"/> 274 </xs:sequence> 275 </xs:complexType> 276 <xs:complexType name="IndiceDocumentiType"> 277 <xs:sequence> 278 <xs:element name="TipoDocumento" type="TipoDocumentoType" minOccurs="1" maxOccurs="unbounded"/> 279 </xs:sequence> 280 </xs:complexType> 281 <xs:complexType name="TipoDocumentoType"> 282 <xs:choice> 283 <xs:element name="DocumentoAmministativoinformatico" type="IdDoc_DAIType"/> 284 <xs:element name="Documentoinformatico" type="IdDoc_DIType"/> 285 </xs:choice> 286 </xs:complexType> 287 <xs:complexType name="IdDoc_DAIType"> 288 <xs:sequence> 289 <xs:element name="ImprontaCrittograficaDelDocumento" type="ImprontaCrittograficaDelDocumentoType"/> 290 <xs:element name="Identificativo" type="xs:string"/> 291 <xs:element name="Segnatura" type="xs:string" minOccurs="0"/> 292 </xs:sequence> 293 </xs:complexType> 294 <xs:complexType name="IdDoc_DIType"> 295 <xs:sequence> 296 <xs:element name="ImprontaCrittograficaDelDocumento" type="ImprontaCrittograficaDelDocumentoType"/> 297 <xs:element name="Identificativo" type="xs:string"/> 298 </xs:sequence> 299 </xs:complexType> 300 <xs:complexType name="ImprontaCrittograficaDelDocumentoType"> 301 <xs:sequence> 302 <xs:element name="Impronta" type="xs:string"/> 303 <xs:element name="Algoritmo" type="xs:string" default="SHA-256"/> 304 </xs:sequence> 305 </xs:complexType> 306 <xs:simpleType name="CFType"> 307 <xs:restriction base="xs:string"> 308 <xs:pattern value="[A-Z]{6}[0-9LMNPQRSTUV]{2}[ABCDEHLMPRST][0-9LMNPQRSTUV]{2}[A-Z][0-9LMNPQRSTUV]{3}[A-Z]"/> 309 </xs:restriction> 310 </xs:simpleType> 311 <xs:simpleType name="PIType"> 312 <xs:restriction base="xs:string"> 313 <xs:pattern value="\d{11}"/> 314 </xs:restriction> 315 </xs:simpleType> 316 <xs:simpleType name="TempoDiConservazioneType"> 317 <xs:restriction base="xs:integer"> 318 <xs:minInclusive value="1"/> 319 <xs:maxInclusive value="9999"/> 320 </xs:restriction> 321 </xs:simpleType> 322</xs:schema>
Example:
1<?xml version="1.0" encoding="utf-8"?> 2<AggregazioneDocumentaliInformatiche version="1.0"> 3 <IdAgg> 4 <TipoAggregazione>Fascicolo</TipoAggregazione> 5 <IdAggregazione>3</IdAggregazione> 6 </IdAgg> 7 <TipologiaFascicolo>affare</TipologiaFascicolo> 8 <Soggetti> 9 <Ruolo> 10 <SoggettoIntestatarioPersonaGiuridica> 11 <TipoRuolo>Soggetto Intestatario Persona Giuridica</TipoRuolo> 12 <PG> 13 <DenominazioneOrganizzazione>Marco Gaio</DenominazioneOrganizzazione> 14 </PG> 15 </SoggettoIntestatarioPersonaGiuridica> 16 </Ruolo> 17 </Soggetti> 18 <Assegnazione> 19 <TipoAssegnazione> 20 <PerCompetenza> 21 <TipoAssegnazioneRuolo>Per Competenza</TipoAssegnazioneRuolo> 22 <SoggettoAssegnatario> 23 <IPAAmm> 24 <Denominazione>ISTITUTO COMPRENSIVO - 'GEN.P. FERRARI'</Denominazione> 25 <CodiceIPA>istsc_msic81100n</CodiceIPA> 26 </IPAAmm> 27 <IPAAOO> 28 <Denominazione>ISTITUTO COMPRENSIVO - 'GEN.P. FERRARI'</Denominazione> 29 <CodiceIPA>A7FB78E</CodiceIPA> 30 </IPAAOO> 31 <IPAUOR> 32 <Denominazione>ISTITUTO COMPRENSIVO - 'GEN.P. FERRARI'</Denominazione> 33 <CodiceIPA>A7FB78E</CodiceIPA> 34 </IPAUOR> 35 <IndirizziDigitaliDiRiferimento>enerj@actalispec.it</IndirizziDigitaliDiRiferimento> 36 </SoggettoAssegnatario> 37 <DataInizioAssegnazione>2020-03-13</DataInizioAssegnazione> 38 </PerCompetenza> 39 </TipoAssegnazione> 40 </Assegnazione> 41 <DataApertura>2004-09-27</DataApertura> 42 <Classificazione> 43 <IndiceDiClassificazione>KW</IndiceDiClassificazione> 44 <Descrizione>Descrizione KW</Descrizione> 45 </Classificazione> 46 <Progressivo>1</Progressivo> 47 <ChiaveDescrittiva> 48 <Oggetto>testo libero</Oggetto> 49 </ChiaveDescrittiva> 50 <DataChiusura>2011-08-12</DataChiusura> 51 <ProcedimentoAmministrativo> 52 <MateriaArgomentoStruttura>string</MateriaArgomentoStruttura> 53 <Procedimento>string</Procedimento> 54 <CatalogoProcedimenti>string</CatalogoProcedimenti> 55 <Fasi> 56 <TipoFase> 57 <Consultiva> 58 <Fase>Consultiva</Fase> 59 <DataInizioFase>2014-10-22</DataInizioFase> 60 </Consultiva> 61 </TipoFase> 62 </Fasi> 63 </ProcedimentoAmministrativo> 64 <IndiceDocumenti> 65 <TipoDocumento> 66 <Documentoinformatico> 67 <ImprontaCrittograficaDelDocumento> 68 <Impronta>8B4ED660699A7AFF0806CFBBBF78A6588C594F32C60DE5046BB0E0E83EB755B3</Impronta> 69 <Algoritmo>SHA-256</Algoritmo> 70 </ImprontaCrittograficaDelDocumento> 71 <Identificativo>0001.2021</Identificativo> 72 </Documentoinformatico> 73 </TipoDocumento> 74 </IndiceDocumenti> 75 <PosizioneFisicaAggregazioneDocumentale>string</PosizioneFisicaAggregazioneDocumentale> 76 <IdAggPrimario> 77 <TipoAggregazione>Fascicolo</TipoAggregazione> 78 <IdAggregazione>string</IdAggregazione> 79 </IdAggPrimario> 80 <TempoDiConservazione>9999</TempoDiConservazione> 81</AggregazioneDocumentaliInformatiche>