fix(schematron): Correct download URLs for XRechnung and PEPPOL validation files
- Fixed XRechnung URLs to use correct filenames (XRechnung-UBL-validation.sch) - Removed non-existent PEPPOL-T10 and PEPPOL-T14 files - Added PEPPOL-EN16931-CII validation file - All 7 validation files now download successfully: - 3 EN16931 files (UBL, CII, EDIFACT) - 2 PEPPOL files (UBL, CII) - 2 XRechnung files (UBL, CII)
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -20,3 +20,4 @@ dist_*/
|
||||
# custom
|
||||
test/output
|
||||
.serena
|
||||
assets/schematron
|
||||
|
@@ -3,5 +3,5 @@
|
||||
"version": "1.3.14",
|
||||
"url": "https://github.com/ConnectingEurope/eInvoicing-EN16931/raw/master/cii/schematron/EN16931-CII-validation.sch",
|
||||
"format": "CII",
|
||||
"downloadDate": "2025-08-12T05:01:07.919Z"
|
||||
"downloadDate": "2025-08-12T05:13:30.667Z"
|
||||
}
|
@@ -3,5 +3,5 @@
|
||||
"version": "1.3.14",
|
||||
"url": "https://github.com/ConnectingEurope/eInvoicing-EN16931/raw/master/edifact/schematron/EN16931-EDIFACT-validation.sch",
|
||||
"format": "CII",
|
||||
"downloadDate": "2025-08-12T05:01:08.258Z"
|
||||
"downloadDate": "2025-08-12T05:13:31.017Z"
|
||||
}
|
@@ -3,5 +3,5 @@
|
||||
"version": "1.3.14",
|
||||
"url": "https://github.com/ConnectingEurope/eInvoicing-EN16931/raw/master/ubl/schematron/EN16931-UBL-validation.sch",
|
||||
"format": "UBL",
|
||||
"downloadDate": "2025-08-12T05:01:07.598Z"
|
||||
"downloadDate": "2025-08-12T05:13:30.323Z"
|
||||
}
|
@@ -3,5 +3,5 @@
|
||||
"version": "3.0.17",
|
||||
"url": "https://github.com/OpenPEPPOL/peppol-bis-invoice-3/raw/master/rules/sch/PEPPOL-EN16931-UBL.sch",
|
||||
"format": "UBL",
|
||||
"downloadDate": "2025-08-12T05:01:08.635Z"
|
||||
"downloadDate": "2025-08-12T05:13:31.420Z"
|
||||
}
|
@@ -44,14 +44,14 @@ export const SCHEMATRON_SOURCES: Record<string, SchematronSource[]> = {
|
||||
{
|
||||
name: 'XRechnung-UBL',
|
||||
version: '3.0.2',
|
||||
url: 'https://github.com/itplr-kosit/xrechnung-schematron/raw/master/src/schematron/ubl-invoice/XRechnung-UBL-3.0.sch',
|
||||
url: 'https://github.com/itplr-kosit/xrechnung-schematron/raw/master/src/validation/schematron/ubl/XRechnung-UBL-validation.sch',
|
||||
description: 'XRechnung CIUS validation for UBL',
|
||||
format: 'UBL'
|
||||
},
|
||||
{
|
||||
name: 'XRechnung-CII',
|
||||
version: '3.0.2',
|
||||
url: 'https://github.com/itplr-kosit/xrechnung-schematron/raw/master/src/schematron/cii/XRechnung-CII-3.0.sch',
|
||||
url: 'https://github.com/itplr-kosit/xrechnung-schematron/raw/master/src/validation/schematron/cii/XRechnung-CII-validation.sch',
|
||||
description: 'XRechnung CIUS validation for CII',
|
||||
format: 'CII'
|
||||
}
|
||||
@@ -61,22 +61,15 @@ export const SCHEMATRON_SOURCES: Record<string, SchematronSource[]> = {
|
||||
name: 'PEPPOL-EN16931-UBL',
|
||||
version: '3.0.17',
|
||||
url: 'https://github.com/OpenPEPPOL/peppol-bis-invoice-3/raw/master/rules/sch/PEPPOL-EN16931-UBL.sch',
|
||||
description: 'PEPPOL BIS Billing 3.0 validation rules',
|
||||
description: 'PEPPOL BIS Billing 3.0 validation rules for UBL',
|
||||
format: 'UBL'
|
||||
},
|
||||
{
|
||||
name: 'PEPPOL-T10',
|
||||
name: 'PEPPOL-EN16931-CII',
|
||||
version: '3.0.17',
|
||||
url: 'https://github.com/OpenPEPPOL/peppol-bis-invoice-3/raw/master/rules/sch/UBL-T10.sch',
|
||||
description: 'PEPPOL Transaction 10 (Invoice) validation',
|
||||
format: 'UBL'
|
||||
},
|
||||
{
|
||||
name: 'PEPPOL-T14',
|
||||
version: '3.0.17',
|
||||
url: 'https://github.com/OpenPEPPOL/peppol-bis-invoice-3/raw/master/rules/sch/UBL-T14.sch',
|
||||
description: 'PEPPOL Transaction 14 (Credit Note) validation',
|
||||
format: 'UBL'
|
||||
url: 'https://github.com/OpenPEPPOL/peppol-bis-invoice-3/raw/master/rules/sch/PEPPOL-EN16931-CII.sch',
|
||||
description: 'PEPPOL BIS Billing 3.0 validation rules for CII',
|
||||
format: 'CII'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
Reference in New Issue
Block a user