{
  "openapi": "3.0.0",
  "info": {
    "title": "Preservation REST API",
    "description": "A-Cube Preservation API lets you manage preservation of your document through accredited providers.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://preservation-sandbox.api.acubeapi.com",
      "description": "A-Cube Preservation API sandbox environment"
    },
    {
      "url": "https://preservation.api.acubeapi.com",
      "description": "A-Cube Preservation API production environment",
      "x-production": "hide"
    }
  ],
  "paths": {
    "/legal-entities/it": {
      "get": {
        "operationId": "getLegalEntityCollection",
        "tags": [
          "LegalEntity"
        ],
        "responses": {
          "200": {
            "description": "LegalEntity collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of LegalEntity resources.",
        "description": "Retrieves the collection of LegalEntity resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "pagination",
            "in": "query",
            "description": "Enable or disable pagination",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "boolean"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createLegalEntity",
        "tags": [
          "LegalEntity"
        ],
        "responses": {
          "201": {
            "description": "LegalEntity resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a LegalEntity resource.",
        "description": "Creates a LegalEntity resource.",
        "parameters": [],
        "requestBody": {
          "description": "The new LegalEntity resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntity.LegalEntityPostInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntity.LegalEntityPostInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/legal-entities/it/{legalEntityUuid}/sub-accounts": {
      "get": {
        "operationId": "api_legal-entitiesit_legalEntityUuidsub-accounts_get_collection",
        "tags": [
          "LegalEntitySubAccount"
        ],
        "responses": {
          "200": {
            "description": "LegalEntitySubAccount collection",
            "content": {
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                  }
                }
              },
              "text/html": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                  }
                }
              },
              "application/xml": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                  }
                }
              },
              "text/xml": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                  }
                }
              },
              "application/octet-stream": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                  }
                }
              }
            }
          }
        },
        "summary": "Retrieve all sub-accounts for a specific legal entity.",
        "description": "Retrieves a list of sub-accounts associated with a specific legal entity, identified by its UUID.",
        "parameters": [
          {
            "name": "legalEntityUuid",
            "in": "path",
            "description": "LegalEntity identifier",
            "required": true,
            "deprecated": false,
            "allowEmptyValue": false,
            "schema": {
              "type": "string"
            },
            "style": "simple",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "api_legal-entitiesit_legalEntityUuidsub-accounts_post",
        "tags": [
          "LegalEntitySubAccount"
        ],
        "responses": {
          "201": {
            "description": "LegalEntitySubAccount resource created",
            "content": {
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput.jsonld"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                }
              },
              "text/html": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                }
              },
              "application/xml": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                }
              },
              "text/xml": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                }
              },
              "application/octet-stream": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountOutput"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Create a new sub-account for a legal entity.",
        "description": "Creates a new sub-account for a specific legal entity, identified by its UUID. The sub-account will be granted access only to document related to the legal entity.",
        "parameters": [
          {
            "name": "legalEntityUuid",
            "in": "path",
            "description": "LegalEntity identifier",
            "required": true,
            "deprecated": false,
            "allowEmptyValue": false,
            "schema": {
              "type": "string"
            },
            "style": "simple",
            "explode": false,
            "allowReserved": false
          }
        ],
        "requestBody": {
          "description": "The new LegalEntitySubAccount resource",
          "content": {
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountInput.jsonld"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountInput"
              }
            },
            "text/html": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountInput"
              }
            },
            "application/xml": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountInput"
              }
            },
            "text/xml": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountInput"
              }
            },
            "application/octet-stream": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntitySubAccount.LegalEntitySubAccountInput"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/legal-entities/it/{legalEntityUuid}/sub-accounts/{email}": {
      "delete": {
        "operationId": "api_legal-entitiesit_legalEntityUuidsub-accounts_email_delete",
        "tags": [
          "LegalEntitySubAccount"
        ],
        "responses": {
          "204": {
            "description": "LegalEntitySubAccount resource deleted"
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Delete a sub-account by email for a specific legal entity.",
        "description": "Deletes a sub-account associated with a specific legal entity, identified by the legal entity UUID and the sub-account email address. This operation will remove the sub-account and revoke its access to documents related to the legal entity.",
        "parameters": [
          {
            "name": "legalEntityUuid",
            "in": "path",
            "description": "LegalEntity identifier",
            "required": true,
            "deprecated": false,
            "allowEmptyValue": false,
            "schema": {
              "type": "string"
            },
            "style": "simple",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "email",
            "in": "path",
            "description": "LegalEntitySubAccount identifier",
            "required": true,
            "deprecated": false,
            "allowEmptyValue": false,
            "schema": {
              "type": "string"
            },
            "style": "simple",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/legal-entities/it/{uuid}": {
      "get": {
        "operationId": "getLegalEntity",
        "tags": [
          "LegalEntity"
        ],
        "responses": {
          "200": {
            "description": "LegalEntity resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a LegalEntity resource.",
        "description": "Retrieves a LegalEntity resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "LegalEntity identifier",
            "required": true,
            "deprecated": false,
            "allowEmptyValue": false,
            "schema": {
              "type": "string"
            },
            "style": "simple",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "put": {
        "operationId": "updateLegalEntity",
        "tags": [
          "LegalEntity"
        ],
        "responses": {
          "200": {
            "description": "LegalEntity resource updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LegalEntity.LegalEntityOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Replaces the LegalEntity resource.",
        "description": "Replaces the LegalEntity resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "LegalEntity identifier",
            "required": true,
            "deprecated": false,
            "allowEmptyValue": false,
            "schema": {
              "type": "string"
            },
            "style": "simple",
            "explode": false,
            "allowReserved": false
          }
        ],
        "requestBody": {
          "description": "The updated LegalEntity resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntity.LegalEntityPutInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/LegalEntity.LegalEntityPutInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteLegalEntity",
        "tags": [
          "LegalEntity"
        ],
        "responses": {
          "204": {
            "description": "LegalEntity resource deleted"
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Removes the LegalEntity resource.",
        "description": "Removes the LegalEntity resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "description": "LegalEntity identifier",
            "required": true,
            "deprecated": false,
            "allowEmptyValue": false,
            "schema": {
              "type": "string"
            },
            "style": "simple",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/buste-paga-dipendenti": {
      "get": {
        "operationId": "getBustePagaDipendentiCollection",
        "tags": [
          "BustePagaDipendenti"
        ],
        "responses": {
          "200": {
            "description": "BustePagaDipendenti collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of BustePagaDipendenti resources.",
        "description": "Retrieves the collection of BustePagaDipendenti resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createBustePagaDipendenti",
        "tags": [
          "BustePagaDipendenti"
        ],
        "responses": {
          "201": {
            "description": "BustePagaDipendenti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a BustePagaDipendenti resource.",
        "description": "Creates a BustePagaDipendenti resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/buste-paga-dipendenti/{uuid}": {
      "get": {
        "operationId": "getBustePagaDipendentiItem",
        "tags": [
          "BustePagaDipendenti"
        ],
        "responses": {
          "200": {
            "description": "BustePagaDipendenti resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a BustePagaDipendenti resource.",
        "description": "Retrieves a BustePagaDipendenti resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteBustePagaDipendenti",
        "tags": [
          "BustePagaDipendenti"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/buste-paga-dipendenti/{uuid}/original-document": {
      "get": {
        "operationId": "PrintBustePagaDipendenti",
        "tags": [
          "BustePagaDipendenti"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/buste-paga-dipendenti/{uuid}/receipt": {
      "get": {
        "operationId": "getBustePagaDipendentiReceipt",
        "tags": [
          "BustePagaDipendenti"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/buste-paga-dipendenti/{uuid}/send": {
      "post": {
        "operationId": "sendBustePagaDipendenti",
        "tags": [
          "BustePagaDipendenti"
        ],
        "responses": {
          "201": {
            "description": "BustePagaDipendenti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/BustePagaDipendenti.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new BustePagaDipendenti resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BustePagaDipendenti.BustePagaDipendentiMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/BustePagaDipendenti.BustePagaDipendentiMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-clienti": {
      "get": {
        "operationId": "getContrattiClientiCollection",
        "tags": [
          "ContrattiClienti"
        ],
        "responses": {
          "200": {
            "description": "ContrattiClienti collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of ContrattiClienti resources.",
        "description": "Retrieves the collection of ContrattiClienti resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createContrattiClienti",
        "tags": [
          "ContrattiClienti"
        ],
        "responses": {
          "201": {
            "description": "ContrattiClienti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a ContrattiClienti resource.",
        "description": "Creates a ContrattiClienti resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-clienti/{uuid}": {
      "get": {
        "operationId": "getContrattiClientiItem",
        "tags": [
          "ContrattiClienti"
        ],
        "responses": {
          "200": {
            "description": "ContrattiClienti resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a ContrattiClienti resource.",
        "description": "Retrieves a ContrattiClienti resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteContrattiClienti",
        "tags": [
          "ContrattiClienti"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-clienti/{uuid}/original-document": {
      "get": {
        "operationId": "PrintContrattiClienti",
        "tags": [
          "ContrattiClienti"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-clienti/{uuid}/receipt": {
      "get": {
        "operationId": "getContrattiClientiReceipt",
        "tags": [
          "ContrattiClienti"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-clienti/{uuid}/send": {
      "post": {
        "operationId": "sendContrattiClienti",
        "tags": [
          "ContrattiClienti"
        ],
        "responses": {
          "201": {
            "description": "ContrattiClienti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiClienti.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new ContrattiClienti resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ContrattiClienti.ContrattiClientiMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/ContrattiClienti.ContrattiClientiMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-dipendenti": {
      "get": {
        "operationId": "getContrattiDipendentiCollection",
        "tags": [
          "ContrattiDipendenti"
        ],
        "responses": {
          "200": {
            "description": "ContrattiDipendenti collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of ContrattiDipendenti resources.",
        "description": "Retrieves the collection of ContrattiDipendenti resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createContrattiDipendenti",
        "tags": [
          "ContrattiDipendenti"
        ],
        "responses": {
          "201": {
            "description": "ContrattiDipendenti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a ContrattiDipendenti resource.",
        "description": "Creates a ContrattiDipendenti resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-dipendenti/{uuid}": {
      "get": {
        "operationId": "getContrattiDipendentiItem",
        "tags": [
          "ContrattiDipendenti"
        ],
        "responses": {
          "200": {
            "description": "ContrattiDipendenti resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a ContrattiDipendenti resource.",
        "description": "Retrieves a ContrattiDipendenti resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteContrattiDipendenti",
        "tags": [
          "ContrattiDipendenti"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-dipendenti/{uuid}/original-document": {
      "get": {
        "operationId": "PrintContrattiDipendenti",
        "tags": [
          "ContrattiDipendenti"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-dipendenti/{uuid}/receipt": {
      "get": {
        "operationId": "getContrattiDipendentiReceipt",
        "tags": [
          "ContrattiDipendenti"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-dipendenti/{uuid}/send": {
      "post": {
        "operationId": "sendContrattiDipendenti",
        "tags": [
          "ContrattiDipendenti"
        ],
        "responses": {
          "201": {
            "description": "ContrattiDipendenti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiDipendenti.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new ContrattiDipendenti resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ContrattiDipendenti.ContrattiDipendentiMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/ContrattiDipendenti.ContrattiDipendentiMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-fornitori": {
      "get": {
        "operationId": "getContrattiFornitoriCollection",
        "tags": [
          "ContrattiFornitori"
        ],
        "responses": {
          "200": {
            "description": "ContrattiFornitori collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of ContrattiFornitori resources.",
        "description": "Retrieves the collection of ContrattiFornitori resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createContrattiFornitori",
        "tags": [
          "ContrattiFornitori"
        ],
        "responses": {
          "201": {
            "description": "ContrattiFornitori resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a ContrattiFornitori resource.",
        "description": "Creates a ContrattiFornitori resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-fornitori/{uuid}": {
      "get": {
        "operationId": "getContrattiFornitoriItem",
        "tags": [
          "ContrattiFornitori"
        ],
        "responses": {
          "200": {
            "description": "ContrattiFornitori resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a ContrattiFornitori resource.",
        "description": "Retrieves a ContrattiFornitori resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteContrattiFornitori",
        "tags": [
          "ContrattiFornitori"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-fornitori/{uuid}/original-document": {
      "get": {
        "operationId": "PrintContrattiFornitori",
        "tags": [
          "ContrattiFornitori"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-fornitori/{uuid}/receipt": {
      "get": {
        "operationId": "getContrattiFornitoriReceipt",
        "tags": [
          "ContrattiFornitori"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/contratti-fornitori/{uuid}/send": {
      "post": {
        "operationId": "sendContrattiFornitori",
        "tags": [
          "ContrattiFornitori"
        ],
        "responses": {
          "201": {
            "description": "ContrattiFornitori resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/ContrattiFornitori.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new ContrattiFornitori resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ContrattiFornitori.ContrattiFornitoriMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/ContrattiFornitori.ContrattiFornitoriMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ddt": {
      "get": {
        "operationId": "getDdtCollection",
        "tags": [
          "Ddt"
        ],
        "responses": {
          "200": {
            "description": "Ddt collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ddt.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/Ddt.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of Ddt resources.",
        "description": "Retrieves the collection of Ddt resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createDdt",
        "tags": [
          "Ddt"
        ],
        "responses": {
          "201": {
            "description": "Ddt resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ddt.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Ddt.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a Ddt resource.",
        "description": "Creates a Ddt resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ddt/{uuid}": {
      "get": {
        "operationId": "getDdtItem",
        "tags": [
          "Ddt"
        ],
        "responses": {
          "200": {
            "description": "Ddt resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ddt.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Ddt.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a Ddt resource.",
        "description": "Retrieves a Ddt resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteDdt",
        "tags": [
          "Ddt"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ddt/{uuid}/original-document": {
      "get": {
        "operationId": "PrintDdt",
        "tags": [
          "Ddt"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ddt/{uuid}/receipt": {
      "get": {
        "operationId": "getDdtReceipt",
        "tags": [
          "Ddt"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ddt/{uuid}/send": {
      "post": {
        "operationId": "sendDdt",
        "tags": [
          "Ddt"
        ],
        "responses": {
          "201": {
            "description": "Ddt resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ddt.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Ddt.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new Ddt resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Ddt.DdtMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/Ddt.DdtMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/fatture": {
      "get": {
        "operationId": "getFattureCollection",
        "tags": [
          "Fatture"
        ],
        "responses": {
          "200": {
            "description": "Fatture collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Fatture.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/Fatture.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of Fatture resources.",
        "description": "Retrieves the collection of Fatture resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createFatture",
        "tags": [
          "Fatture"
        ],
        "responses": {
          "201": {
            "description": "Fatture resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Fatture.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Fatture.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a Fatture resource.",
        "description": "Creates a Fatture resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/fatture/{uuid}": {
      "get": {
        "operationId": "getFattureItem",
        "tags": [
          "Fatture"
        ],
        "responses": {
          "200": {
            "description": "Fatture resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Fatture.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Fatture.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a Fatture resource.",
        "description": "Retrieves a Fatture resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteFatture",
        "tags": [
          "Fatture"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/fatture/{uuid}/original-document": {
      "get": {
        "operationId": "PrintFatture",
        "tags": [
          "Fatture"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/fatture/{uuid}/receipt": {
      "get": {
        "operationId": "getFattureReceipt",
        "tags": [
          "Fatture"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/fatture/{uuid}/send": {
      "post": {
        "operationId": "sendFatture",
        "tags": [
          "Fatture"
        ],
        "responses": {
          "201": {
            "description": "Fatture resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Fatture.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Fatture.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new Fatture resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Fatture.FattureMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/Fatture.FattureMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-cespiti": {
      "get": {
        "operationId": "getLibriCespitiCollection",
        "tags": [
          "LibroCespiti"
        ],
        "responses": {
          "200": {
            "description": "LibroCespiti collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of LibroCespiti resources.",
        "description": "Retrieves the collection of LibroCespiti resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createLibroCespiti",
        "tags": [
          "LibroCespiti"
        ],
        "responses": {
          "201": {
            "description": "LibroCespiti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a LibroCespiti resource.",
        "description": "Creates a LibroCespiti resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-cespiti/{uuid}": {
      "get": {
        "operationId": "getLibroCespitiItem",
        "tags": [
          "LibroCespiti"
        ],
        "responses": {
          "200": {
            "description": "LibroCespiti resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a LibroCespiti resource.",
        "description": "Retrieves a LibroCespiti resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteLibroCespiti",
        "tags": [
          "LibroCespiti"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-cespiti/{uuid}/original-document": {
      "get": {
        "operationId": "PrintLibroCespiti",
        "tags": [
          "LibroCespiti"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-cespiti/{uuid}/receipt": {
      "get": {
        "operationId": "getLibroCespitiReceipt",
        "tags": [
          "LibroCespiti"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-cespiti/{uuid}/send": {
      "post": {
        "operationId": "sendLibroCespiti",
        "tags": [
          "LibroCespiti"
        ],
        "responses": {
          "201": {
            "description": "LibroCespiti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroCespiti.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new LibroCespiti resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LibroCespiti.LibroCespitiMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/LibroCespiti.LibroCespitiMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-giornale": {
      "get": {
        "operationId": "getLibroGiornaleCollection",
        "tags": [
          "LibroGiornale"
        ],
        "responses": {
          "200": {
            "description": "LibroGiornale collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of LibroGiornale resources.",
        "description": "Retrieves the collection of LibroGiornale resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createLibroGiornale",
        "tags": [
          "LibroGiornale"
        ],
        "responses": {
          "201": {
            "description": "LibroGiornale resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a LibroGiornale resource.",
        "description": "Creates a LibroGiornale resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-giornale/{uuid}": {
      "get": {
        "operationId": "getLibriGiornaleItem",
        "tags": [
          "LibroGiornale"
        ],
        "responses": {
          "200": {
            "description": "LibroGiornale resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a LibroGiornale resource.",
        "description": "Retrieves a LibroGiornale resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteLibroGiornale",
        "tags": [
          "LibroGiornale"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-giornale/{uuid}/original-document": {
      "get": {
        "operationId": "PrintLibroGiornale",
        "tags": [
          "LibroGiornale"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-giornale/{uuid}/receipt": {
      "get": {
        "operationId": "getLibroGiornaleReceipt",
        "tags": [
          "LibroGiornale"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/libro-giornale/{uuid}/send": {
      "post": {
        "operationId": "sendLibroGiornale",
        "tags": [
          "LibroGiornale"
        ],
        "responses": {
          "201": {
            "description": "LibroGiornale resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/LibroGiornale.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new LibroGiornale resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LibroGiornale.LibroGiornaleMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/LibroGiornale.LibroGiornaleMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nota-spese": {
      "get": {
        "operationId": "getNotaSpeseCollection",
        "tags": [
          "NotaSpese"
        ],
        "responses": {
          "200": {
            "description": "NotaSpese collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NotaSpese.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/NotaSpese.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of NotaSpese resources.",
        "description": "Retrieves the collection of NotaSpese resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createNotaSpese",
        "tags": [
          "NotaSpese"
        ],
        "responses": {
          "201": {
            "description": "NotaSpese resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotaSpese.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NotaSpese.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a NotaSpese resource.",
        "description": "Creates a NotaSpese resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nota-spese/{uuid}": {
      "get": {
        "operationId": "getNotaSpeseItem",
        "tags": [
          "NotaSpese"
        ],
        "responses": {
          "200": {
            "description": "NotaSpese resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotaSpese.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NotaSpese.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a NotaSpese resource.",
        "description": "Retrieves a NotaSpese resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteNotaSpese",
        "tags": [
          "NotaSpese"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nota-spese/{uuid}/original-document": {
      "get": {
        "operationId": "PrintNotaSpese",
        "tags": [
          "NotaSpese"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nota-spese/{uuid}/receipt": {
      "get": {
        "operationId": "getNotaSpeseReceipt",
        "tags": [
          "NotaSpese"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nota-spese/{uuid}/send": {
      "post": {
        "operationId": "sendNotaSpese",
        "tags": [
          "NotaSpese"
        ],
        "responses": {
          "201": {
            "description": "NotaSpese resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NotaSpese.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NotaSpese.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new NotaSpese resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NotaSpese.NotaSpeseMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/NotaSpese.NotaSpeseMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-cliente": {
      "get": {
        "operationId": "getNsoClienteCollection",
        "tags": [
          "NsoCliente"
        ],
        "responses": {
          "200": {
            "description": "NsoCliente collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NsoCliente.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/NsoCliente.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of NsoCliente resources.",
        "description": "Retrieves the collection of NsoCliente resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createNsoCliente",
        "tags": [
          "NsoCliente"
        ],
        "responses": {
          "201": {
            "description": "NsoCliente resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoCliente.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoCliente.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a NsoCliente resource.",
        "description": "Creates a NsoCliente resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-cliente/{uuid}": {
      "get": {
        "operationId": "getNsoClienteItem",
        "tags": [
          "NsoCliente"
        ],
        "responses": {
          "200": {
            "description": "NsoCliente resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoCliente.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoCliente.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a NsoCliente resource.",
        "description": "Retrieves a NsoCliente resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteNsoCliente",
        "tags": [
          "NsoCliente"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-cliente/{uuid}/original-document": {
      "get": {
        "operationId": "PrintNsoCliente",
        "tags": [
          "NsoCliente"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-cliente/{uuid}/receipt": {
      "get": {
        "operationId": "getNsoClienteReceipt",
        "tags": [
          "NsoCliente"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-cliente/{uuid}/send": {
      "post": {
        "operationId": "sendNsoCliente",
        "tags": [
          "NsoCliente"
        ],
        "responses": {
          "201": {
            "description": "NsoCliente resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoCliente.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoCliente.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new NsoCliente resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NsoCliente.NsoClienteMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/NsoCliente.NsoClienteMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-fornitore": {
      "get": {
        "operationId": "getNsoFornitoreCollection",
        "tags": [
          "NsoFornitore"
        ],
        "responses": {
          "200": {
            "description": "NsoFornitore collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of NsoFornitore resources.",
        "description": "Retrieves the collection of NsoFornitore resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createNsoFornitore",
        "tags": [
          "NsoFornitore"
        ],
        "responses": {
          "201": {
            "description": "NsoFornitore resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a NsoFornitore resource.",
        "description": "Creates a NsoFornitore resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-fornitore/{uuid}": {
      "get": {
        "operationId": "getNsoFornitoreItem",
        "tags": [
          "NsoFornitore"
        ],
        "responses": {
          "200": {
            "description": "NsoFornitore resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a NsoFornitore resource.",
        "description": "Retrieves a NsoFornitore resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteNsoFornitore",
        "tags": [
          "NsoFornitore"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-fornitore/{uuid}/original-document": {
      "get": {
        "operationId": "PrintNsoFornitore",
        "tags": [
          "NsoFornitore"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-fornitore/{uuid}/receipt": {
      "get": {
        "operationId": "getNsoFornitoreReceipt",
        "tags": [
          "NsoFornitore"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/nso-fornitore/{uuid}/send": {
      "post": {
        "operationId": "sendNsoFornitore",
        "tags": [
          "NsoFornitore"
        ],
        "responses": {
          "201": {
            "description": "NsoFornitore resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/NsoFornitore.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new NsoFornitore resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NsoFornitore.NsoFornitoreMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/NsoFornitore.NsoFornitoreMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-clienti": {
      "get": {
        "operationId": "getOrdiniClientiCollection",
        "tags": [
          "OrdiniClienti"
        ],
        "responses": {
          "200": {
            "description": "OrdiniClienti collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of OrdiniClienti resources.",
        "description": "Retrieves the collection of OrdiniClienti resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createOrdiniClienti",
        "tags": [
          "OrdiniClienti"
        ],
        "responses": {
          "201": {
            "description": "OrdiniClienti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a OrdiniClienti resource.",
        "description": "Creates a OrdiniClienti resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-clienti/{uuid}": {
      "get": {
        "operationId": "getOrdiniClientiItem",
        "tags": [
          "OrdiniClienti"
        ],
        "responses": {
          "200": {
            "description": "OrdiniClienti resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a OrdiniClienti resource.",
        "description": "Retrieves a OrdiniClienti resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteOrdiniClienti",
        "tags": [
          "OrdiniClienti"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-clienti/{uuid}/original-document": {
      "get": {
        "operationId": "PrintOrdiniClienti",
        "tags": [
          "OrdiniClienti"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-clienti/{uuid}/receipt": {
      "get": {
        "operationId": "getOrdiniClientiReceipt",
        "tags": [
          "OrdiniClienti"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-clienti/{uuid}/send": {
      "post": {
        "operationId": "sendOrdiniClienti",
        "tags": [
          "OrdiniClienti"
        ],
        "responses": {
          "201": {
            "description": "OrdiniClienti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniClienti.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new OrdiniClienti resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrdiniClienti.OrdiniClientiMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/OrdiniClienti.OrdiniClientiMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-fornitori": {
      "get": {
        "operationId": "getOrdiniFornitoriCollection",
        "tags": [
          "OrdiniFornitori"
        ],
        "responses": {
          "200": {
            "description": "OrdiniFornitori collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of OrdiniFornitori resources.",
        "description": "Retrieves the collection of OrdiniFornitori resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createOrdiniFornitori",
        "tags": [
          "OrdiniFornitori"
        ],
        "responses": {
          "201": {
            "description": "OrdiniFornitori resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a OrdiniFornitori resource.",
        "description": "Creates a OrdiniFornitori resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-fornitori/{uuid}": {
      "get": {
        "operationId": "getOrdiniFornitoriItem",
        "tags": [
          "OrdiniFornitori"
        ],
        "responses": {
          "200": {
            "description": "OrdiniFornitori resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a OrdiniFornitori resource.",
        "description": "Retrieves a OrdiniFornitori resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteOrdiniFornitori",
        "tags": [
          "OrdiniFornitori"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-fornitori/{uuid}/original-document": {
      "get": {
        "operationId": "PrintOrdiniFornitori",
        "tags": [
          "OrdiniFornitori"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-fornitori/{uuid}/receipt": {
      "get": {
        "operationId": "getOrdiniFornitoriReceipt",
        "tags": [
          "OrdiniFornitori"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/ordini-fornitori/{uuid}/send": {
      "post": {
        "operationId": "sendOrdiniFornitori",
        "tags": [
          "OrdiniFornitori"
        ],
        "responses": {
          "201": {
            "description": "OrdiniFornitori resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/OrdiniFornitori.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new OrdiniFornitori resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrdiniFornitori.OrdiniFornitoriMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/OrdiniFornitori.OrdiniFornitoriMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pdd": {
      "get": {
        "operationId": "getPddCollection",
        "tags": [
          "Pdd"
        ],
        "responses": {
          "200": {
            "description": "Pdd collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Pdd.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/Pdd.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of Pdd resources.",
        "description": "Retrieves the collection of Pdd resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createPdd",
        "tags": [
          "Pdd"
        ],
        "responses": {
          "201": {
            "description": "Pdd resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Pdd.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Pdd.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a Pdd resource.",
        "description": "Creates a Pdd resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pdd/{uuid}": {
      "get": {
        "operationId": "getPddItem",
        "tags": [
          "Pdd"
        ],
        "responses": {
          "200": {
            "description": "Pdd resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Pdd.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Pdd.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a Pdd resource.",
        "description": "Retrieves a Pdd resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deletePdd",
        "tags": [
          "Pdd"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pdd/{uuid}/original-document": {
      "get": {
        "operationId": "PrintPdd",
        "tags": [
          "Pdd"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pdd/{uuid}/receipt": {
      "get": {
        "operationId": "getPddReceipt",
        "tags": [
          "Pdd"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pdd/{uuid}/send": {
      "post": {
        "operationId": "sendPdd",
        "tags": [
          "Pdd"
        ],
        "responses": {
          "201": {
            "description": "Pdd resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Pdd.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Pdd.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new Pdd resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Pdd.PddMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/Pdd.PddMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pec": {
      "get": {
        "operationId": "getPecCollection",
        "tags": [
          "Pec"
        ],
        "responses": {
          "200": {
            "description": "Pec collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Pec.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/Pec.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of Pec resources.",
        "description": "Retrieves the collection of Pec resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createPec",
        "tags": [
          "Pec"
        ],
        "responses": {
          "201": {
            "description": "Pec resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Pec.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Pec.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a Pec resource.",
        "description": "Creates a Pec resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pec/{uuid}": {
      "get": {
        "operationId": "getPecItem",
        "tags": [
          "Pec"
        ],
        "responses": {
          "200": {
            "description": "Pec resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Pec.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Pec.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a Pec resource.",
        "description": "Retrieves a Pec resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deletePec",
        "tags": [
          "Pec"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pec/{uuid}/original-document": {
      "get": {
        "operationId": "PrintPec",
        "tags": [
          "Pec"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pec/{uuid}/receipt": {
      "get": {
        "operationId": "getPecReceipt",
        "tags": [
          "Pec"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/pec/{uuid}/send": {
      "post": {
        "operationId": "sendPec",
        "tags": [
          "Pec"
        ],
        "responses": {
          "201": {
            "description": "Pec resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Pec.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Pec.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new Pec resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Pec.PecMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/Pec.PecMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-acquisti": {
      "get": {
        "operationId": "getRegistroIvaAcquistiCollection",
        "tags": [
          "RegistroIvaAcquisti"
        ],
        "responses": {
          "200": {
            "description": "RegistroIvaAcquisti collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of RegistroIvaAcquisti resources.",
        "description": "Retrieves the collection of RegistroIvaAcquisti resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createRegistroIvaAcquisti",
        "tags": [
          "RegistroIvaAcquisti"
        ],
        "responses": {
          "201": {
            "description": "RegistroIvaAcquisti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a RegistroIvaAcquisti resource.",
        "description": "Creates a RegistroIvaAcquisti resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-acquisti/{uuid}": {
      "get": {
        "operationId": "getRegistroIvaAcquistiItem",
        "tags": [
          "RegistroIvaAcquisti"
        ],
        "responses": {
          "200": {
            "description": "RegistroIvaAcquisti resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a RegistroIvaAcquisti resource.",
        "description": "Retrieves a RegistroIvaAcquisti resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteRegistroIvaAcquisti",
        "tags": [
          "RegistroIvaAcquisti"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-acquisti/{uuid}/original-document": {
      "get": {
        "operationId": "PrintRegistroIvaAcquisti",
        "tags": [
          "RegistroIvaAcquisti"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-acquisti/{uuid}/receipt": {
      "get": {
        "operationId": "getRegistroIvaAcquistiReceipt",
        "tags": [
          "RegistroIvaAcquisti"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-acquisti/{uuid}/send": {
      "post": {
        "operationId": "sendRegistroIvaAcquisti",
        "tags": [
          "RegistroIvaAcquisti"
        ],
        "responses": {
          "201": {
            "description": "RegistroIvaAcquisti resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaAcquisti.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new RegistroIvaAcquisti resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroIvaAcquisti.RegistriIvaAcquistiMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroIvaAcquisti.RegistriIvaAcquistiMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-vendite": {
      "get": {
        "operationId": "getRegistroIvaVenditeCollection",
        "tags": [
          "RegistroIvaVendite"
        ],
        "responses": {
          "200": {
            "description": "RegistroIvaVendite collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of RegistroIvaVendite resources.",
        "description": "Retrieves the collection of RegistroIvaVendite resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createRegistroIvaVendite",
        "tags": [
          "RegistroIvaVendite"
        ],
        "responses": {
          "201": {
            "description": "RegistroIvaVendite resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a RegistroIvaVendite resource.",
        "description": "Creates a RegistroIvaVendite resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-vendite/{uuid}": {
      "get": {
        "operationId": "getRegistroIvaVenditeItem",
        "tags": [
          "RegistroIvaVendite"
        ],
        "responses": {
          "200": {
            "description": "RegistroIvaVendite resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a RegistroIvaVendite resource.",
        "description": "Retrieves a RegistroIvaVendite resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteRegistroIvaVendite",
        "tags": [
          "RegistroIvaVendite"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-vendite/{uuid}/original-document": {
      "get": {
        "operationId": "PrintRegistroIvaVendite",
        "tags": [
          "RegistroIvaVendite"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-vendite/{uuid}/receipt": {
      "get": {
        "operationId": "getRegistroIvaVenditeReceipt",
        "tags": [
          "RegistroIvaVendite"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-iva-vendite/{uuid}/send": {
      "post": {
        "operationId": "sendRegistroIvaVendite",
        "tags": [
          "RegistroIvaVendite"
        ],
        "responses": {
          "201": {
            "description": "RegistroIvaVendite resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroIvaVendite.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new RegistroIvaVendite resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroIvaVendite.RegistriIvaAcquistiMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroIvaVendite.RegistriIvaAcquistiMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-liquidazione-iva": {
      "get": {
        "operationId": "getRegistroLiquidazioneIvaCollection",
        "tags": [
          "RegistroLiquidazioneIva"
        ],
        "responses": {
          "200": {
            "description": "RegistroLiquidazioneIva collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of RegistroLiquidazioneIva resources.",
        "description": "Retrieves the collection of RegistroLiquidazioneIva resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createRegistroLiquidazioneIva",
        "tags": [
          "RegistroLiquidazioneIva"
        ],
        "responses": {
          "201": {
            "description": "RegistroLiquidazioneIva resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a RegistroLiquidazioneIva resource.",
        "description": "Creates a RegistroLiquidazioneIva resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-liquidazione-iva/{uuid}": {
      "get": {
        "operationId": "getRegistroLiquidazioneIvaItem",
        "tags": [
          "RegistroLiquidazioneIva"
        ],
        "responses": {
          "200": {
            "description": "RegistroLiquidazioneIva resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a RegistroLiquidazioneIva resource.",
        "description": "Retrieves a RegistroLiquidazioneIva resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteRegistroLiquidazioneIva",
        "tags": [
          "RegistroLiquidazioneIva"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-liquidazione-iva/{uuid}/original-document": {
      "get": {
        "operationId": "PrintRegistroLiquidazioneIva",
        "tags": [
          "RegistroLiquidazioneIva"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-liquidazione-iva/{uuid}/receipt": {
      "get": {
        "operationId": "getRegistroLiquidazioneIvaReceipt",
        "tags": [
          "RegistroLiquidazioneIva"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-liquidazione-iva/{uuid}/send": {
      "post": {
        "operationId": "sendRegistroLiquidazioneIva",
        "tags": [
          "RegistroLiquidazioneIva"
        ],
        "responses": {
          "201": {
            "description": "RegistroLiquidazioneIva resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroLiquidazioneIva.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new RegistroLiquidazioneIva resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroLiquidazioneIva.RegistriLiquidazioneIvaMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroLiquidazioneIva.RegistriLiquidazioneIvaMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-volontari": {
      "get": {
        "operationId": "getRegistroVolontariCollection",
        "tags": [
          "RegistroVolontari"
        ],
        "responses": {
          "200": {
            "description": "RegistroVolontari collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of RegistroVolontari resources.",
        "description": "Retrieves the collection of RegistroVolontari resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createRegistroVolontari",
        "tags": [
          "RegistroVolontari"
        ],
        "responses": {
          "201": {
            "description": "RegistroVolontari resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a RegistroVolontari resource.",
        "description": "Creates a RegistroVolontari resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-volontari/{uuid}": {
      "get": {
        "operationId": "getRegistroVolontariItem",
        "tags": [
          "RegistroVolontari"
        ],
        "responses": {
          "200": {
            "description": "RegistroVolontari resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a RegistroVolontari resource.",
        "description": "Retrieves a RegistroVolontari resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteRegistroVolontari",
        "tags": [
          "RegistroVolontari"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-volontari/{uuid}/original-document": {
      "get": {
        "operationId": "PrintRegistroVolontari",
        "tags": [
          "RegistroVolontari"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-volontari/{uuid}/receipt": {
      "get": {
        "operationId": "getRegistroVolontariReceipt",
        "tags": [
          "RegistroVolontari"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/registro-volontari/{uuid}/send": {
      "post": {
        "operationId": "sendRegistroVolontari",
        "tags": [
          "RegistroVolontari"
        ],
        "responses": {
          "201": {
            "description": "RegistroVolontari resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/RegistroVolontari.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new RegistroVolontari resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroVolontari.RegistroVolontariMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/RegistroVolontari.RegistroVolontariMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/rentri": {
      "get": {
        "operationId": "getRentriCollection",
        "tags": [
          "Rentri"
        ],
        "responses": {
          "200": {
            "description": "Rentri collection",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Rentri.PreservedDocumentOutput"
                  }
                }
              },
              "application/ld+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "hydra:member": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/Rentri.PreservedDocumentOutput.jsonld"
                      }
                    },
                    "hydra:totalItems": {
                      "type": "integer",
                      "minimum": 0
                    },
                    "hydra:view": {
                      "type": "object",
                      "properties": {
                        "@id": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "@type": {
                          "type": "string"
                        },
                        "hydra:first": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:last": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:previous": {
                          "type": "string",
                          "format": "iri-reference"
                        },
                        "hydra:next": {
                          "type": "string",
                          "format": "iri-reference"
                        }
                      },
                      "example": {
                        "@id": "string",
                        "type": "string",
                        "hydra:first": "string",
                        "hydra:last": "string",
                        "hydra:previous": "string",
                        "hydra:next": "string"
                      }
                    },
                    "hydra:search": {
                      "type": "object",
                      "properties": {
                        "@type": {
                          "type": "string"
                        },
                        "hydra:template": {
                          "type": "string"
                        },
                        "hydra:variableRepresentation": {
                          "type": "string"
                        },
                        "hydra:mapping": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@type": {
                                "type": "string"
                              },
                              "variable": {
                                "type": "string"
                              },
                              "property": {
                                "type": "string",
                                "nullable": true
                              },
                              "required": {
                                "type": "boolean"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "required": [
                    "hydra:member"
                  ]
                }
              }
            }
          }
        },
        "summary": "Retrieves the collection of Rentri resources.",
        "description": "Retrieves the collection of Rentri resources.",
        "parameters": [
          {
            "name": "page",
            "in": "query",
            "description": "The collection page number",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 1
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "itemsPerPage",
            "in": "query",
            "description": "The number of items per page",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "integer",
              "default": 30,
              "minimum": 0,
              "maximum": 100
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "status",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_before]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          },
          {
            "name": "created_at[strictly_after]",
            "in": "query",
            "description": "",
            "required": false,
            "deprecated": false,
            "allowEmptyValue": true,
            "schema": {
              "type": "string"
            },
            "style": "form",
            "explode": false,
            "allowReserved": false
          }
        ],
        "deprecated": false
      },
      "post": {
        "operationId": "createRentri",
        "tags": [
          "Rentri"
        ],
        "responses": {
          "201": {
            "description": "Rentri resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rentri.PreservedDocumentCreateOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Rentri.PreservedDocumentCreateOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Creates a Rentri resource.",
        "description": "Creates a Rentri resource.",
        "parameters": [],
        "requestBody": {
          "description": "",
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "Document to preserve."
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          },
          "required": false
        },
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/rentri/{uuid}": {
      "get": {
        "operationId": "getRentriItem",
        "tags": [
          "Rentri"
        ],
        "responses": {
          "200": {
            "description": "Rentri resource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rentri.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Rentri.PreservedDocumentOutput.jsonld"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Retrieves a Rentri resource.",
        "description": "Retrieves a Rentri resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "delete": {
        "operationId": "deleteRentri",
        "tags": [
          "Rentri"
        ],
        "responses": {
          "204": {
            "description": "The resource has been deleted."
          },
          "404": {
            "description": "The resource does not exist."
          },
          "400": {
            "description": "The resource cannot be deleted because it is already stored."
          }
        },
        "summary": "Delete the identified resource.",
        "description": "Delete the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/rentri/{uuid}/original-document": {
      "get": {
        "operationId": "PrintRentri",
        "tags": [
          "Rentri"
        ],
        "responses": {
          "200": {
            "description": "The preservation document File."
          },
          "404": {
            "description": "The preservation document File was not found."
          }
        },
        "summary": "Get the preservation document File.",
        "description": "Get the preservation document File .",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/rentri/{uuid}/receipt": {
      "get": {
        "operationId": "getRentriReceipt",
        "tags": [
          "Rentri"
        ],
        "responses": {
          "200": {
            "description": "The preservation receipt of the resource.",
            "content": {
              "application/pdf": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              },
              "application/xml": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found"
          }
        },
        "summary": "Get the preservation receipt of the resource.",
        "description": "Get the preservation receipt of the resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false
      },
      "parameters": []
    },
    "/preserved-documents/it/rentri/{uuid}/send": {
      "post": {
        "operationId": "sendRentri",
        "tags": [
          "Rentri"
        ],
        "responses": {
          "201": {
            "description": "Rentri resource created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rentri.PreservedDocumentOutput"
                }
              },
              "application/ld+json": {
                "schema": {
                  "$ref": "#/components/schemas/Rentri.PreservedDocumentOutput.jsonld"
                }
              }
            },
            "links": {}
          },
          "400": {
            "description": "Invalid input"
          },
          "422": {
            "description": "Unprocessable entity"
          }
        },
        "summary": "Start the preservation process for the identified resource.",
        "description": "Start the preservation process for the identified resource.",
        "parameters": [
          {
            "name": "uuid",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "requestBody": {
          "description": "The new Rentri resource",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Rentri.RentriMetadataInput"
              }
            },
            "application/ld+json": {
              "schema": {
                "$ref": "#/components/schemas/Rentri.RentriMetadataInput.jsonld"
              }
            }
          },
          "required": true
        },
        "deprecated": false
      },
      "parameters": []
    }
  },
  "components": {
    "schemas": {
      "BustePagaDipendenti.BustePagaDipendentiMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "cedolino_mese",
          "cedolino_anno",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "cedolino_mese": {
            "maximum": 12,
            "minimum": 1,
            "description": "The month of the document.",
            "type": "integer"
          },
          "cedolino_anno": {
            "pattern": "^([0-9]{4})$",
            "description": "The year of the document.",
            "type": "integer"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if the document is not considered confidential",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "BustePagaDipendenti.BustePagaDipendentiMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "cedolino_mese",
          "cedolino_anno",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "cedolino_mese": {
            "maximum": 12,
            "minimum": 1,
            "description": "The month of the document.",
            "type": "integer"
          },
          "cedolino_anno": {
            "pattern": "^([0-9]{4})$",
            "description": "The year of the document.",
            "type": "integer"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if the document is not considered confidential",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "BustePagaDipendenti.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "BustePagaDipendenti.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "BustePagaDipendenti.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "BustePagaDipendenti.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ContrattiClienti.ContrattiClientiMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "ContrattiClienti.ContrattiClientiMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "ContrattiClienti.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "ContrattiClienti.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "ContrattiClienti.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ContrattiClienti.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ContrattiDipendenti.ContrattiDipendentiMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "ContrattiDipendenti.ContrattiDipendentiMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "ContrattiDipendenti.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "ContrattiDipendenti.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "ContrattiDipendenti.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ContrattiDipendenti.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ContrattiFornitori.ContrattiFornitoriMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "ContrattiFornitori.ContrattiFornitoriMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "destinatario": {
            "description": "Personal data of the recipient of the electronic document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "ContrattiFornitori.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "ContrattiFornitori.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "ContrattiFornitori.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ContrattiFornitori.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Ddt.DdtMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "mittente": {
            "description": "Personal data of the sender. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "Ddt.DdtMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "mittente": {
            "description": "Personal data of the sender. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "Ddt.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "Ddt.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "Ddt.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Ddt.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Fatture.FattureMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_fattura",
          "numero_fattura",
          "tipologia_di_flusso",
          "destinatario",
          "oggetto",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_fattura": {
            "description": "The invoice date.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_fattura": {
            "description": "The invoice number.",
            "type": "string"
          },
          "tipologia_di_flusso": {
            "enum": [
              "E",
              "U"
            ],
            "description": "Type of flow of the document. Can assume the following values: \"E\" (outgoing), \"U\" (internal).",
            "type": "string"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "oggetto": {
            "description": "Brief description of the document.",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "default": "1",
            "example": "1",
            "type": "string"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "Fatture.FattureMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_fattura",
          "numero_fattura",
          "tipologia_di_flusso",
          "destinatario",
          "oggetto",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_fattura": {
            "description": "The invoice date.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_fattura": {
            "description": "The invoice number.",
            "type": "string"
          },
          "tipologia_di_flusso": {
            "enum": [
              "E",
              "U"
            ],
            "description": "Type of flow of the document. Can assume the following values: \"E\" (outgoing), \"U\" (internal).",
            "type": "string"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "oggetto": {
            "description": "Brief description of the document.",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "default": "1",
            "example": "1",
            "type": "string"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "Fatture.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "Fatture.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "Fatture.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Fatture.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LegalEntity.LegalEntityOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string",
            "format": "uuid"
          },
          "fiscal_id": {
            "type": "string"
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "created_at": {
            "type": "string",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        }
      },
      "LegalEntity.LegalEntityOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string",
            "format": "uuid"
          },
          "fiscal_id": {
            "type": "string"
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "created_at": {
            "type": "string",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        }
      },
      "LegalEntity.LegalEntityPostInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "fiscal_id",
          "name"
        ],
        "properties": {
          "fiscal_id": {
            "type": "string"
          },
          "name": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LegalEntity.LegalEntityPostInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "fiscal_id",
          "name"
        ],
        "properties": {
          "fiscal_id": {
            "type": "string"
          },
          "name": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LegalEntity.LegalEntityPutInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LegalEntity.LegalEntityPutInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LegalEntitySubAccount.LegalEntitySubAccountInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "email": {
            "format": "email",
            "description": "The username of the sub-account. It must be unique within the whole A-Cube platform.",
            "externalDocs": {
              "url": "https://schema.org/email"
            },
            "type": "string"
          },
          "password": {
            "description": "The password for the sub-account. It will be set only if the sub-account is created contextually within the request. If not provided, the user must set it later via the reset password flow.",
            "type": "string",
            "nullable": true
          }
        }
      },
      "LegalEntitySubAccount.LegalEntitySubAccountInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "email": {
            "format": "email",
            "description": "The username of the sub-account. It must be unique within the whole A-Cube platform.",
            "externalDocs": {
              "url": "https://schema.org/email"
            },
            "type": "string"
          },
          "password": {
            "description": "The password for the sub-account. It will be set only if the sub-account is created contextually within the request. If not provided, the user must set it later via the reset password flow.",
            "type": "string",
            "nullable": true
          }
        }
      },
      "LegalEntitySubAccount.LegalEntitySubAccountOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          }
        }
      },
      "LegalEntitySubAccount.LegalEntitySubAccountOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          }
        }
      },
      "LibroCespiti.LibroCespitiMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "LibroCespiti.LibroCespitiMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "LibroCespiti.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "LibroCespiti.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "LibroCespiti.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LibroCespiti.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LibroGiornale.LibroGiornaleMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "LibroGiornale.LibroGiornaleMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "LibroGiornale.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "LibroGiornale.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "LibroGiornale.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LibroGiornale.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "NotaSpese.NotaSpeseMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "autore",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "autore": {
            "description": "Personal data of the author of the document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "NotaSpese.NotaSpeseMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "autore",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "autore": {
            "description": "Personal data of the author of the document.",
            "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "NotaSpese.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "NotaSpese.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "NotaSpese.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "NotaSpese.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "NsoCliente.NsoClienteMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "destinatario",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "mittente": {
            "description": "Personal data of the sender. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "NsoCliente.NsoClienteMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "destinatario",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "mittente": {
            "description": "Personal data of the sender. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "NsoCliente.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "NsoCliente.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "NsoCliente.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "NsoCliente.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "NsoFornitore.NsoFornitoreMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        },
        "required": [
          "mittente",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ]
      },
      "NsoFornitore.NsoFornitoreMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        },
        "required": [
          "mittente",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ]
      },
      "NsoFornitore.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "NsoFornitore.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "NsoFornitore.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "NsoFornitore.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "OrdiniClienti.OrdiniClientiMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "destinatario",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "mittente": {
            "description": "Personal data of the sender. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "OrdiniClienti.OrdiniClientiMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "destinatario",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "mittente": {
            "description": "Personal data of the sender. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "OrdiniClienti.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "OrdiniClienti.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "OrdiniClienti.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "OrdiniClienti.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "OrdiniFornitori.OrdiniFornitoriMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        },
        "required": [
          "mittente",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ]
      },
      "OrdiniFornitori.OrdiniFornitoriMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "destinatario": {
            "description": "Personal data of the recipient. Se questo campo non viene compilato, Allora verrà utilizzato i dati del soggettoCheEffettuaLaRegistrazione per valorizzarlo.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        },
        "required": [
          "mittente",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ]
      },
      "OrdiniFornitori.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "OrdiniFornitori.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "OrdiniFornitori.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "OrdiniFornitori.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Pdd.PddMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "autore": {
            "type": "object",
            "description": "Personal data of the author of the document. If not provided, `soggetto_che_effettua_la_registrazione` will be used.",
            "anyOf": [
              {
                "$ref": "#/components/schemas/SoggettoInput"
              }
            ],
            "nullable": true
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "Pdd.PddMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "autore": {
            "type": "object",
            "description": "Personal data of the author of the document. If not provided, `soggetto_che_effettua_la_registrazione` will be used.",
            "anyOf": [
              {
                "$ref": "#/components/schemas/SoggettoInput.jsonld"
              }
            ],
            "nullable": true
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "Pdd.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "Pdd.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "Pdd.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Pdd.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Pec.PecMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "tipologia_di_flusso",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "tipologia_di_flusso": {
            "enum": [
              "E",
              "U"
            ],
            "description": "Type of flow of the document. Can assume the following values: \"E\" (outgoing), \"U\" (internal).",
            "type": "string"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "Pec.PecMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "oggetto",
          "tipologia_di_flusso",
          "destinatario",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "oggetto": {
            "description": "The subject of the document.",
            "type": "string"
          },
          "tipologia_di_flusso": {
            "enum": [
              "E",
              "U"
            ],
            "description": "Type of flow of the document. Can assume the following values: \"E\" (outgoing), \"U\" (internal).",
            "type": "string"
          },
          "mittente": {
            "description": "Personal data of the sender.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "destinatario": {
            "description": "Personal data of the recipient.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "Pec.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "Pec.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "Pec.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Pec.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "PersonaFisicaInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "codice_fiscale": {
            "description": "Tax code",
            "type": "string",
            "nullable": true
          },
          "cognome": {
            "description": "Last name",
            "type": "string"
          },
          "nome": {
            "description": "First name",
            "type": "string"
          },
          "indirizzi_digitali_di_riferimento": {
            "description": "List of email addresses",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "required": [
          "cognome",
          "nome"
        ]
      },
      "PersonaFisicaInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "codice_fiscale": {
            "description": "Tax code",
            "type": "string",
            "nullable": true
          },
          "cognome": {
            "description": "Last name",
            "type": "string"
          },
          "nome": {
            "description": "First name",
            "type": "string"
          },
          "indirizzi_digitali_di_riferimento": {
            "description": "List of email addresses",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "required": [
          "cognome",
          "nome"
        ]
      },
      "PersonaFisicaWithTaxCodeInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "codice_fiscale",
          "cognome",
          "nome"
        ],
        "properties": {
          "codice_fiscale": {
            "description": "Tax code",
            "type": "string"
          },
          "cognome": {
            "description": "Last name",
            "type": "string"
          },
          "nome": {
            "description": "First name",
            "type": "string"
          },
          "indirizzi_digitali_di_riferimento": {
            "description": "List of email addresses",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        }
      },
      "PersonaFisicaWithTaxCodeInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "codice_fiscale",
          "cognome",
          "nome"
        ],
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "codice_fiscale": {
            "description": "Tax code",
            "type": "string"
          },
          "cognome": {
            "description": "Last name",
            "type": "string"
          },
          "nome": {
            "description": "First name",
            "type": "string"
          },
          "indirizzi_digitali_di_riferimento": {
            "description": "List of email addresses",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        }
      },
      "RegistroIvaAcquisti.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroIvaAcquisti.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroIvaAcquisti.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroIvaAcquisti.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroIvaAcquisti.RegistriIvaAcquistiMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "RegistroIvaAcquisti.RegistriIvaAcquistiMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "RegistroIvaVendite.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroIvaVendite.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroIvaVendite.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroIvaVendite.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroIvaVendite.RegistriIvaAcquistiMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "RegistroIvaVendite.RegistriIvaAcquistiMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "RegistroLiquidazioneIva.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroLiquidazioneIva.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroLiquidazioneIva.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroLiquidazioneIva.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroLiquidazioneIva.RegistriLiquidazioneIvaMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "RegistroLiquidazioneIva.RegistriLiquidazioneIvaMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "RegistroVolontari.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroVolontari.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "RegistroVolontari.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroVolontari.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "RegistroVolontari.RegistroVolontariMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "codice_identificativo_registro",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "codice_identificativo_registro": {
            "pattern": "^([A-Za-z0-9_\\.\\-]{1,16})$",
            "description": "Identification code of the register.",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "volontari": {
            "minItems": 0,
            "description": "List of volunteers. Must contain at least one element.",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PersonaFisicaInput"
            }
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "RegistroVolontari.RegistroVolontariMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "codice_identificativo_registro",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "data_registrazione_documento": {
            "description": "Date of registration of the document.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document",
            "type": "string"
          },
          "codice_identificativo_registro": {
            "pattern": "^([A-Za-z0-9_\\.\\-]{1,16})$",
            "description": "Identification code of the register.",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "volontari": {
            "minItems": 0,
            "description": "List of volunteers. Must contain at least one element.",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PersonaFisicaInput.jsonld"
            }
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "Rentri.PreservedDocumentCreateOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          }
        }
      },
      "Rentri.PreservedDocumentCreateOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          }
        }
      },
      "Rentri.PreservedDocumentOutput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Rentri.PreservedDocumentOutput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "updated_at": {
            "type": "string",
            "nullable": true
          },
          "preserved_object_id": {
            "type": "string"
          },
          "original_filename": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string"
          },
          "status_history": {
            "type": "object",
            "properties": {
              "to_be_stored": {
                "type": "string",
                "format": "date-time"
              },
              "sent": {
                "type": "string",
                "format": "date-time"
              },
              "sent_metadata": {
                "type": "string",
                "format": "date-time"
              },
              "stored": {
                "type": "string",
                "format": "date-time"
              }
            },
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "error_message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "Rentri.RentriMetadataInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "modalita_di_formazione",
          "tipologia_di_flusso",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "codice_identificativo_registro",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "modalita_di_formazione": {
            "enum": [
              "A",
              "B"
            ],
            "description": "How the document was created. Either \"A\" (created) or \"B\" (acquired).",
            "type": "string"
          },
          "tipologia_di_flusso": {
            "enum": [
              "E",
              "I",
              "U"
            ],
            "description": "Type of flow of the document. Can assume the following values: \"E\" (outgoing), \"I\" (incoming), \"U\" (internal).",
            "type": "string"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document. Should match the `<reg:DataRichiesta>` value.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document. Should match the `<reg:Identificativo>` value.",
            "type": "string"
          },
          "codice_identificativo_registro": {
            "enum": [
              "RENTRI",
              "REG_CRON_C_S",
              "FIR"
            ],
            "description": "Identification code of the register. Must be one of the allowed values, depending on the type of document being preserved.",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "autore_pg": {
            "type": "object",
            "description": "Author of the document (as a legal entity). If not provided, `autore_pf` must be specified.",
            "anyOf": [
              {
                "$ref": "#/components/schemas/SoggettoInput"
              }
            ],
            "nullable": true
          },
          "autore_pf": {
            "type": "object",
            "description": "Author of the document (as a individual). If not provided, `autore_pg` must be specified.",
            "anyOf": [
              {
                "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput"
              }
            ],
            "nullable": true
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput"
          }
        }
      },
      "Rentri.RentriMetadataInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "modalita_di_formazione",
          "tipologia_di_flusso",
          "data_registrazione_documento",
          "numero_registrazione_documento",
          "codice_identificativo_registro",
          "versione_del_documento",
          "soggetto_che_effettua_la_registrazione"
        ],
        "properties": {
          "modalita_di_formazione": {
            "enum": [
              "A",
              "B"
            ],
            "description": "How the document was created. Either \"A\" (created) or \"B\" (acquired).",
            "type": "string"
          },
          "tipologia_di_flusso": {
            "enum": [
              "E",
              "I",
              "U"
            ],
            "description": "Type of flow of the document. Can assume the following values: \"E\" (outgoing), \"I\" (incoming), \"U\" (internal).",
            "type": "string"
          },
          "data_registrazione_documento": {
            "description": "Date of registration of the document. Should match the `<reg:DataRichiesta>` value.",
            "externalDocs": {
              "url": "https://schema.org/Date"
            },
            "type": "string"
          },
          "numero_registrazione_documento": {
            "description": "Registration number of the document. Should match the `<reg:Identificativo>` value.",
            "type": "string"
          },
          "codice_identificativo_registro": {
            "enum": [
              "RENTRI",
              "REG_CRON_C_S",
              "FIR"
            ],
            "description": "Identification code of the register. Must be one of the allowed values, depending on the type of document being preserved.",
            "type": "string"
          },
          "versione_del_documento": {
            "description": "The version of the document.",
            "type": "string"
          },
          "autore_pg": {
            "type": "object",
            "description": "Author of the document (as a legal entity). If not provided, `autore_pf` must be specified.",
            "anyOf": [
              {
                "$ref": "#/components/schemas/SoggettoInput.jsonld"
              }
            ],
            "nullable": true
          },
          "autore_pf": {
            "type": "object",
            "description": "Author of the document (as a individual). If not provided, `autore_pg` must be specified.",
            "anyOf": [
              {
                "$ref": "#/components/schemas/PersonaFisicaWithTaxCodeInput.jsonld"
              }
            ],
            "nullable": true
          },
          "riservato": {
            "description": "Security level for accessing the document. Can assume the following values: true if the document is considered confidential, false if is not.",
            "type": "boolean"
          },
          "verifica": {
            "$ref": "#/components/schemas/VerificaInput.jsonld"
          },
          "soggetto_che_effettua_la_registrazione": {
            "description": "Data of the organization that owns the electronic document.",
            "$ref": "#/components/schemas/SoggettoInput.jsonld"
          }
        }
      },
      "SoggettoInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "denominazione_organizzazione",
          "codice_fiscale_partita_iva"
        ],
        "properties": {
          "denominazione_organizzazione": {
            "description": "Name of the organization.",
            "type": "string"
          },
          "codice_fiscale_partita_iva": {
            "description": "Tax code or VAT number of the organization.",
            "type": "string"
          }
        }
      },
      "SoggettoInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "required": [
          "denominazione_organizzazione",
          "codice_fiscale_partita_iva"
        ],
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "denominazione_organizzazione": {
            "description": "Name of the organization.",
            "type": "string"
          },
          "codice_fiscale_partita_iva": {
            "description": "Tax code or VAT number of the organization.",
            "type": "string"
          }
        }
      },
      "VerificaInput": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "firmato_digitalmente": {
            "description": "Firmato digitalmente: you must indicate <code>true</code> if a digital signature is associated with the electronic document. The check is not intended as a verification of the validity of the signature, but of its presence",
            "type": "boolean"
          },
          "sigillato_elettronicamente": {
            "description": "Sigillato elettronicamente: <code>true</code> must be indicated if the electronic document is associated with a simple electronic seal, an advanced electronic seal, or a digital seal. The check is not intended as a verification of the validity of the seal, but of its presence.",
            "type": "boolean"
          },
          "marcatura_temporale": {
            "description": "Marcatura temporale: you must indicate <code>true</code> if a timestamp is associated with the electronic document. The check is not intended as a verification of the validity of the timestamp, but of its presence",
            "type": "boolean"
          },
          "conformita_copie_immagine_su_supporto_informatico": {
            "description": "Conformità copie immagine su supporto informatico: <code>true</code> must be indicated if there is the attestation of conformity or the verification report of the image copy on IT support of the analogical document ensured after comparison of the documents or through process certification carried out by a private individual, a notary or a public official. You must indicate <code>false</code> if the certificate of conformity or the verification report does not exist.",
            "type": "boolean"
          }
        }
      },
      "VerificaInput.jsonld": {
        "type": "object",
        "description": "",
        "deprecated": false,
        "properties": {
          "@context": {
            "readOnly": true,
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "object",
                "properties": {
                  "@vocab": {
                    "type": "string"
                  },
                  "hydra": {
                    "type": "string",
                    "enum": [
                      "http://www.w3.org/ns/hydra/core#"
                    ]
                  }
                },
                "required": [
                  "@vocab",
                  "hydra"
                ],
                "additionalProperties": true
              }
            ]
          },
          "@id": {
            "readOnly": true,
            "type": "string"
          },
          "@type": {
            "readOnly": true,
            "type": "string"
          },
          "firmato_digitalmente": {
            "description": "Firmato digitalmente: you must indicate <code>true</code> if a digital signature is associated with the electronic document. The check is not intended as a verification of the validity of the signature, but of its presence",
            "type": "boolean"
          },
          "sigillato_elettronicamente": {
            "description": "Sigillato elettronicamente: <code>true</code> must be indicated if the electronic document is associated with a simple electronic seal, an advanced electronic seal, or a digital seal. The check is not intended as a verification of the validity of the seal, but of its presence.",
            "type": "boolean"
          },
          "marcatura_temporale": {
            "description": "Marcatura temporale: you must indicate <code>true</code> if a timestamp is associated with the electronic document. The check is not intended as a verification of the validity of the timestamp, but of its presence",
            "type": "boolean"
          },
          "conformita_copie_immagine_su_supporto_informatico": {
            "description": "Conformità copie immagine su supporto informatico: <code>true</code> must be indicated if there is the attestation of conformity or the verification report of the image copy on IT support of the analogical document ensured after comparison of the documents or through process certification carried out by a private individual, a notary or a public official. You must indicate <code>false</code> if the certificate of conformity or the verification report does not exist.",
            "type": "boolean"
          }
        }
      }
    },
    "responses": {},
    "parameters": {},
    "examples": {},
    "requestBodies": {},
    "headers": {},
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "description": "Received from Platform Authentication.",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "tags": []
}
