openscap_report.scap_results_parser.namespaces   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 16
ccs 1
cts 1
cp 1
rs 10
c 0
b 0
f 0
wmc 0
1
# Copyright 2022, Red Hat, Inc.
2
# SPDX-License-Identifier: LGPL-2.1-or-later
3
4 1
NAMESPACES = {
5
    'XMLSchema': 'http://oval.mitre.org/XMLSchema/oval-results-5',
6
    'xccdf': 'http://checklists.nist.gov/xccdf/1.2',
7
    'arf': 'http://scap.nist.gov/schema/asset-reporting-format/1.1',
8
    'oval-definitions': 'http://oval.mitre.org/XMLSchema/oval-definitions-5',
9
    'scap': 'http://scap.nist.gov/schema/scap/source/1.2',
10
    'oval-characteristics': 'http://oval.mitre.org/XMLSchema/oval-system-characteristics-5',
11
    'oval-object': 'http://oval.mitre.org/XMLSchema/oval-definitions-5#independent',
12
    'cpe-dict': 'http://cpe.mitre.org/dictionary/2.0',
13
    'ds': 'http://scap.nist.gov/schema/scap/source/1.2',
14
    'cpe-lang': 'http://cpe.mitre.org/language/2.0',
15
    'ind-sys': 'http://oval.mitre.org/XMLSchema/oval-system-characteristics-5#independent'
16
}
17