From 49f0ecc1632d4817e8a6cb14d6fa759d2e26a6e5 Mon Sep 17 00:00:00 2001
From: Pier Paolo MAMMI
Date: Wed, 26 Aug 2026 12:49:14 +0200
Subject: [PATCH] add cookie retrieval scripts
reorder requests and rename folder
---
.../Console UI/Backoffice Login.yml | 186 +
.../Console UI/Export Module.yml | 23576 ++++++++++++++++
.../Get Object Title (GENERICSCHEMA).yml | 106 +
.../Get Object Title (SCHEMADATA).yml | 106 +
.../Console UI/Save Object.yml | 228 +
.../Console UI/Search schemas.yml | 147 +
.../elixForms API v2/Console UI/folder.yml | 13 +
.../elixForms API v2/_HACKS/Export Module.yml | 23 -
.../Get Object Title (GENERICSCHEMA).yml | 46 -
.../_HACKS/Get Object Title (SCHEMADATA).yml | 46 -
.../_HACKS/Search schemas.yml | 51 -
.../elixForms API v2/_HACKS/folder.yml | 7 -
env.json.template | 2 +
13 files changed, 24364 insertions(+), 173 deletions(-)
create mode 100644 bruno/collections/elixForms API v2/Console UI/Backoffice Login.yml
create mode 100644 bruno/collections/elixForms API v2/Console UI/Export Module.yml
create mode 100644 bruno/collections/elixForms API v2/Console UI/Get Object Title (GENERICSCHEMA).yml
create mode 100644 bruno/collections/elixForms API v2/Console UI/Get Object Title (SCHEMADATA).yml
create mode 100644 bruno/collections/elixForms API v2/Console UI/Save Object.yml
create mode 100644 bruno/collections/elixForms API v2/Console UI/Search schemas.yml
create mode 100644 bruno/collections/elixForms API v2/Console UI/folder.yml
delete mode 100644 bruno/collections/elixForms API v2/_HACKS/Export Module.yml
delete mode 100644 bruno/collections/elixForms API v2/_HACKS/Get Object Title (GENERICSCHEMA).yml
delete mode 100644 bruno/collections/elixForms API v2/_HACKS/Get Object Title (SCHEMADATA).yml
delete mode 100644 bruno/collections/elixForms API v2/_HACKS/Search schemas.yml
delete mode 100644 bruno/collections/elixForms API v2/_HACKS/folder.yml
diff --git a/bruno/collections/elixForms API v2/Console UI/Backoffice Login.yml b/bruno/collections/elixForms API v2/Console UI/Backoffice Login.yml
new file mode 100644
index 0000000..3eea3b6
--- /dev/null
+++ b/bruno/collections/elixForms API v2/Console UI/Backoffice Login.yml
@@ -0,0 +1,186 @@
+info:
+ name: Backoffice Login
+ type: http
+ seq: 1
+
+http:
+ method: POST
+ url: https://console-unipr.elixforms.it/CISIInformationUnit/ExecuteTransaction.jws
+ headers:
+ - name: Host
+ value: console-unipr.elixforms.it
+ - name: Referer
+ value: https://console-unipr.elixforms.it/backoffice/
+ params:
+ - name: IUXSID
+ value: TX_I4453_UNIPR_1787737266508_R-1756946974
+ type: query
+ disabled: true
+ body:
+ type: multipart-form
+ data:
+ - name: username
+ type: text
+ value: Automation_User
+ - name: password
+ type: text
+ value: n_HH9shL#VPeiiT^%;:t5/,jY
+ - name: INSERT_BTN00000
+ type: text
+ value: Accedi
+
+runtime:
+ scripts:
+ - type: after-response
+ code: |-
+ const ajsrvCookie = bru.cookies.get("AJSRV");
+ const jsessionidCookie = bru.cookies.get("JSESSIONID");
+
+ //console.log("AJSRV: ", ajsrvCookie);
+ //console.log("JSESSIONID: ", jsessionidCookie);
+
+ bru.setVar("elixFormsAjsrvCookie", "AJSRV=" + ajsrvCookie);
+ bru.setVar("elixFormsJsessionidCookie", "JSESSIONID=" + jsessionidCookie);
+ - type: tests
+ code: |-
+ test("AJSRV cookie found", function () {
+ const ajsrvCookie = bru.cookies.get("AJSRV");
+ expect(ajsrvCookie).to.not.be.null;
+ expect(ajsrvCookie).to.not.be.empty;
+ });
+
+ test("JSESSIONID cookie found", function () {
+ const jsessionidCookie = bru.cookies.get("JSESSIONID");
+ expect(jsessionidCookie).to.not.be.null;
+ expect(jsessionidCookie).to.not.be.empty;
+ });
+
+settings:
+ encodeUrl: true
+ timeout: 0
+ followRedirects: true
+ maxRedirects: 5
+ forwardAuthorizationHeader: false
+
+examples:
+ - name: example
+ request:
+ url: https://console-unipr.elixforms.it/CISIInformationUnit/ExecuteTransaction.jws
+ method: POST
+ headers:
+ - name: Host
+ value: console-unipr.elixforms.it
+ - name: Referer
+ value: https://console-unipr.elixforms.it/backoffice/
+ params:
+ - name: IUXSID
+ value: TX_I4453_UNIPR_1787737266508_R-1756946974
+ type: query
+ disabled: true
+ body:
+ type: multipart-form
+ data:
+ - name: username
+ type: text
+ value: Automation_User
+ - name: password
+ type: text
+ value: n_HH9shL#VPeiiT^%;:t5/,jY
+ - name: INSERT_BTN00000
+ type: text
+ value: Accedi
+ response:
+ status: 200
+ statusText: OK
+ headers:
+ - name: date
+ value: Wed, 26 Aug 2026 10:34:54 GMT
+ - name: server
+ value: '""'
+ - name: content-security-policy
+ value: "default-src https: data: 'unsafe-inline' 'unsafe-eval'; img-src 'self' blob: data: https:;"
+ - name: x-powered-by
+ value: JSP/2.2
+ - name: content-type
+ value: text/html;charset=UTF-8
+ - name: set-cookie
+ value: JSESSIONID=da31f0432559043377f947047c89; Path=/; HttpOnly
+ - name: vary
+ value: Accept-Encoding
+ - name: strict-transport-security
+ value: max-age=31536000; includeSubDomains
+ - name: x-frame-options
+ value: SAMEORIGIN
+ - name: x-xss-protection
+ value: "1"
+ - name: x-content-type-options
+ value: nosniff
+ - name: referrer-policy
+ value: unsafe-url
+ - name: keep-alive
+ value: timeout=10, max=500
+ - name: connection
+ value: Keep-Alive
+ - name: transfer-encoding
+ value: chunked
+ body:
+ type: html
+ data: |+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bruno/collections/elixForms API v2/Console UI/Export Module.yml b/bruno/collections/elixForms API v2/Console UI/Export Module.yml
new file mode 100644
index 0000000..4db6986
--- /dev/null
+++ b/bruno/collections/elixForms API v2/Console UI/Export Module.yml
@@ -0,0 +1,23576 @@
+info:
+ name: Export Module
+ type: http
+ seq: 2
+
+http:
+ method: GET
+ url: "{{elixFormsRootUrl}}/AJSRV/ELIXFORMS/moduleExport?MODULE_ID=21405&exportProtocol=true"
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ params:
+ - name: MODULE_ID
+ value: "21405"
+ type: query
+ - name: exportProtocol
+ value: "true"
+ type: query
+
+runtime:
+ scripts:
+ - type: before-request
+ code: |-
+ const noCookieFoundError = "No AJSRV cookie found!";
+
+ var ajsrvCookie = bru.getVar("elixFormsAjsrvCookie");
+
+ if (ajsrvCookie == null || ajsrvCookie === "") {
+ console.error(noCookieFoundError, ajsrvCookie);
+ throw new Error(noCookieFoundError);
+ }
+
+settings:
+ encodeUrl: true
+ timeout: 0
+ followRedirects: true
+ maxRedirects: 5
+ forwardAuthorizationHeader: true
+
+examples:
+ - name: example
+ request:
+ url: "{{elixFormsRootUrl}}/AJSRV/ELIXFORMS/moduleExport?MODULE_ID=21405&exportProtocol=true"
+ method: GET
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ params:
+ - name: MODULE_ID
+ value: "21405"
+ type: query
+ - name: exportProtocol
+ value: "true"
+ type: query
+ response:
+ status: 200
+ statusText: OK
+ headers:
+ - name: date
+ value: Wed, 26 Aug 2026 10:40:15 GMT
+ - name: server
+ value: '""'
+ - name: content-security-policy
+ value: "default-src https: data: 'unsafe-inline' 'unsafe-eval'; img-src 'self' blob: data: https:;"
+ - name: content-type
+ value: application/json;charset=UTF-8
+ - name: content-length
+ value: "983877"
+ - name: set-cookie
+ value: JSESSIONID=da7fe747082ad747383f00c85fcb; Path=/; HttpOnly
+ - name: strict-transport-security
+ value: max-age=31536000; includeSubDomains
+ - name: x-frame-options
+ value: SAMEORIGIN
+ - name: x-xss-protection
+ value: "1"
+ - name: x-content-type-options
+ value: nosniff
+ - name: referrer-policy
+ value: unsafe-url
+ - name: keep-alive
+ value: timeout=10, max=500
+ - name: connection
+ value: Keep-Alive
+ body:
+ type: json
+ data: |-
+ {
+ "module": "\nCANDIDATURA_INCARICHI_COLLAUDOAREA SERVIZI GENERALI E MONITORAGGIO - EDILIZIAPresentazione di candidatura per iscrizione nell'elenco di collaudatori87truetruetruefalsetrue00truefalsetrueSenza scadenza24-02-2026 11:30falsefalse2929-01-2026 12:3724-02-2026 11:33Progressivo annuale (Esempio: 2017_118)_\n",
+ "moduleTab": [
+ "\n\n",
+ "\nFORMSPubbliche Amministrazionitrue3003Pubblica Amministrazione7190\n",
+ "\n\n",
+ "\n\n",
+ "\n\n",
+ "\nUSERDATADati anagrafici2001\n"
+ ],
+ "formSchemaData": [
+ {
+ "id": 720,
+ "schema": "",
+ "calculatedFieldData": null,
+ "extendedAttributes": [
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "",
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldRequired": "",
+ "ELIX_ATTR_FieldGroupAll": "71301Compilare tutti i campi relativi all'impiego attuale",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateDateRange": "Now - [__] GG [__] MM[__] AA1Inserire una data minore di oggi",
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71301Compilare tutti i campi relativi all'impiego attuale",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71301Compilare tutti i campi relativi all'impiego attuale",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_FieldRequired": "",
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71302Compilare tutti i campi relativi al titolo di studio",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71302Compilare tutti i campi relativi al titolo di studio",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71302Compilare tutti i campi relativi al titolo di studio",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateDateRange": "NowInserire una data minore di o uguale a oggi",
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71302Compilare tutti i campi relativi al titolo di studio",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "71303Compilare tutti i campi relativi all'abilitazione dell'esercizio professionale",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateDateRange": "NowInserire una data minore di o uguale a oggi",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "71303Compilare tutti i campi relativi all'abilitazione dell'esercizio professionale",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "71304Compilare tutti i campi relativi all'iscrizione all'Ordine",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "71304Compilare tutti i campi relativi all'iscrizione all'Ordine",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "71304Compilare tutti i campi relativi all'iscrizione all'Ordine",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateDateRange": "NowInserire una data minore di o uguale a oggi",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "71304Compilare tutti i campi relativi all'iscrizione all'Ordine",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayHidden": "",
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71305In caso di servizio in stazione appaltante è necessario compilare tutti i campi della sezione",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayHidden": "",
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldGroupAll": "71305In caso di servizio in stazione appaltante è necessario compilare tutti i campi della sezione",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\nche le informazioni riportate nel Curriculum vitae allegato sono veritiere;\ndi non aver rivestito, nel biennio precedente alla pubblicazione del presente avviso, cariche in organi di indirizzo politico di questo Ateneo (es. consigliere di amministrazione, membro del Senato Accademico);\ndi non aver subito condanne, anche con sentenza non passata in giudicato, per i reati previsti nel Capo I del Titolo II del libro secondo del Codice Penale;\nl'assenza di provvedimenti di destituzione dall'impiego presso una Pubblica Amministrazione a seguito di procedimento disciplinare, di dispensa dalla stessa per persistente o insufficiente rendimento, di decadenza o licenziamento da altro impiego pubblico per averlo conseguito mediante produzione dei documenti falsi o viziati da invalidità non sanabile o per qualsiasi altra causa ai sensi della normativa vigente;\ndi aver preso visione dell'avviso e di accettare le condizioni in esso stabilite;\ndi essere informato, ai sensi del art. 13, Regolamento 2016/679/UE - GDPR, nei limiti e per le finalità specificate nell'Informativa di cui all'art. 9 dell'Avviso e di acconsentire espressamente a che i propri dati personali, raccolti nell'ambito del presente procedimento, siano trattati, anche con strumenti informatici, nell'ambito del procedimento medesimo e, in particolare, che gli stessi siano utilizzati dall'Amministrazione per consentire la nomina quale collaudatore o componente dell'organo di collaudo; acconsente inoltre alla pubblicazione dei seguenti dati: nome, cognome, profilo professionale e requisiti di professionalità ;\ndi conoscere il Codice di Comportamento dei dipendenti dell'Università di Parma ed il vigente Piano Integrato Attività e Organizzazione 2025-2027, documenti pubblicati nel sito dell'Ateneo e reperibili ai seguenti indirizzi:\n\n- Codice di comportamento (TODO: link)
\n- Portale Trasparenza PAT - Università di Parma - Piano della Performance (TODO: link)
\n
\n]]>",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\nche le informazioni riportate nel Curriculum vitae allegato sono veritiere;\ndi non aver rivestito, nel biennio precedente alla pubblicazione del presente avviso, cariche in organi di indirizzo politico di questo Ateneo (es. consigliere di amministrazione, membro del Senato Accademico);\ndi non aver subito condanne, anche con sentenza non passata in giudicato, per i reati previsti nel Capo I del Titolo II del libro secondo del Codice Penale;\nl'assenza di provvedimenti di destituzione dall'impiego presso una Pubblica Amministrazione a seguito di procedimento disciplinare, di dispensa dalla stessa per persistente o insufficiente rendimento, di decadenza o licenziamento da altro impiego pubblico per averlo conseguito mediante produzione dei documenti falsi o viziati da invalidità non sanabile o per qualsiasi altra causa ai sensi della normativa vigente;\ndi aver preso visione dell'avviso e di accettare le condizioni in esso stabilite;\ndi essere informato, ai sensi del art. 13, Regolamento 2016/679/UE - GDPR, nei limiti e per le finalità specificate nell'Informativa di cui all'art. 9 dell'Avviso e di acconsentire espressamente a che i propri dati personali, raccolti nell'ambito del presente procedimento, siano trattati, anche con strumenti informatici, nell'ambito del procedimento medesimo e, in particolare, che gli stessi siano utilizzati dall'Amministrazione per consentire la nomina quale collaudatore o componente dell'organo di collaudo; acconsente inoltre alla pubblicazione dei seguenti dati: nome, cognome, profilo professionale e requisiti di professionalità ;\ndi conoscere il Codice di Comportamento dei dipendenti dell'Università di Parma ed il vigente Piano Integrato Attività e Organizzazione 2025-2027, documenti pubblicati nel sito dell'Ateneo e reperibili ai seguenti indirizzi:\n\n- Codice di comportamento (TODO: link)
\n- Portale Trasparenza PAT - Università di Parma - Piano della Performance (TODO: link)
\n
\n]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\nSI IMPEGNA
\n
\n\n- qualora nominato, a rilasciare la dichiarazione di assenza delle cause di incompatibilità di cui all'art. 116, comma 6, del D.lgs. n. 36/2023;
\n- qualora nominato, a comunicare immediatamente all'Amministrazione eventuali ragioni di astensione o rifiuto dello specifico incarico;
\n- qualora nominato a fornire l'autorizzazione, ai sensi dell'art. 53 del D. Lgs.165/2001, all'espletamento dell'incarico da parte dell'Amministrazione di appartenenza;
\n- qualora nominato a presentare polizza di responsabilità civile/professionale a copertura dei rischi derivanti da errori od omissioni nelle attività di collaudo, per un massimale adeguato in relazione all'importo delle opere oggetto del collaudo;
\n- a comunicare tempestivamente all'Amministrazione e comunque non oltre 30 giorni dal verificarsi dei fatti causativi, la perdita dei requisiti ed ogni variazione che impedisca il mantenimento dell'iscrizione;
\n- di voler essere contattato, per ogni comunicazione inerente al presente procedimento, sia da parte della Area Dirigenziale Edilizia e Infrastrutture che dal Responsabile del Procedimento del presente avviso.
\n
]]>",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\nSI IMPEGNA
\n
\n\n- qualora nominato, a rilasciare la dichiarazione di assenza delle cause di incompatibilità di cui all'art. 116, comma 6, del D.lgs. n. 36/2023;
\n- qualora nominato, a comunicare immediatamente all'Amministrazione eventuali ragioni di astensione o rifiuto dello specifico incarico;
\n- qualora nominato a fornire l'autorizzazione, ai sensi dell'art. 53 del D. Lgs.165/2001, all'espletamento dell'incarico da parte dell'Amministrazione di appartenenza;
\n- qualora nominato a presentare polizza di responsabilità civile/professionale a copertura dei rischi derivanti da errori od omissioni nelle attività di collaudo, per un massimale adeguato in relazione all'importo delle opere oggetto del collaudo;
\n- a comunicare tempestivamente all'Amministrazione e comunque non oltre 30 giorni dal verificarsi dei fatti causativi, la perdita dei requisiti ed ogni variazione che impedisca il mantenimento dell'iscrizione;
\n- di voler essere contattato, per ogni comunicazione inerente al presente procedimento, sia da parte della Area Dirigenziale Edilizia e Infrastrutture che dal Responsabile del Procedimento del presente avviso.
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "
\n
\nDICHIARA
\nAI SENSI E PER GLI EFFETTI DEGLI ART. 46 E 47 DEL D.P.R. 445/2000
\n
\nconsapevole della responsabilità penale cui può andare incontro nel caso di affermazioni mendaci e delle relative sanzioni penali di cui all’art. 76 del D.P.R. 445/2000, nonché delle conseguenze amministrative di esclusione della candidatura per l’iscrizione nell’Elenco, ai sensi della normativa vigente in materia, di essere in possesso di tutti i requisiti di partecipazione previsti dall’Avviso di manifestazione di interesse in oggetto e in particolare:
\n]]>",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n
\n
\nA tal fine
\n
\nDICHIARA
\nAI SENSI E PER GLI EFFETTI DEGLI ART. 46 E 47 DEL D.P.R. 445/2000
\n
\nconsapevole della responsabilità penale cui può andare incontro nel caso di affermazioni mendaci e delle relative sanzioni penali di cui all'art. 76 del D.P.R. 445/2000, nonché delle conseguenze amministrative di esclusione della candidatura per l'iscrizione nell'Elenco, ai sensi della normativa vigente in materia, di essere in possesso di tutti i requisiti di partecipazione previsti dall'Avviso di manifestazione di interesse in oggetto e in particolare:
\n
\n
\n\n- di essere dipendente, con rapporto di lavoro subordinato a tempo indeterminato, della seguente Pubblica Amministrazione
\n
\n]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPost": "",
+ "ELIX_DISPATTR_ReportSectionTextPre": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\r\n\r\n- di essere in possesso del seguente titolo di studi
\r\n
]]>true\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\r\n- per le sezioni 1, 2 e 3 dell'Elenco - art. 2 dell'Avviso
\r\n
]]>\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\r\nper le sezioni 1, 2 e 3 dell'Elenco - art. 2 dell'Avviso\r\n]]>true\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayNone": "",
+ "ELIX_DISPATTR_ReportSectionTextPre": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- di possedere
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- per le sezioni 1, 2 e 3 dell'Elenco - art. 3 dell'Avviso
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- per la sezione 4 dell'Elenco - art. 3 dell'Avviso
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- di possedere
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\r\n- per la sezione 4 dell'Elenco - art. 2 dell'Avviso
\r\n
]]>\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\r\nper la sezione 4 dell'Elenco - art. 2 dell'Avviso\r\n]]>true\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_FieldRequired": "\nfalseSelezionare una data\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "\n71323In caso di scelta delle Sezione 1, 2 e 3 è necessario selezionare la dichiarazione\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "\n71324In caso di scelta della Sezione 4 è necessario selezionare la dichiarazione\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayNone": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n",
+ "ELIX_DISPATTR_ReportHidden": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_reportlabel",
+ "value": "con inquadramento",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_reportlabel_attrreportdisplaypluginvisibleinprint",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "con inquadramento *",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupall",
+ "value": "71301",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_ignorezeroattr",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 720,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Compilare tutti i campi relativi all'impiego attuale",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayNone": "\n\n",
+ "ELIX_ATTR_FieldGroupAll": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n",
+ "ELIX_DISPATTR_ReportHidden": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ }
+ ],
+ "title": "CANDIDATURA_INCARICHI_COLLAUDO_Titoli_v2"
+ },
+ {
+ "id": 719,
+ "schema": "",
+ "calculatedFieldData": null,
+ "extendedAttributes": [
+ {
+ "attribute": [
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateRegExp": "\n^([1-9]+[0-9]*)$Inserire un valore numerico intero maggiore di zero\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Stazione Appaltante *",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 719,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare un valore",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\ntrueSelezionare un valore\n"
+ },
+ "attributeBindingData": "\n\n"
+ }
+ ],
+ "title": "CANDIDATURA_INCARICHI_COLLAUDO_Stazione_Appaltante"
+ },
+ {
+ "id": 712,
+ "schema": "",
+ "calculatedFieldData": null,
+ "extendedAttributes": [
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_ATTR_FieldGroupAtLeastOne": "\n1234Selezionare almeno una sezione\n",
+ "ELIX_ATTR_ResetStep": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_ATTR_FieldGroupAtLeastOne": "\n1234Selezionare almeno una sezione\n",
+ "ELIX_ATTR_ResetStep": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_ATTR_FieldGroupAtLeastOne": "\n1234Selezionare almeno una sezione\n",
+ "ELIX_ATTR_FieldGroupValue": "\nCOL00044,5Selezionare in caso di scelta sottostante\n",
+ "ELIX_ATTR_ResetStep": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_ATTR_FieldGroupAtLeastOne": "\n1234Selezionare almeno una sezione\n",
+ "ELIX_ATTR_FieldGroupValue": "\nCOL00067,8Selezionare in caso di scelta sottostante\n",
+ "ELIX_ATTR_ResetStep": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_FieldGroupValue": "\nCOL00033Selezionare almeno uno dei valori in caso di scelta della sezione\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_FieldGroupValue": "\nCOL00056Selezionare almeno uno dei valori in caso di scelta della sezione\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\nRICHIEDE\r\n
\r\nL'ISCRIZIONE NELL’ELENCO IN OGGETTO
\r\nper la successiva nomina degli Organi di Collaudo ai sensi dell'art.116 comma 4 del D. Lgs. n. 36/2023
\r\n
\r\nPER LE SEGUENTI SEZIONI (* è necessario selezionare almeno una sezione):
\r\n]]>\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\r\n\r\nRICHIEDE
\r\n
\r\nL'ISCRIZIONE NELL'ELENCO IN OGGETTO
\r\nper la successiva nomina degli Organi di Collaudo ai sensi dell'art.116 comma 4 del D. Lgs. n. 36/2023
\r\n
\r\nPER LE SEGUENTI SEZIONI:
\r\n
]]>true\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_DisplayNone": "\n\n",
+ "ELIX_ATTR_EftlSolver": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n",
+ "ELIX_DISPATTR_ReportHidden": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colname",
+ "value": "COL0004",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-fieldgroupvalue-colvalues",
+ "value": "4,5",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "SEL_SEZIONE_3",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-mf",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-resetstep-tag",
+ "value": "Titoli",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_fieldgroupatleastone",
+ "value": "1234",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "ignorezeroattr_fieldgroupatleastone",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 712,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Selezionare almeno una sezione",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_DisplayNone": "\n\n",
+ "ELIX_ATTR_EftlSolver": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n",
+ "ELIX_DISPATTR_ReportHidden": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ }
+ ],
+ "title": "CANDIDATURA_INCARICHI_COLLAUDO_Iscrizione_Sezioni"
+ },
+ {
+ "id": 721,
+ "schema": "",
+ "calculatedFieldData": null,
+ "extendedAttributes": [
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\r\ndi possedere idonea professionalità ed esperienza nel Settore;\r\nche le informazioni riportate nel Curriculum vitae allegato sono veritiere;\r\ndi non aver rivestito, nel biennio precedente alla pubblicazione del presente avviso, cariche in organi di indirizzo politico di questo Ateneo (es. consigliere di amministrazione, membro del Senato Accademico);\r\ndi non aver subito condanne, anche con sentenza non passata in giudicato, per i reati previsti nel Capo I del Titolo II del libro secondo del Codice Penale;\r\nl'assenza di provvedimenti di destituzione dall'impiego presso una Pubblica Amministrazione a seguito di procedimento disciplinare, di dispensa dalla stessa per persistente o insufficiente rendimento, di decadenza o licenziamento da altro impiego pubblico per averlo conseguito mediante produzione dei documenti falsi o viziati da invalidità non sanabile o per qualsiasi altra causa ai sensi della normativa vigente;\r\ndi aver preso visione dell'avviso e di accettare le condizioni in esso stabilite;\r\ndi essere informato, ai sensi del art. 13, Regolamento 2016/679/UE - GDPR, nei limiti e per le finalità specificate nell'Informativa di cui all'art. 9 dell'Avviso e di acconsentire espressamente a che i propri dati personali, raccolti nell'ambito del presente procedimento, siano trattati, anche con strumenti informatici, nell'ambito del procedimento medesimo e, in particolare, che gli stessi siano utilizzati dall'Amministrazione per consentire la nomina quale collaudatore o componente dell'organo di collaudo; acconsente inoltre alla pubblicazione dei seguenti dati: nome, cognome, profilo professionale e requisiti di professionalità ;\r\ndi conoscere il Codice di Comportamento dei dipendenti dell'Università di Parma ed il vigente Piano Integrato Attività e Organizzazione 2025-2027, documenti pubblicati nel sito dell'Ateneo e reperibili ai seguenti indirizzi:\r\n\r\n]]>\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\r\ndi possedere idonea professionalità ed esperienza nel Settore;\r\nche le informazioni riportate nel Curriculum vitae allegato sono veritiere;\r\ndi non aver rivestito, nel biennio precedente alla pubblicazione del presente avviso, cariche in organi di indirizzo politico di questo Ateneo (es. consigliere di amministrazione, membro del Senato Accademico);\r\ndi non aver subito condanne, anche con sentenza non passata in giudicato, per i reati previsti nel Capo I del Titolo II del libro secondo del Codice Penale;\r\nl'assenza di provvedimenti di destituzione dall'impiego presso una Pubblica Amministrazione a seguito di procedimento disciplinare, di dispensa dalla stessa per persistente o insufficiente rendimento, di decadenza o licenziamento da altro impiego pubblico per averlo conseguito mediante produzione dei documenti falsi o viziati da invalidità non sanabile o per qualsiasi altra causa ai sensi della normativa vigente;\r\ndi aver preso visione dell'avviso e di accettare le condizioni in esso stabilite;\r\ndi essere informato, ai sensi del art. 13, Regolamento 2016/679/UE - GDPR, nei limiti e per le finalità specificate nell'Informativa di cui all'art. 9 dell'Avviso e di acconsentire espressamente a che i propri dati personali, raccolti nell'ambito del presente procedimento, siano trattati, anche con strumenti informatici, nell'ambito del procedimento medesimo e, in particolare, che gli stessi siano utilizzati dall'Amministrazione per consentire la nomina quale collaudatore o componente dell'organo di collaudo; acconsente inoltre alla pubblicazione dei seguenti dati: nome, cognome, profilo professionale e requisiti di professionalità ;\r\ndi conoscere il Codice di Comportamento dei dipendenti dell'Università di Parma ed il vigente Piano Integrato Attività e Organizzazione 2025-2027, documenti pubblicati nel sito dell'Ateneo e reperibili ai seguenti indirizzi:\r\n\r\n]]>true\n"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\nSI IMPEGNA
\n
\n\n- qualora nominato, a rilasciare la dichiarazione di assenza delle cause di incompatibilità di cui all'art. 116, comma 6, del D.lgs. n. 36/2023;
\n- qualora nominato, a comunicare immediatamente all'Amministrazione eventuali ragioni di astensione o rifiuto dello specifico incarico;
\n- qualora nominato a fornire l'autorizzazione, ai sensi dell'art. 53 del D. Lgs.165/2001, all'espletamento dell'incarico da parte dell'Amministrazione di appartenenza;
\n- qualora nominato a presentare polizza di responsabilità civile/professionale a copertura dei rischi derivanti da errori od omissioni nelle attività di collaudo, per un massimale adeguato in relazione all'importo delle opere oggetto del collaudo;
\n- a comunicare tempestivamente all'Amministrazione e comunque non oltre 30 giorni dal verificarsi dei fatti causativi, la perdita dei requisiti ed ogni variazione che impedisca il mantenimento dell'iscrizione;
\n- di voler essere contattato, per ogni comunicazione inerente al presente procedimento, sia da parte della Area Dirigenziale Edilizia e Infrastrutture che dal Responsabile del Procedimento del presente avviso.
\n
]]>",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\nSI IMPEGNA
\n
\n\n- qualora nominato, a rilasciare la dichiarazione di assenza delle cause di incompatibilità di cui all'art. 116, comma 6, del D.lgs. n. 36/2023;
\n- qualora nominato, a comunicare immediatamente all'Amministrazione eventuali ragioni di astensione o rifiuto dello specifico incarico;
\n- qualora nominato a fornire l'autorizzazione, ai sensi dell'art. 53 del D. Lgs.165/2001, all'espletamento dell'incarico da parte dell'Amministrazione di appartenenza;
\n- qualora nominato a presentare polizza di responsabilità civile/professionale a copertura dei rischi derivanti da errori od omissioni nelle attività di collaudo, per un massimale adeguato in relazione all'importo delle opere oggetto del collaudo;
\n- a comunicare tempestivamente all'Amministrazione e comunque non oltre 30 giorni dal verificarsi dei fatti causativi, la perdita dei requisiti ed ogni variazione che impedisca il mantenimento dell'iscrizione;
\n- di voler essere contattato, per ogni comunicazione inerente al presente procedimento, sia da parte della Area Dirigenziale Edilizia e Infrastrutture che dal Responsabile del Procedimento del presente avviso.
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "A tal fine\n
\nDICHIARA
\nAI SENSI E PER GLI EFFETTI DEGLI ART. 46 E 47 DEL D.P.R. 445/2000
\n
\nconsapevole della responsabilità penale cui può andare incontro nel caso di affermazioni mendaci e delle relative sanzioni penali di cui all’art. 76 del D.P.R. 445/2000, nonché delle conseguenze amministrative di esclusione della candidatura per l’iscrizione nell’Elenco, ai sensi della normativa vigente in materia, di essere in possesso di tutti i requisiti di partecipazione previsti dall’Avviso di manifestazione di interesse in oggetto e in particolare:
\n]]>",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n
\n
\nA tal fine
\n
\nDICHIARA
\nAI SENSI E PER GLI EFFETTI DEGLI ART. 46 E 47 DEL D.P.R. 445/2000
\n
\nconsapevole della responsabilità penale cui può andare incontro nel caso di affermazioni mendaci e delle relative sanzioni penali di cui all'art. 76 del D.P.R. 445/2000, nonché delle conseguenze amministrative di esclusione della candidatura per l'iscrizione nell'Elenco, ai sensi della normativa vigente in materia, di essere in possesso di tutti i requisiti di partecipazione previsti dall'Avviso di manifestazione di interesse in oggetto e in particolare:
\n
\n
\n\n- di essere dipendente, con rapporto di lavoro subordinato a tempo indeterminato, della seguente Pubblica Amministrazione
\n
\n]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldRequired": "trueLa dichiarazione è obbligatoria",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "",
+ "ELIX_ATTR_FieldRequired": "trueLa dichiarazione è obbligatoria",
+ "ELIX_DISPATTR_ReportLabel": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPost": "",
+ "ELIX_DISPATTR_ReportSectionTextPre": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- di essere in possesso del seguente titolo di studi
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- di essere in possesso dell'abilitazione all'esercizio della professione di
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- di essere iscritto all'Ordine dei/degli/delle
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- di avere prestato servizio presso la seguente Stazione Appaltante
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- di possedere
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- per le sezioni 1, 2 e 3 dell'Elenco - art. 3 dell'Avviso
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n- per la sezione 4 dell'Elenco - art. 3 dell'Avviso
\n
]]>true"
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayNone": "",
+ "ELIX_DISPATTR_ReportSectionTextPre": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_GetFromTag": "",
+ "ELIX_DISPATTR_DisplayNone": "",
+ "ELIX_ATTR_FieldGroupAll": "",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "",
+ "ELIX_DISPATTR_ReportHidden": ""
+ },
+ "attributeBindingData": ""
+ },
+ {
+ "attribute": [],
+ "attributeData": {
+ "ELIX_DISPATTR_GetFromTag": "",
+ "ELIX_DISPATTR_DisplayNone": "",
+ "ELIX_ATTR_FieldGroupAll": "",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "",
+ "ELIX_DISPATTR_ReportHidden": ""
+ },
+ "attributeBindingData": ""
+ }
+ ],
+ "title": "CANDIDATURA_INCARICHI_COLLAUDO_Dichiarazioni_v2"
+ },
+ {
+ "id": 714,
+ "schema": "",
+ "calculatedFieldData": null,
+ "extendedAttributes": [
+ {
+ "attribute": [
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_ReportTextPost": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_DisplayTextPost": "\n\r\n Â
\r\n \r\n
\r\n - Il CV deve essere redatto in formato europeo
\r\n - Il CV deve essere datato e sottoscritto digitalmente o con firma autografa scansionata
\r\n - Il CV deve essere fornito in formato PDF/A
\r\n - Il file non deve essere vuoto e la sua dimensione deve essere minore di 4 MB
\r\n
\r\n
\r\n]]>\n",
+ "ELIX_ATTR_ValidateAttachmentField": "\ntrue4000000application/pdfpdfIl file allegato non rispetta i requisiti indicati\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_ReportTextPost": "\n\n",
+ "ELIX_DISPATTR_DisplayHidden": "\n\n",
+ "ELIX_DISPATTR_DisplayNone": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\r\n(obbligatorio solo in caso di CV non firmato digitalmente)]]>\n",
+ "ELIX_DISPATTR_DisplayTextPost": "\n\r\n Â
\r\n \r\n
\r\n - Il file non deve essere vuoto e la sua dimensione deve essere minore di 4 MB
\r\n - Il file deve essere compreso fra questi formati:
\r\n \r\n - Documento PDF: .pdf
\r\n - Documento firmato P7M: .p7m
\r\n - Immagine TIFF: .tif
\r\n - Immagine JPG: .jpg, .jpeg
\r\n - Immagine PNG: .png
\r\n
\r\n
\r\n
\r\n]]>\n",
+ "ELIX_ATTR_ValidateAttachmentField": "\ntrue4000000pdf,p7m,tif,jpg,jpeg,pngIl file allegato non rispetta i requisiti indicati\n",
+ "ELIX_DISPATTR_ReportHidden": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\r\nAlla presente istanza si allegano i seguenti documenti:
\r\n
]]>\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\r\n
\r\nAlla presente istanza si allegano i seguenti documenti:
\r\n
]]>true\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateDateRange": "\n\n",
+ "ELIX_DISPATTR_DisplayNone": "\n\n",
+ "ELIX_DISPATTR_ValidateDateRangeDefault": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-defaulttype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mintype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-mindays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-minyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxtype",
+ "value": "2",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxabsolute",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxyears",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxdays",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-validatedaterange-maxmonths",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 714,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaynone",
+ "value": "true",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ }
+ ],
+ "title": "CANDIDATURA_INCARICHI_COLLAUDO_Allegati"
+ },
+ {
+ "id": 711,
+ "schema": "",
+ "calculatedFieldData": null,
+ "extendedAttributes": [
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_CheckFiscalCode": "\ntrueCOL0003trueInserire un codice fiscale valido\n",
+ "ELIX_DISPATTR_Tag": "\nRICHIEDENTE_CODICE_FISCALE\n",
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_DisplayReadOnlyV2": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateDateRange": "\nNow - [__] GG [__] MM[__] AA18Selezionare una data valida\n",
+ "ELIX_DISPATTR_GetFromTag": "\nSSO_DATANASCITAyyyy-MM-dd\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\nRICHIEDENTE_INDIRIZZO_COMUNE\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\nRICHIEDENTE_INDIRIZZO_PROVINCIA\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_Tag": "\nRICHIEDENTE_INDIRIZZO_VIA\n",
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateRegExp": "\n^(\\d{5})$Inserire un CAP valido\n",
+ "ELIX_DISPATTR_Tag": "\nRICHIEDENTE_INDIRIZZO_CAP\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateRegExp": "\n^[+]?[\\d]{4,}+$Inserire un numero di telefono fisso o mobile valido\n",
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_GetFromTag": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_ATTR_FieldRequired": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateRegExp": "\n^$|^([!#-'*+-9=?A-Z^-~-]+(\\.[!#-'*+-9=?A-Z^-~-]+)*|\\\"(\\[\\]!#-[^-~ \\t]|(\\\\[\\t -~]))+\\\")@([!#-'*+-9=?A-Z^-~-]+(\\.[!#-'*+-9=?A-Z^-~-]+)*|\\[[\\t -Z^-~]*])$Inserire un indirizzo e-mail valido\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_ATTR_ValidateRegExp": "\n^$|^([!#-'*+-9=?A-Z^-~-]+(\\.[!#-'*+-9=?A-Z^-~-]+)*|\\\"(\\[\\]!#-[^-~ \\t]|(\\\\[\\t -~]))+\\\")@([!#-'*+-9=?A-Z^-~-]+(\\.[!#-'*+-9=?A-Z^-~-]+)*|\\[[\\t -Z^-~]*])$Inserire un indirizzo e-mail valido\n",
+ "ELIX_DISPATTR_Tag": "\n\n",
+ "ELIX_DISPATTR_DisplayLabel": "\n\n",
+ "ELIX_DISPATTR_ReportLabel": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\nCANDIDATURA PER ISCRIZIONE NELL'ELENCO DI COLLAUDATORI
\r\n\r\n
AVVISO DI MANIFESTAZIONE DI INTERESSE
\r\n
RIVOLTO AI DIPENDENTI DI PUBBLICHE AMMINISTRAZIONI PER LA RACCOLTA DI CANDIDATURE FINALIZZATA ALLA COSTITUZIONE DI UN ELENCO DI COMPONENTI DEGLI ORGANI DI COLLAUDO, DA CUI ATTINGERE PER AFFIDARE, EX ART. 116 COMMA 4 DEL D.LGS. 36/2023, GLI INCARICHI DI COLLAUDO NELL'AMBITO DEGLI INTERVENTI DI COMPETENZA DELL'UNIVERSITÀ DI PARMA.
\r\n
\r\n
\r\nDati anagrafici
]]>true\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\nIscritto al seguente Ordine Professionale]]>\n"
+ },
+ "attributeBindingData": "\n\n"
+ },
+ {
+ "attribute": [
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag",
+ "value": "RICHIEDENTE_CODICE_FISCALE",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_order",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_orderbylast",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_format",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_tag_dateformat",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch",
+ "value": "SSO_CF",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-type",
+ "value": "0",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix-tag-fetch-separator",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrdisplaylabel_displaylabel",
+ "value": "Codice fiscale *",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_displayreadonlyv2_1v2",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_display_attrsubmitdisabledelements",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_required",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_fieldrequired_attr_zero_as_null",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_attr_require_fc",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "elix_error_message",
+ "value": "Inserire un codice fiscale valido",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_enable",
+ "value": "true",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_country",
+ "value": "",
+ "properties": []
+ },
+ {
+ "schemaId": 711,
+ "tag": "_DEFAULT",
+ "section": null,
+ "field": "COL0003",
+ "name": "com_anthesi_elix_forms_validation_checkfiscalcode_attr_field",
+ "value": "COL0003",
+ "properties": []
+ }
+ ],
+ "attributeData": {
+ "ELIX_DISPATTR_SectionTextPre": "\n\n",
+ "ELIX_DISPATTR_ReportSectionTextPre": "\n\n"
+ },
+ "attributeBindingData": "\n\n"
+ }
+ ],
+ "title": "CANDIDATURA_INCARICHI_COLLAUDO_Dati_Anagrafici"
+ },
+ {
+ "id": 226,
+ "schema": "\nunipr_titulus_produzionecom.anthesi.rwe2.protocol.impl.TitulusSpoolerarrivofalseCandidatura per affidamento incarichi di collaudo ([TAG]GETVALUEBYTAG,RICHIEDENTE_COGNOME,REQUEST,IUQOID[/TAG] [TAG]GETVALUEBYTAG,RICHIEDENTE_NOME,REQUEST,IUQOID[/TAG], CF: [TAG]GETVALUEBYTAG,RICHIEDENTE_CODICE_FISCALE,REQUEST,IUQOID[/TAG])elixFormselixForms - Manifestazione Interesse Incarichi CollaudotrueManifestazione di interesse per affidamento incarichi di collaudo2026elixForms - Manifestazione Interesse Incarichi Collaudo[TAG]SCHEMAID,17,COL0013,IUQOID, , ,,yyyy[/TAG][TAG]SCHEMAID,17,COL0013,IUQOID, , ,,yyyy[/TAG][TAG]GETVALUEBYTAG,RICHIEDENTE_NOME,REQUEST,IUQOID[/TAG][TAG]GETVALUEBYTAG,RICHIEDENTE_CODICE_FISCALE,REQUEST,IUQOID[/TAG][TAG]GETVALUEBYTAG,RICHIEDENTE_EMAIL,REQUEST,IUQOID[/TAG][TAG]GETVALUEBYTAG,RICHIEDENTE_TELEFONO,REQUEST,IUQOID[/TAG][TAG]GETVALUEBYTAG,RICHIEDENTE_INDIRIZZO_VIA,REQUEST,IUQOID[/TAG], [TAG]GETVALUEBYTAG,RICHIEDENTE_INDIRIZZO_CAP,REQUEST,IUQOID[/TAG] [TAG]GETVALUEBYTAG,RICHIEDENTE_INDIRIZZO_COMUNE,REQUEST,IUQOID[/TAG] ([TAG]GETVALUEBYTAG,RICHIEDENTE_INDIRIZZO_PROVINCIA,REQUEST,IUQOID[/TAG])[TAG]GETVALUEBYTAG,RICHIEDENTE_COGNOME,REQUEST,IUQOID[/TAG]\n",
+ "calculatedFieldData": null,
+ "extendedAttributes": [],
+ "title": "Protocol - Titulus"
+ }
+ ],
+ "moduleConfig": [
+ "ATTACHAllegatitruetrue4000<p><strong>INFORMAZIONI PER LA COMPILAZIONE</strong></p>\n\n<p>Tutti i campi contrassegnati dal carattere * indicano un campo da valorizzare obbligatoriamente</p>\n]]>",
+ "\nVALIDATIONIdentifica utentetruetrue1000\n",
+ "USERDATADati utentetruefalse2000<p><strong>INFORMAZIONI PER LA COMPILAZIONE</strong></p>\n\n<p>Tutti i campi contrassegnati dal carattere * indicano un campo da valorizzare obbligatoriamente</p>\n]]>",
+ "FORMSModulitruetrue3000<p><strong>INFORMAZIONI PER LA COMPILAZIONE</strong></p>\n\n<p>Tutti i campi contrassegnati dal carattere * indicano un campo da valorizzare obbligatoriamente</p>\n]]>",
+ "CONFIRMRiepilogotruetrue5000<p>Si prega di verificare i dati presenti nel riepilogo prima di proseguire</p>\n]]>",
+ "\nPRINTConvalidatruetrue6000true\n",
+ "\nRECEIPTInoltrotruetrue9000truececilia.fantuzzi@unipr.itfalse\n",
+ "\nPROTOCOLProtocollotruetrue10000\n",
+ "\nAUTHORIZATIONAutorizzazionefalsetrue7000\n"
+ ],
+ "modulePrintConfig": "\n/elixFormsCustom/overrides/pdf/module_generic_print.jsp/elixFormsCustom/overrides/pdf/module_generic_draft.jsp\n",
+ "moduleUserValidation": [
+ "\n\n",
+ "\n\n"
+ ],
+ "validationTypes": [
+ "\n\n",
+ "\n\n"
+ ],
+ "validationTypesGenericIdTagMap": {
+ "163": "CIE",
+ "151": "SPID"
+ },
+ "moduleValidation": [
+ "\nfalseSempre (default)true\n",
+ "\nfalseSempre (default)false\n",
+ "\nfalseSempre (default)true\n",
+ "\n\n"
+ ],
+ "moduleBinaryData": {},
+ "logo": null,
+ "logModule": {
+ "errorMessage": [],
+ "debugMessage": [],
+ "processMessage": [
+ "Import scheda [720] Titolo : [CANDIDATURA_INCARICHI_COLLAUDO_Titoli_v2]
",
+ "Import scheda [719] Titolo : [CANDIDATURA_INCARICHI_COLLAUDO_Stazione_Appaltante]
",
+ "Import scheda [712] Titolo : [CANDIDATURA_INCARICHI_COLLAUDO_Iscrizione_Sezioni]
",
+ "Import scheda [721] Titolo : [CANDIDATURA_INCARICHI_COLLAUDO_Dichiarazioni_v2]
",
+ "Import scheda [714] Titolo : [CANDIDATURA_INCARICHI_COLLAUDO_Allegati]
",
+ "Import scheda [711] Titolo : [CANDIDATURA_INCARICHI_COLLAUDO_Dati_Anagrafici]
",
+ "Import scheda protocollo [226]",
+ "Import scheda [226] Titolo : [Protocol - Titulus]
"
+ ],
+ "komessage": []
+ },
+ "translations": [],
+ "translationsTabMapper": [
+ {
+ "sourceGenID": 92764,
+ "code": "FORMS",
+ "etichetta": "Titoli",
+ "order": 3002
+ },
+ {
+ "sourceGenID": 91688,
+ "code": "ATTACH",
+ "etichetta": "Allegati",
+ "order": 4001
+ },
+ {
+ "sourceGenID": 92765,
+ "code": "FORMS",
+ "etichetta": "Dichiarazioni",
+ "order": 3004
+ },
+ {
+ "sourceGenID": 94916,
+ "code": "FORMS",
+ "etichetta": "Pubbliche Amministrazioni",
+ "order": 3003
+ },
+ {
+ "sourceGenID": 91402,
+ "code": "FORMS",
+ "etichetta": "Scelta sezione",
+ "order": 3001
+ },
+ {
+ "sourceGenID": 91400,
+ "code": "USERDATA",
+ "etichetta": "Dati anagrafici",
+ "order": 2001
+ }
+ ],
+ "translationsValidationTabMapper": [
+ {
+ "sourceGenID": 91408,
+ "code": "FIRMA_AUTOGRAFA"
+ },
+ {
+ "sourceGenID": 91409,
+ "code": "DIGITAL_SIGNATURE"
+ },
+ {
+ "sourceGenID": 91407,
+ "code": "FREE_DECLARATION"
+ },
+ {
+ "sourceGenID": 91410,
+ "code": "SELF_DECLARATION"
+ },
+ {
+ "sourceGenID": 91406,
+ "code": "PRINT"
+ }
+ ],
+ "questionMapper": {
+ "questions": []
+ },
+ "federaModuleConfig": null,
+ "cinecaModuleConfig": null,
+ "source": "STQ0NTNfVU5JUFI=",
+ "sourceCrc": "2OB9NiJdJVKQVG90j6I+dxfdnxs79bRZZGjO9PigLA4=",
+ "version": "1.30.0",
+ "versionCRC": "9R/MUyU5Wz8/PbO7+a90Yqts8yrN/un3fiD0ZXj3w98=",
+ "protocolDataSchemaIds": [
+ 226
+ ]
+ }
diff --git a/bruno/collections/elixForms API v2/Console UI/Get Object Title (GENERICSCHEMA).yml b/bruno/collections/elixForms API v2/Console UI/Get Object Title (GENERICSCHEMA).yml
new file mode 100644
index 0000000..d10d241
--- /dev/null
+++ b/bruno/collections/elixForms API v2/Console UI/Get Object Title (GENERICSCHEMA).yml
@@ -0,0 +1,106 @@
+info:
+ name: Get Object Title (GENERICSCHEMA)
+ type: http
+ seq: 5
+
+http:
+ method: GET
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/objectTitle?ATTR_NAME=master_field&ATTR_VALUE=true&TYPE=GENERICSCHEMA&OBJECT_ID=168258"
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ - name: x-requested-with
+ value: XMLHttpRequest
+ params:
+ - name: ATTR_NAME
+ value: master_field
+ type: query
+ - name: ATTR_VALUE
+ value: "true"
+ type: query
+ - name: TYPE
+ value: GENERICSCHEMA
+ type: query
+ - name: OBJECT_ID
+ value: "168258"
+ type: query
+
+runtime:
+ scripts:
+ - type: before-request
+ code: |-
+ const noCookieFoundError = "No AJSRV cookie found!";
+
+ var ajsrvCookie = bru.getVar("elixFormsAjsrvCookie");
+
+ if (ajsrvCookie == null || ajsrvCookie === "") {
+ console.error(noCookieFoundError, ajsrvCookie);
+ throw new Error(noCookieFoundError);
+ }
+
+settings:
+ encodeUrl: true
+ timeout: 0
+ followRedirects: true
+ maxRedirects: 5
+ forwardAuthorizationHeader: true
+
+examples:
+ - name: example
+ request:
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/objectTitle?ATTR_NAME=master_field&ATTR_VALUE=true&TYPE=GENERICSCHEMA&OBJECT_ID=168258"
+ method: GET
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ - name: x-requested-with
+ value: XMLHttpRequest
+ params:
+ - name: ATTR_NAME
+ value: master_field
+ type: query
+ - name: ATTR_VALUE
+ value: "true"
+ type: query
+ - name: TYPE
+ value: GENERICSCHEMA
+ type: query
+ - name: OBJECT_ID
+ value: "168258"
+ type: query
+ response:
+ status: 200
+ statusText: OK
+ headers:
+ - name: date
+ value: Wed, 26 Aug 2026 10:40:39 GMT
+ - name: server
+ value: '""'
+ - name: content-security-policy
+ value: "default-src https: data: 'unsafe-inline' 'unsafe-eval'; img-src 'self' blob: data: https:;"
+ - name: content-type
+ value: application/json;charset=UTF-8
+ - name: content-length
+ value: "17"
+ - name: set-cookie
+ value: JSESSIONID=da85f0a0570e23aea6397a8bc94f; Path=/; HttpOnly
+ - name: strict-transport-security
+ value: max-age=31536000; includeSubDomains
+ - name: x-frame-options
+ value: SAMEORIGIN
+ - name: x-xss-protection
+ value: "1"
+ - name: x-content-type-options
+ value: nosniff
+ - name: referrer-policy
+ value: unsafe-url
+ - name: keep-alive
+ value: timeout=10, max=500
+ - name: connection
+ value: Keep-Alive
+ body:
+ type: json
+ data: |-
+ {
+ "objectList": []
+ }
diff --git a/bruno/collections/elixForms API v2/Console UI/Get Object Title (SCHEMADATA).yml b/bruno/collections/elixForms API v2/Console UI/Get Object Title (SCHEMADATA).yml
new file mode 100644
index 0000000..65185ac
--- /dev/null
+++ b/bruno/collections/elixForms API v2/Console UI/Get Object Title (SCHEMADATA).yml
@@ -0,0 +1,106 @@
+info:
+ name: Get Object Title (SCHEMADATA)
+ type: http
+ seq: 4
+
+http:
+ method: GET
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/objectTitle?ATTR_NAME=master_field&ATTR_VALUE=true&TYPE=SCHEMADATA&OBJECT_ID=35397"
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ - name: x-requested-with
+ value: XMLHttpRequest
+ params:
+ - name: ATTR_NAME
+ value: master_field
+ type: query
+ - name: ATTR_VALUE
+ value: "true"
+ type: query
+ - name: TYPE
+ value: SCHEMADATA
+ type: query
+ - name: OBJECT_ID
+ value: "35397"
+ type: query
+
+runtime:
+ scripts:
+ - type: before-request
+ code: |-
+ const noCookieFoundError = "No AJSRV cookie found!";
+
+ var ajsrvCookie = bru.getVar("elixFormsAjsrvCookie");
+
+ if (ajsrvCookie == null || ajsrvCookie === "") {
+ console.error(noCookieFoundError, ajsrvCookie);
+ throw new Error(noCookieFoundError);
+ }
+
+settings:
+ encodeUrl: true
+ timeout: 0
+ followRedirects: true
+ maxRedirects: 5
+ forwardAuthorizationHeader: true
+
+examples:
+ - name: example
+ request:
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/objectTitle?ATTR_NAME=master_field&ATTR_VALUE=true&TYPE=SCHEMADATA&OBJECT_ID=35397"
+ method: GET
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ - name: x-requested-with
+ value: XMLHttpRequest
+ params:
+ - name: ATTR_NAME
+ value: master_field
+ type: query
+ - name: ATTR_VALUE
+ value: "true"
+ type: query
+ - name: TYPE
+ value: SCHEMADATA
+ type: query
+ - name: OBJECT_ID
+ value: "35397"
+ type: query
+ response:
+ status: 200
+ statusText: OK
+ headers:
+ - name: date
+ value: Wed, 26 Aug 2026 10:40:35 GMT
+ - name: server
+ value: Apache
+ - name: content-security-policy
+ value: "default-src https: data: 'unsafe-inline' 'unsafe-eval'; img-src 'self' blob: data: https:;"
+ - name: content-type
+ value: application/json;charset=UTF-8
+ - name: content-length
+ value: "17"
+ - name: set-cookie
+ value: JSESSIONID=da84d30d8f6a7c5f0e18dc3b7ebf; Path=/; HttpOnly
+ - name: strict-transport-security
+ value: max-age=31536000; includeSubDomains
+ - name: x-frame-options
+ value: SAMEORIGIN
+ - name: x-xss-protection
+ value: "1"
+ - name: x-content-type-options
+ value: nosniff
+ - name: referrer-policy
+ value: unsafe-url
+ - name: keep-alive
+ value: timeout=10, max=500
+ - name: connection
+ value: Keep-Alive
+ body:
+ type: json
+ data: |-
+ {
+ "objectList": []
+ }
diff --git a/bruno/collections/elixForms API v2/Console UI/Save Object.yml b/bruno/collections/elixForms API v2/Console UI/Save Object.yml
new file mode 100644
index 0000000..6dc63ae
--- /dev/null
+++ b/bruno/collections/elixForms API v2/Console UI/Save Object.yml
@@ -0,0 +1,228 @@
+info:
+ name: Save Object
+ type: http
+ seq: 6
+
+http:
+ method: POST
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/save"
+ headers:
+ - name: Cookie
+ value: ISIPSESSION=047b770fac5627c03c94030ca0c3b45c; AJSRV=BTN_USER_1787207482458_8771527838545232265; ISIPSESSION_TRACK=99b2488e73af7c61f6e5affceeb32502; JSESSIONID=e3c44b958c4f282660a5fc8ed994
+ - name: x-requested-with
+ value: XMLHttpRequest
+ body:
+ type: multipart-form
+ data:
+ - name: S_616_168008_COL0009
+ type: text
+ value: azione_form_AUTOR_firmaAutorizzazione
+
+runtime:
+ scripts:
+ - type: before-request
+ code: |-
+ const noCookieFoundError = "No AJSRV cookie found!";
+
+ var ajsrvCookie = bru.getVar("elixFormsAjsrvCookie");
+
+ if (ajsrvCookie == null || ajsrvCookie === "") {
+ console.error(noCookieFoundError, ajsrvCookie);
+ throw new Error(noCookieFoundError);
+ }
+
+settings:
+ encodeUrl: true
+ timeout: 0
+ followRedirects: true
+ maxRedirects: 5
+ forwardAuthorizationHeader: true
+
+examples:
+ - name: example
+ request:
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/save"
+ method: POST
+ headers:
+ - name: Accept
+ value: "*/*"
+ - name: Accept-Encoding
+ value: gzip, deflate, br, zstd
+ - name: Accept-Language
+ value: it,it-IT;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6
+ disabled: true
+ - name: Cookie
+ value: ISIPSESSION=047b770fac5627c03c94030ca0c3b45c; AJSRV=BTN_USER_1787207482458_8771527838545232265; ISIPSESSION_TRACK=99b2488e73af7c61f6e5affceeb32502; JSESSIONID=e3c44b958c4f282660a5fc8ed994
+ - name: Host
+ value: console-unipr.elixforms.it
+ disabled: true
+ - name: Referer
+ value: https://console-unipr.elixforms.it/ajconsole/
+ disabled: true
+ - name: x-requested-with
+ value: XMLHttpRequest
+ body:
+ type: multipart-form
+ data:
+ - name: S_616_168008_COL0009
+ type: text
+ value: azione_form_AUTOR_firmaAutorizzazione
+ response:
+ status: 200
+ statusText: OK
+ headers:
+ - name: date
+ value: Wed, 26 Aug 2026 09:01:46 GMT
+ - name: server
+ value: '""'
+ - name: content-security-policy
+ value: "default-src https: data: 'unsafe-inline' 'unsafe-eval'; img-src 'self' blob: data: https:;"
+ - name: content-type
+ value: application/json;charset=UTF-8
+ - name: content-length
+ value: "1636"
+ - name: strict-transport-security
+ value: max-age=31536000; includeSubDomains
+ - name: x-frame-options
+ value: SAMEORIGIN
+ - name: x-xss-protection
+ value: "1"
+ - name: x-content-type-options
+ value: nosniff
+ - name: referrer-policy
+ value: unsafe-url
+ - name: keep-alive
+ value: timeout=10, max=500
+ - name: connection
+ value: Keep-Alive
+ body:
+ type: json
+ data: |-
+ {
+ "errors": {
+ "objectList": []
+ },
+ "result": {
+ "objectList": [
+ {
+ "id": 616,
+ "title": "WFTemplate",
+ "dataId": 168008,
+ "tag": "",
+ "objectId": 35274,
+ "sections": [
+ {
+ "title": "Template",
+ "key": "SEC_0006",
+ "orderKey": "ORD001",
+ "fields": [
+ {
+ "type": "STRING",
+ "key": "COL0014",
+ "title": "Titolo template",
+ "searchable": false,
+ "valueList": [
+ {
+ "key": "",
+ "value": "Autorizzazione sottodominio"
+ }
+ ],
+ "itemList": null,
+ "toManyItems": false,
+ "attributes": [],
+ "orderKey": "ORD001",
+ "defaultValue": null,
+ "required": false
+ },
+ {
+ "type": "HTML",
+ "key": "COL0009",
+ "title": "Template",
+ "searchable": false,
+ "valueList": [
+ {
+ "key": "",
+ "value": "azione_form_AUTOR_firmaAutorizzazione"
+ }
+ ],
+ "itemList": null,
+ "toManyItems": false,
+ "attributes": [],
+ "orderKey": "ORD002",
+ "defaultValue": null,
+ "required": false
+ }
+ ],
+ "attributes": []
+ },
+ {
+ "title": "Metadata",
+ "key": "SEC_0007",
+ "orderKey": "ORD002",
+ "fields": [
+ {
+ "type": "STRING",
+ "key": "COL0010",
+ "title": "Tag azione",
+ "searchable": false,
+ "valueList": [
+ {
+ "key": "",
+ "value": "azione_form_AUTOR_firmaAutorizzazione"
+ }
+ ],
+ "itemList": null,
+ "toManyItems": false,
+ "attributes": [],
+ "orderKey": "ORD001",
+ "defaultValue": null,
+ "required": false
+ },
+ {
+ "type": "STRING",
+ "key": "COL0011",
+ "title": "Tag procedimento",
+ "searchable": false,
+ "valueList": [
+ {
+ "key": "",
+ "value": "gestione_siti_web_nuovo_wf"
+ }
+ ],
+ "itemList": null,
+ "toManyItems": false,
+ "attributes": [],
+ "orderKey": "ORD002",
+ "defaultValue": null,
+ "required": false
+ },
+ {
+ "type": "STRING",
+ "key": "COL0012",
+ "title": "Tag modulo",
+ "searchable": false,
+ "valueList": [
+ {
+ "key": "",
+ "value": "RequestForm_GESTIONE_SITI_WEB_NUOVO"
+ }
+ ],
+ "itemList": null,
+ "toManyItems": false,
+ "attributes": [],
+ "orderKey": "ORD003",
+ "defaultValue": null,
+ "required": false
+ }
+ ],
+ "attributes": []
+ }
+ ],
+ "categories": [],
+ "aclTable": [],
+ "master": false,
+ "attributes": []
+ }
+ ]
+ }
+ }
diff --git a/bruno/collections/elixForms API v2/Console UI/Search schemas.yml b/bruno/collections/elixForms API v2/Console UI/Search schemas.yml
new file mode 100644
index 0000000..91239e9
--- /dev/null
+++ b/bruno/collections/elixForms API v2/Console UI/Search schemas.yml
@@ -0,0 +1,147 @@
+info:
+ name: Search schemas
+ type: http
+ seq: 3
+
+http:
+ method: GET
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/search?SEARCH_IN[]=616&PAGE=1&AJL=it&PAGESIZE=80&SECURE=true"
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ - name: x-requested-with
+ value: XMLHttpRequest
+ params:
+ - name: SEARCH_IN[]
+ value: "616"
+ type: query
+ - name: PAGE
+ value: "1"
+ type: query
+ - name: AJL
+ value: it
+ type: query
+ - name: PAGESIZE
+ value: "80"
+ type: query
+ - name: SECURE
+ value: "true"
+ type: query
+
+runtime:
+ scripts:
+ - type: before-request
+ code: |-
+ const noCookieFoundError = "No AJSRV cookie found!";
+
+ var ajsrvCookie = bru.getVar("elixFormsAjsrvCookie");
+
+ if (ajsrvCookie == null || ajsrvCookie === "") {
+ console.error(noCookieFoundError, ajsrvCookie);
+ throw new Error(noCookieFoundError);
+ }
+
+settings:
+ encodeUrl: true
+ timeout: 0
+ followRedirects: true
+ maxRedirects: 5
+ forwardAuthorizationHeader: true
+
+examples:
+ - name: example
+ request:
+ url: "{{elixFormsRootUrl}}/AJSRV/metadata/search?SEARCH_IN[]=616&PAGE=1&AJL=it&PAGESIZE=80&SECURE=true"
+ method: GET
+ headers:
+ - name: Cookie
+ value: "{{elixFormsAjsrvCookie}}"
+ - name: x-requested-with
+ value: XMLHttpRequest
+ params:
+ - name: SEARCH_IN[]
+ value: "616"
+ type: query
+ - name: PAGE
+ value: "1"
+ type: query
+ - name: AJL
+ value: it
+ type: query
+ - name: PAGESIZE
+ value: "80"
+ type: query
+ - name: SECURE
+ value: "true"
+ type: query
+ response:
+ status: 200
+ statusText: OK
+ headers:
+ - name: date
+ value: Wed, 26 Aug 2026 10:35:04 GMT
+ - name: server
+ value: Apache
+ - name: content-security-policy
+ value: "default-src https: data: 'unsafe-inline' 'unsafe-eval'; img-src 'self' blob: data: https:;"
+ - name: content-type
+ value: application/json;charset=UTF-8
+ - name: content-length
+ value: "438"
+ - name: set-cookie
+ value: JSESSIONID=da342d4412c8c3fea86b58918c9e; Path=/; HttpOnly
+ - name: strict-transport-security
+ value: max-age=31536000; includeSubDomains
+ - name: x-frame-options
+ value: SAMEORIGIN
+ - name: x-xss-protection
+ value: "1"
+ - name: x-content-type-options
+ value: nosniff
+ - name: referrer-policy
+ value: unsafe-url
+ - name: keep-alive
+ value: timeout=10, max=500
+ - name: connection
+ value: Keep-Alive
+ body:
+ type: json
+ data: |-
+ {
+ "totalRecords": 0,
+ "pageSize": 80,
+ "numPages": 0,
+ "currentPage": 1,
+ "columns": [
+ {
+ "key": "ID_OBJECT",
+ "value": "ID_OBJECT"
+ },
+ {
+ "key": "S_616_ID_GENERICSCHEMA",
+ "value": "S_616_ID_GENERICSCHEMA"
+ },
+ {
+ "key": "S_616_COL0014",
+ "value": "Titolo template"
+ },
+ {
+ "key": "S_616_COL0010",
+ "value": "Tag azione"
+ },
+ {
+ "key": "S_616_COL0011",
+ "value": "Tag procedimento"
+ },
+ {
+ "key": "S_616_COL0009",
+ "value": "Template"
+ },
+ {
+ "key": "S_616_COL0012",
+ "value": "Tag modulo"
+ }
+ ],
+ "data": [],
+ "extraData": {}
+ }
diff --git a/bruno/collections/elixForms API v2/Console UI/folder.yml b/bruno/collections/elixForms API v2/Console UI/folder.yml
new file mode 100644
index 0000000..6e645ee
--- /dev/null
+++ b/bruno/collections/elixForms API v2/Console UI/folder.yml
@@ -0,0 +1,13 @@
+info:
+ name: Console UI
+ type: folder
+ seq: 3
+
+request:
+ auth: inherit
+ scripts:
+ - type: tests
+ code: |-
+ test("Status code is 200", function () {
+ expect(res.getStatus()).to.equal(200);
+ });
diff --git a/bruno/collections/elixForms API v2/_HACKS/Export Module.yml b/bruno/collections/elixForms API v2/_HACKS/Export Module.yml
deleted file mode 100644
index 4fd8d8e..0000000
--- a/bruno/collections/elixForms API v2/_HACKS/Export Module.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-info:
- name: Export Module
- type: http
- seq: 1
-
-http:
- method: GET
- url: "{{elixFormsRootUrl}}/AJSRV/ELIXFORMS/moduleExport?MODULE_ID=21405&exportProtocol=true"
- params:
- - name: MODULE_ID
- value: "21405"
- type: query
- - name: exportProtocol
- value: "true"
- type: query
- auth: inherit
-
-settings:
- encodeUrl: true
- timeout: 0
- followRedirects: true
- maxRedirects: 5
- forwardAuthorizationHeader: true
diff --git a/bruno/collections/elixForms API v2/_HACKS/Get Object Title (GENERICSCHEMA).yml b/bruno/collections/elixForms API v2/_HACKS/Get Object Title (GENERICSCHEMA).yml
deleted file mode 100644
index bcde9ed..0000000
--- a/bruno/collections/elixForms API v2/_HACKS/Get Object Title (GENERICSCHEMA).yml
+++ /dev/null
@@ -1,46 +0,0 @@
-info:
- name: Get Object Title (GENERICSCHEMA)
- type: http
- seq: 4
-
-http:
- method: GET
- url: "{{elixFormsRootUrl}}/AJSRV/metadata/objectTitle?ATTR_NAME=master_field&ATTR_VALUE=true&TYPE=GENERICSCHEMA&OBJECT_ID=168258"
- headers:
- - name: Accept
- value: "*/*"
- - name: Accept-Encoding
- value: gzip, deflate, br, zstd
- - name: Accept-Language
- value: it,it-IT;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6
- disabled: true
- - name: Cookie
- value: ISIPSESSION=047b770fac5627c03c94030ca0c3b45c; AJSRV=BTN_USER_1787207482458_8771527838545232265; ISIPSESSION_TRACK=99b2488e73af7c61f6e5affceeb32502; JSESSIONID=e3c44b958c4f282660a5fc8ed994
- - name: Host
- value: console-unipr.elixforms.it
- disabled: true
- - name: Referer
- value: https://console-unipr.elixforms.it/ajconsole/
- disabled: true
- - name: x-requested-with
- value: XMLHttpRequest
- params:
- - name: ATTR_NAME
- value: master_field
- type: query
- - name: ATTR_VALUE
- value: "true"
- type: query
- - name: TYPE
- value: GENERICSCHEMA
- type: query
- - name: OBJECT_ID
- value: "168258"
- type: query
-
-settings:
- encodeUrl: true
- timeout: 0
- followRedirects: true
- maxRedirects: 5
- forwardAuthorizationHeader: true
diff --git a/bruno/collections/elixForms API v2/_HACKS/Get Object Title (SCHEMADATA).yml b/bruno/collections/elixForms API v2/_HACKS/Get Object Title (SCHEMADATA).yml
deleted file mode 100644
index 1667c3a..0000000
--- a/bruno/collections/elixForms API v2/_HACKS/Get Object Title (SCHEMADATA).yml
+++ /dev/null
@@ -1,46 +0,0 @@
-info:
- name: Get Object Title (SCHEMADATA)
- type: http
- seq: 3
-
-http:
- method: GET
- url: "{{elixFormsRootUrl}}/AJSRV/metadata/objectTitle?ATTR_NAME=master_field&ATTR_VALUE=true&TYPE=SCHEMADATA&OBJECT_ID=35397"
- headers:
- - name: Accept
- value: "*/*"
- - name: Accept-Encoding
- value: gzip, deflate, br, zstd
- - name: Accept-Language
- value: it,it-IT;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6
- disabled: true
- - name: Cookie
- value: ISIPSESSION=047b770fac5627c03c94030ca0c3b45c; AJSRV=BTN_USER_1787207482458_8771527838545232265; ISIPSESSION_TRACK=99b2488e73af7c61f6e5affceeb32502; JSESSIONID=e3c44b958c4f282660a5fc8ed994
- - name: Host
- value: console-unipr.elixforms.it
- disabled: true
- - name: Referer
- value: https://console-unipr.elixforms.it/ajconsole/
- disabled: true
- - name: x-requested-with
- value: XMLHttpRequest
- params:
- - name: ATTR_NAME
- value: master_field
- type: query
- - name: ATTR_VALUE
- value: "true"
- type: query
- - name: TYPE
- value: SCHEMADATA
- type: query
- - name: OBJECT_ID
- value: "35397"
- type: query
-
-settings:
- encodeUrl: true
- timeout: 0
- followRedirects: true
- maxRedirects: 5
- forwardAuthorizationHeader: true
diff --git a/bruno/collections/elixForms API v2/_HACKS/Search schemas.yml b/bruno/collections/elixForms API v2/_HACKS/Search schemas.yml
deleted file mode 100644
index 62d158f..0000000
--- a/bruno/collections/elixForms API v2/_HACKS/Search schemas.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-info:
- name: Search schemas
- type: http
- seq: 2
-
-http:
- method: GET
- url: "{{elixFormsRootUrl}}/AJSRV/metadata/search?SEARCH_IN[]=616&PAGE=1&AJL=it&PAGESIZE=80&SECURE=true"
- headers:
- - name: Accept
- value: "*/*"
- disabled: true
- - name: Accept-Encoding
- value: gzip, deflate, br, zstd
- disabled: true
- - name: Accept-Language
- value: it,it-IT;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6
- disabled: true
- - name: Cookie
- value: ISIPSESSION=047b770fac5627c03c94030ca0c3b45c; AJSRV=BTN_USER_1787207482458_8771527838545232265; ISIPSESSION_TRACK=99b2488e73af7c61f6e5affceeb32502; JSESSIONID=e3c44b958c4f282660a5fc8ed994
- - name: Host
- value: console-unipr.elixforms.it
- disabled: true
- - name: Referer
- value: https://console-unipr.elixforms.it/ajconsole/
- disabled: true
- - name: x-requested-with
- value: XMLHttpRequest
- params:
- - name: SEARCH_IN[]
- value: "616"
- type: query
- - name: PAGE
- value: "1"
- type: query
- - name: AJL
- value: it
- type: query
- - name: PAGESIZE
- value: "80"
- type: query
- - name: SECURE
- value: "true"
- type: query
-
-settings:
- encodeUrl: true
- timeout: 0
- followRedirects: true
- maxRedirects: 5
- forwardAuthorizationHeader: true
diff --git a/bruno/collections/elixForms API v2/_HACKS/folder.yml b/bruno/collections/elixForms API v2/_HACKS/folder.yml
deleted file mode 100644
index e6b3212..0000000
--- a/bruno/collections/elixForms API v2/_HACKS/folder.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-info:
- name: _HACKS
- type: folder
- seq: 3
-
-request:
- auth: inherit
diff --git a/env.json.template b/env.json.template
index 0aeb101..375b914 100644
--- a/env.json.template
+++ b/env.json.template
@@ -1,6 +1,7 @@
{
"Config": {
"ExcludeFromBruno": [
+ "elixFormsRootUrl",
"elixFormsApiUrl",
"elixFormsApiUrl_Default",
"esse3apiRootUrl",
@@ -10,6 +11,7 @@
},
"API": {
"elixForms API v2": {
+ "elixFormsRootUrl": "https://procedure.unipr.it",
"elixFormsApiUrl": "https://procedure.unipr.it/eF/services/api",
"elixFormsApiUrl_Default": "https://procedure.unipr.it/eF/api",
"elixFormsApiUsername": null,