Skip to main content

cd2t validates data structure, data types and values with templates

Project description

cd2t

repository: https://gitlab.com/ko.no/cd2t

Table of Content

Key Features

  • Feature Rich Data Type and Value Validation
  • Unlimited Data Structure: Recursive linking of data types like lists or objects can represent any data structure.
  • Data Structure Nesting: Templates allows you to define repeating data structures only once. Templates can be unlimited nested. Loops are not allowed.
  • Referencing: Referencing can check the uniqueness of values at different positions in the data structure (i.e. lists of objects with ID attribute). It also can enforce a consumer/producer modell. In example, strings at some positions can be collected as producers. Strings at other positions must match to one of those produced string. Scope of references can be limited to namespace.
  • Multi Data Support: Multiple data sources can be checked with one schema or many schemas. You can switch schemas during iterating over data sources. Referencing or Autogeneration works across schemas and data sources by using namespaces and reference keys.
  • Value Autogeneration: Some data types support creation of non-existing values. I.e. unique IDs can be added to a data structure. Uniqueness can be limited to namespaces.
  • Schema Validation: Typos, syntax mistakes or missing required options are reported as SchemaErrors (Exception) during schema loading. Reason and path through schema structured are provided.
  • Data Validation: Validation returns a list of findings. Each finding provides the position within the data structure and the validation finding reason.

Change Log

Version 2.0.3

  • Fix: Use of data types ip_address, ip_network and ip_interface

Version 2.0.2

  • Fix: Template support in data types
  • Fix: Remove data type 'schema' from schema version 2

Version 2.0.1

  • Changed: ToC in README

Version 2.0.0:

  • Changed: Templates replaces subschemas.
  • New: Schema version 2 introduced
  • New: IDs in 'idlist' are defined by any other data type in schema version 2.
  • New: Reference attributes definition changed in 'object' in schema version 2.
  • New: Custom pre-defined data types can be defined in schema.
  • New: Reference credit support - Producer values and consumer values can be assignet with credits to detect 'overloaded' producers.
  • New: ruamel.yaml support - If data is loaded with ruamel.yaml module, autogenerated values have inline comments.
  • New: Data type 'ip' and some specialized IP related data types added.
  • New: Data type 'hostname' and 'fqdn' added.
  • New: All data types description support

Version 1.6.2:

  • Fix: Reference false positives, if Validator object changes
  • Fix: Sorting of Validation or Autogeneration findings

Version 1.6.1:

  • Fix: Data Type shortcut mode with classic dictionary schema

Version 1.6.0:

  • Changed: Python 3.9 or higher required
  • New: Data Type Shortcuts - Specify data type with defaults as string only
  • Add: Validator API - Method to get reference findings
  • Changed: Multitype Data Type - Enhanced data type support

Version 1.5.0:

  • New: Integer Data Type - Autogenerate random value
  • New: Integer Data Type - Autogenerate default value
  • New: Improved Reference Findings
  • Changed: All Data Types - Schema and data path adjustment

Version 1.4.0:

  • New: None Data Type added
  • Fix: Consumer namespace space lookup/linking failed, if producer was processed later.

Version 1.3.1:

  • Fix: Schema Data Type - Validation failed

Version 1.3:

  • New: String Data Type - Consumer referencing with namespace lookup for providers support
  • Changed: Splitting Data Validation (Validator Class) and Data Autogeneration (Autogenerator Class)
  • New: 2-Phase Autogeneration
    • Phase 1: Build references for all data sources
    • Phase 2: Autogenerate data based only full reference information
  • Fix: Object Data Type - Attribute dependencies with regex fixed
  • Fix: Object Data Type - Preserve attribute order during autogeneration

Version 1.2:

  • New: Bool Data Type - Validate allowed value
  • New: Findings - Namespace information added
  • Changed/Fix: Validator method name 'change_namespace'
  • Fix: Schema Data Type - Subschema loop false positives
  • Fix: Referencing - Options for scope definition values
  • Fix: Referencing - Namespace local consumer producer linking
  • Fix: Object Data Type - Dependencies false positives

Version 1.1: withdrawn form pypi.org

  • New: Object Data Type - Allow empty dictionaries in validation
  • Changed: List Data Type - Option 'duplicates' renamed to 'allow_duplicates'

Version 1.0: withdrawn form pypi.org

Data Schema

Data schema describes the expected structure and the expected values of the data, which to be validated. It also includes schema meta data and control options.

Version 2

version: 2
name: < str >
description: < str >
allow_data_type_shortcuts: < bool | default -> true >
# Shortcuts are Data Type strings instead of dictionaries.
# Corresponding data type with default options is used.

root: { data type schema }

custom_data_types:
  < data type name >:
    type: < built-in data type name > # required; customizable data type
    < build-in data type option >: < value >

templates:
  < template name >: { data schema }
template_merge_options:
  recursive: < bool | default -> true >
  list_merge: < append | append_rp | prepend | prepend_rp | replace
                | default -> append_rp >

Version 1

name: < str >
description: < str >
allow_data_type_shortcuts: < bool | default -> false >
# Shortcuts are Data Type strings instead of dictionaries.
# Corresponding data type with default options is used.

root: { data type schema }

subschemas:
  < sub schema name >: { data type schema }

Built-In Data Types

Generic Data Types

'any' Data Type

'any' Description

This data type represents any data. The validator stops further data validation or autogeneration.

'any' Limitations
  • referencing is not supported
  • autogeneration is not supported
'any' Schema
type: 'any' # If type is omitted, validator uses Any Data Type
description: < str > # Information about data type and value

'bool' Data Type

'bool' Description

This data type represents a boolean values (true/false).

'bool' Limitations
  • referencing is not supported
'bool' Schema
type: 'bool'
description: < str > # Information about data type and value
allowed_value: < bool > # true or false
autogenerate: < bool | default -> false >
# Autogenerate the default value, if data is not existing.
# Requires 'autogenerate_default'

autogenerate_default: < bool > # true or false; must match 'allowed_value' (if set)

'enum' Data Type

'enum' Description

This data type represents a selection of allowed values.

'enum' Limitations
  • referencing is not supported
  • autogeneration is not supported
'enum' Schema
type: 'enum'
description: < str > # Information about data type and value
allowed_values: # required
- < value >

'float' Data Type

'float' Description

This data type represents float values.

'float' Limitations

None.

'float' Schema Keys
type: 'float'
description: < str > # Information about data type and value
reference: { unique options }
maximum: < float >
# value must be lower or equal to this

minimum: < float >
# value must be greater or equal to this

maximum_decimals: < int > # >= 0
# Maximum allowed decimal places.

allowed_values:
- < float > # value must match this value
- round: < int > # value rounded to < int > digits must match 'matches'
  matches: < float >
- range_start: < float > # 'range_start' <= value <= 'range_end'
  range_end: < float >
# List of directives which values must match.

not_allowed_values:
- < float > # value mustn't match this value
- round: < int > # value rounded to < int > digits mustn't match 'matches'
  matches: < float >
- range_start: < float > # value < 'range_start' and value > 'range_end'
  range_end: < float >
# List of directives which values mustn't match.

autogenerate: < bool | default -> false >
# uses 'autogenerate_default' value.
#
# OR
#
# try for 'autogenerate_random_tries' times:
#   1. Create a random float value, which is within the 'autogenerate_ranges'
#      or 'minimum' <= random value <= 'maximum'
#   2. Check if random value passes the validation process.

autogenerate_default: < float >
# Autogenerate uses this value.

autogenerate_random_tries: < int | default 10 > # 0 < x < 50
# Ignored, if 'autogenerate_default' is set.
# Maximum amount of tries to find a random float value,
# which is not used by any reference.
# Integer value must be greater than 0 and lower than 50.

autogenerate_ranges:
- minimum: < float >
  maximum: < float >
# Ignored, if 'autogenerate_default' is set.
# '[.]minimum' <= '[.]maximum'
# Autogenerated float is within the ranges.
# If omitted, global 'minimum' and 'maximum' limits the random value.

autogenerate_random_decimals: < int | default 2 > # >= 0
# Ignored, if 'autogenerate_default' is set.
# Limit the decimal places for the random value.
'float' Validation Process

If options are missing, corresponding checks are skipped.

  1. value >= minimum
  2. value <= maximum
  3. round of value == value
  4. value is not in not_allowed_values
  5. value is in allowed_values

'idlist' Data Type

'idlist' Description

This data type represents a dictionary, where keys are IDs. IDs can be strings or integer.

'idlist' Limitations
  • autogeneration is not supported
'idlist' Schema (in Version 2)
type: 'idlist'
description: < str > # Information about data type and value
reference: { unique options }
# Note: Every ID is referenced as a value with the 'reference.key'.

minimum: <int | default -> 0 > # >= 0
# Minimum required amount of IDs

maximum: < int > # >= 0
# Maximum allowed amount of IDs
# If omitted, even an empty idlist is allowed.

elements: { data type schema } # required
# Data schema defining element data type

id: { data type schema }
# Data schema defining IDs
# If omitted, ID type defaults to 'string'.
'idlist' Schema (in Version 1)
type: 'idlist'
description: < str > # Information about data type and value
reference: { unique options }
# Note: Every ID is referenced as a value with the 'reference.key'.

minimum: <int | default -> 0 > # >= 0
# Minimum required amount of IDs

maximum: < int > # >= 0
# Maximum allowed amount of IDs
# If omitted, even an empty idlist is allowed.

elements: { data type schema } # required
# Data schema defining element data type

id_type: < 'integer' | 'string' | default -> 'string' >
# Indicates if IDs are integer or string

id_minimum: <int | default -> 0 > # >= 0
# Minimum required ID string length or minimum ID integer value

id_maximum: < int > # >= 0
# Maximum required ID string length or maximum ID integer value
# If omitted, even '' is allowed as ID string.

allowed_ids:
- < string | integer >
# List of regex strings or integers - depending on 'id_type'
# If ID matches any of it, the ID is allowed.

not_allowed_ids:
- < string >
# List of regex strings or integers - depending on 'id_type'
# If ID matches any of it, the ID is not allowed.
# 'not_allowed_ids' are test before 'allowed_ids'.

'integer' Data Type

'integer' Description

This data type represents integer values.

'integer' Limitations

None.

'integer' Schema
type: 'integer'
description: < str > # Information about data type and value
reference: { unique options }
maximum: < int >
# value must be lower or equal to this

minimum: < int >
# value must be greater or equal to this

not_allowed_values:
- < int >
# List of integers which values mustn't match.

autogenerate: < bool | default -> false >
# Requires 'reference.key' to be defined and not ''.
# If no unique value could be generated, autogeneration fails.

autogenerate_default: < int >
# Generate this integer value if value is None.
# Ignores all other 'autogen' options

autogenerate_maximum: < int >
# Autogenerated integer must be lower or equals to this.
# If omitted, 'maximum' key is upper limit

autogenerate_minimum: < int >
# Autogenerated integer must be greater or equals to this.
# If omitted, 'minimum' key is lower limit

autogenerate_find: < 'next_higher' | 'next_lower' |
                     'random' | default -> 'next_higher' >
# Ignored, if 'autogenerate_default' is set.
# Tells autogenerate to try first available integer value
# starting at 'minimum' and increasing ('next_higher'),
# starting at 'maximum' and decreasing ('next_lower') or
# picking a random number within 'minimum' and 'maximum'.

'list' Data Type

'list' Description

This data type represents a list of same data types.
If different data types are allowed in the list, use data type 'multitype' as elements.

'list' Limitations
  • Not customizable
  • referencing is not supported - use referencing in the 'elements' data type
  • autogeneration of list elements is not supported - but autogeneration within existing elements data structure is supported (pass-through).
'list' Schema
type: 'list' # required
description: < str > # Information about data type and value
elements: { data type schema }  # required
# Data schema defining elements data type

minimum: <int | default -> 0 > # >= 0
# Minimum required amount of elements in the list.

maximum: < int > # >= 0
# Maximum allowed amount of elements in the list.

allow_duplicates: < bool | default -> true >
# Allow same element data multiple times

'multitype' Data Type

'multitype' Description

This data type represents a selection of allowed data types.

'multitype' Features & Limitations
  • Not customizable
  • referencing is not supported - use referencing in the 'elements' data type
  • autogeneration of data types is not supported - but autogeneration within existing data structure is supported (pass-through).
  • Multitype in Multiype is not allowed
'multitype' Schema
type: 'multitype'
description: < str > # Information about data type and value
types: # required
- { data type schema }
# List of data type schemas.

'none' Data Type

'none' Description

This data type represents a none or null value.

'none' Limitations
  • referencing is not supported
  • autogeneration of data types is not supported - it is already none :wink:
'none' Schema Keys
type: 'none'
description: < str > # Information about data type and value

'object' Data Type

'object' Description

This data type represents an object with attributes. Technically its a dictionary in Python.
Attributes of the object are keys in the dictionary.

'object' Limitations
  • Not customizable
  • autogeneration of missing keys is supported, if value data type supports autogeneration
'object' Schema (in Version 2)
type: 'object'
description: < str > # Information about data type and value
attributes:
  < attribute_name >: { data type schema }
# Mapping with key as attribute name and value as data type schema.
# If omitted, any data which is an dictionary is accepted.

required_attributes:
- < attribute_name >
# List of attribute names, which must be in the object.

ignore_undefined_attributes: < bool | default -> false >
# Tell validator to ignore attributes in data object,
# which are not defined in 'attributes'.

dependencies:
  < attribute_name >:
    requires:
    - < attribute_name >
    # List of attribute names, which must be in the object,
    # if this attribute is in.
    excludes:
    - < attribute_name >
    # List of attribute names, which must not be in the object,
    # if this attribute is in.

allow_regex_attributes: < bool | default -> False >
# If enabled, regular expressions are allowed in:
# 'attributes': If object attribute name matches, schema is verified.
# 'required_attributes': Each element must have a at least one matching
#                        attribute name.
# 'dependencies.<>.requires': Successful if any object attribute name matches
#                             each list entry.
# 'dependencies.<>.excludes': Error if any object attribute name matches any
#                             list entry.
# !!! Disables autogeneration of missing keys !!!

autogenerate: < bool | default -> True >
# Enable/Disable autogeneration of missing attributes,
# if 'allow_regex_attributes' == false and
# attribute's data type supports autogeneration and is defined within.

reference:
  { reference options }
  # The validator checks, if the same combination of attribute values
  # is specified at another data type with the same 'reference.key'.
  attributes:
    - < attribute_name >
    # List of attribute names, which values should be combined uniqueness check.
'object' Schema (in Version 1)
type: 'object'
description: < str > # Information about data type and value
attributes:
  < attribute_name >: { data type schema }
# Mapping with key as attribute name and value as data type schema.
# If omitted, any data which is an dictionary is accepted.

required_attributes:
- < attribute_name >
# List of attribute names, which must be in the object.

ignore_undefined_attributes: < bool | default -> false >
# Tell validator to ignore attributes in data object,
# which are not defined in 'attributes'.

dependencies:
  < attribute_name >:
    requires:
    - < attribute_name >
    # List of attribute names, which must be in the object,
    # if this attribute is in.
    excludes:
    - < attribute_name >
    # List of attribute names, which must not be in the object,
    # if this attribute is in.

allow_regex_attributes: < bool | default -> False >
# If enabled, regular expressions are allowed in:
# 'attributes': If object attribute name matches, schema is verified.
# 'required_attributes': Each element must have a at least one matching
#                        attribute name.
# 'dependencies.<>.requires': Successful if any object attribute name matches
#                             each list entry.
# 'dependencies.<>.excludes': Error if any object attribute name matches any
#                             list entry.
# !!! Disables autogeneration of missing keys !!!

autogenerate: < bool | default -> True >
# Enable/Disable autogeneration of missing attributes,
# if 'allow_regex_attributes' == false and
# attribute's data type supports autogeneration and is defined within.

reference: { reference options }
# The validator checks, if the same combination of attribute values
# is specified at another data type with the same 'reference.key'.
# Requires 'reference_attributes' to be defined.

reference_attributes:
- < attribute_name >
# List of attribute names, which values should be combined uniqueness check.

'schema' Data Type

'schema' Description

This data type does not represents an expected data value.
It uses a subschema's root data type to process the data structure.

'schema' Limitations
  • Supported in Version 1 only (Use templates in version 2)
  • Not customizable
'schema' Schema
type: 'schema'
description: < str > # Information about data type and value
subschema: < str >
# Name of the subschema, which is defined under 'subschemas' in schema.

'string' Data Type

'string' Description

This data type represents a string.

'string' Limitations
  • autogeneration is not supported.
'string' Schema
type: 'string'
description: < str > # Information about data type and value
reference:
  # global reference options plus:
  allow_namespace_lookups: < bool > # Only valid for 'consumer' mode
  namespace_separator_char: < string >
# Process:
# - Check if *namespace_separator_char* is in string value
# - extract namespace from left part of first finding
# - extract value from right part of first finding
# - lookup for *provider value* == *extracted value* in
#   namespace *extracted namespace* for reference.key

minimum: <int | default -> 0 > # >= 0
# Minimum required string length

maximum: < int > # >= 0
# Maximum allowed string length

allowed_values:
- < string >
# List of strings
# Dependis on 'regex_mode':
# == false: String must be equal to any string in the list.
# == true: String must match with any regex in the list.

not_allowed_values:
- < string >
# List of strings
# Dependis on 'regex_mode':
# == false: String mustn't be equal to any string in the list.
# == true: String mustn't match with all regex in the list.

regex_mode: < bool | default -> false >
# Use strings in 'allowed_values' and 'not_allowed_values' for regex matching.

regex_multiline: < bool | default -> false >
# Use multiline matching for regex tests or not

regex_fullmatch: < bool | default -> true >
# String must fully match.

Special Data Types

'fqdn' Data Type

'fqdn' Description

This data type represents a full-qualified domain name. A FQDN consits of a hostname (first label; defined by by RFC 953 and RFC 1123) and domain name (remaining labels; defined by RFC 1035 section 2.3.1.).

RFCs allows and ignores upper cases in hostnames and domain labels. This is not the default case in cd2t validation. cd2t creates a finding on upper cases. If upper cases should be ignored by cd2t, set option 'strict_lower' to false.

'fqdn' Limitations
  • Supported in Version 2
'fqdn' Schema
type: 'fqdn'

minimum: < 4-255 | default -> 4 >
# Minimum required length of FQDNs

maximum: < 4-255 | default -> 255 > # >= minimum
# Maximum allowed length of FQDNs

minimum_labels: < int | default -> 2 > # >= 2
# Minimum required amount of labels

maximum_labels: < int > # >= minimum
# Maximum allowed amount of labels

allowed_values:
- < string >
# FQDN must match with any regex in the list.

not_allowed_values:
- < string >
# FQDN mustn't match with all regex in the list.

strict_lower: < bool | default -> true >
# Do not allow upper cases in FQDN.

'hostname' Data Type

'hostname' Description

This data type represents a internet hostname defined by RFC 953 and RFC 1123. Thus, a hostname contains ASCII character a through z, digits 0 through 9 or hyphen-character '-'. A hostname is 1 to 63 characters long.

RFCs allows and ignores upper cases in hostnames. This is not the default case in cd2t validation. cd2t creates a finding on upper cases. If upper cases should be ignored by cd2t, set option 'strict_lower' to false.

'hostname' Limitations
  • Supported in Version 2
'hostname' Schema
type: 'hostname'

minimum: < 1-63 | default -> 1 >
# Minimum required length of hostname

maximum: < 1-63 | default -> 63 > # >= minimum
# Maximum allowed length of hostname

allowed_values:
- < string >
# Hostname must match with any regex in the list.

not_allowed_values:
- < string >
# Hostname mustn't match with all regex in the list.

strict_lower: < bool | default -> true >
# Do not allow upper cases in hostname.
'hostname' Validation Process
  1. If 'strict_lower' is true: Check for upper cases in hostname
  2. Check on allowed characters
  3. Chech minimum and maximum length
  4. Check on not allowed values
  5. Check on allowed values

'ip' Data Type

'ip' Description

This data type represents an IP object. Meaning, IPv4 or IPv6 as well as address, network or interface.

'ip' Limitations
  • Supported in Version 2
'ip' Schema
type: ip
version: < 4 | 6 >
loopback: < bool > # true: value must be loopback; false: value mustn't be loopback
link_local: < bool > # true: value must be link-local; false: value mustn't be link-local
private: < bool > # true: value must be private; false: value mustn't be private
public: < bool > # true: value must be public; false: value mustn't be public
multicast: < bool > # true: value must be multicast; false: value mustn't be multicast
allowed_values:
  - < IP address string >
  # Data must match one of the values.
not_allowed_values:
  - < IP address string >
  # Data mustn't match all values.

'ip_address' Data Type

'ip_address' Description

This data type represents an IP address.

'ip_address' Limitations
  • Supported in Version 2
'ip_address' Schema
type: ip
version: < 4 | 6 >
loopback: < bool > # true: value must be loopback; false: value mustn't be loopback
link_local: < bool > # true: value must be link-local; false: value mustn't be link-local
private: < bool > # true: value must be private; false: value mustn't be private
public: < bool > # true: value must be public; false: value mustn't be public
multicast: < bool > # true: value must be multicast; false: value mustn't be multicast
allowed_values:
  - < IP address string >
  # Data must match one of the values.
not_allowed_values:
  - < IP address string >
  # Data mustn't match all values.
allowed_subnets:
  - < IP network string >
  # IP address must be within one of the networks
not_allowed_subnets:
  - < IP network string >
  # IP address mustn't be within any of the networks

'ip_network' Data Type

'ip_network' Description

This data type represents an IP network.

'ip_network' Limitations
  • Supported in Version 2
'ip_network' Schema
type: ip
version: < 4 | 6 >
loopback: < bool > # true: value must be loopback; false: value mustn't be loopback
link_local: < bool > # true: value must be link-local; false: value mustn't be link-local
private: < bool > # true: value must be private; false: value mustn't be private
public: < bool > # true: value must be public; false: value mustn't be public
multicast: < bool > # true: value must be multicast; false: value mustn't be multicast
allowed_values:
  - < IP address string >
  # Data must match one of the values.
not_allowed_values:
  - < IP address string >
  # Data mustn't match all values.
allowed_subnets:
  - < IP network string >
  # IP address must be within one of the networks
not_allowed_subnets:
  - < IP network string >
  # IP address mustn't be within any of the networks
minimum_prefix_length: < int >
  # 0 < lenght < 32|128 (v4|v6)
maximum_prefix_length: < int >
  # 'minimum_prefix_length' < lenght < 32|128 (v4|v6)

'ip_interface' Data Type

'ip_interface' Description

This data type represents an IP interface (address with subnet prefix length, i.e. 10.1.1.21/24).

'ip_interface' Limitations
  • Supported in Version 2
'ip_interface' Schema
type: ip
version: < 4 | 6 >
loopback: < bool > # true: value must be loopback; false: value mustn't be loopback
link_local: < bool > # true: value must be link-local; false: value mustn't be link-local
private: < bool > # true: value must be private; false: value mustn't be private
public: < bool > # true: value must be public; false: value mustn't be public
multicast: < bool > # true: value must be multicast; false: value mustn't be multicast
allowed_values:
  - < IP address string >
  # Data must match one of the values.
not_allowed_values:
  - < IP address string >
  # Data mustn't match all values.
allowed_subnets:
  - < IP network string >
  # IP address must be within one of the networks
not_allowed_subnets:
  - < IP network string >
  # IP address mustn't be within any of the networks

General Data Type Options

Reference Description

Referencing achieves two validation goals:

  1. It can makes sure that a value is unique.
  2. It can makes sure that a value is defined at another place within the data structure.

Basically a reference is defined by a key, so that one or more 'producers' of values can match with one or more 'consumers' of values.

In addition, many options are available to implement 1:1, 1:n or n:m relations, scope of 'reachability' of values with namespaces and more ...

Reference Options

If a data type supports referencing, these options are available.

reference:
  key: < string > # required
  # Identifier to map data at different positions in the data structure

  # Define the reference mode.
  mode: < 'unique' | 'producer' | 'consumer' | default -> 'unique' >
  # - 'producer': collect values as allowed values for 'consumer' positions.
  # - 'unique': Inherits 'producer' and checks uniqueness of the value
  #   among other values at other positions with the same key.
  # - 'consumer': data value must match to a 'producer' value.

  credits: < int >
  # - 'Producer' and 'unique' mode have infinite credits by default.
  # - If 0 with 'producer' or 'unique' mode, no 'consumer' is allowed.
  # - If >0 with 'producer' or 'unique':
  #   - all producer's credits with same value are summed up,
  #   - a consumer is allowed, when enough credits are available,
  #   - each consumer's credits are  subtracted from the producers credit sum.
  # - In 'consumer' moder the credit value is 1 by default.
  # - 'Consumer' credits must be greater than 0.

  allow_orphan_producer: < bool | default -> true >
  # If disabled, producer value without a consumer are not allowed.

  # Select the scope of the reference:
  unique_scope: < 'namespace' | 'global' | default -> 'global' >
  # Ignored in 'provider' or 'consumer' mode

  provider_scope: < 'namespace' | 'global' | default -> 'global' >
   # 'ignored in 'consumer' mode

  consumer_scope: < 'namespace' | 'global' | default -> 'global' >
  # Ignored in 'unique' or 'provider' mode
  # 'namespace' scopes to the same namespace data only.
  # References across namespaces only works,
  # if both 'ends' specify 'global'.

Feature Details

Custom Data Types

Introduced in version 2

Custom data types provides an efficient way to define data type and options, which used at multiple locations within the data structure. Data type options can be overwritten for each use.

Note: Custom data type names mustn't conflict with built-in data types.
Good practice is to start with a capital letter.

Example

root:
  type: object
  attributes:
    name: string
    age: NonNegativeInt
    rate:
      - type: NonNegativeInt
        maximum: 100

custom_data_types:
  NonNegativeInt:
    type: integer
    minimum: 0

Python Code Example

import os
import yaml
from cd2t import Validator

with open('my_schema.yml') as f:
    schema = yaml.load(f)

validator = Validator()
validator.load_schema(schema)

results = list()
for filename in os.listdir('./my_data_folder'):
    with open(filename) as f:
        test_data = yaml.load(f)
    validator.change_namespace(filename)
    _results = validator.validate_data(test_data)
    results.extend(_results)

_results = validator.get_reference_findings()
results.extend(_results)

print('\n'.join(results))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cd2t-2.0.3.tar.gz (47.2 kB view details)

Uploaded Source

Built Distribution

cd2t-2.0.3-py3-none-any.whl (52.9 kB view details)

Uploaded Python 3

File details

Details for the file cd2t-2.0.3.tar.gz.

File metadata

  • Download URL: cd2t-2.0.3.tar.gz
  • Upload date:
  • Size: 47.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.0

File hashes

Hashes for cd2t-2.0.3.tar.gz
Algorithm Hash digest
SHA256 c7f028506247296c32386d698006c29848f3f2be150dcd1f31c41213bcc975db
MD5 778f61465b202e93d9b5125d0852b2e8
BLAKE2b-256 c8b43ce95c7da0ee3061469f9bbb7da512df16a04e3bf0685eb7b3104413bf40

See more details on using hashes here.

File details

Details for the file cd2t-2.0.3-py3-none-any.whl.

File metadata

  • Download URL: cd2t-2.0.3-py3-none-any.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.0

File hashes

Hashes for cd2t-2.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e0258b4ceeded4c0883052dc3fe9447839648068cfd21ca5729bed52b751cc33
MD5 1d85123ebb9a609e7848b152a4d7181e
BLAKE2b-256 e7ac2e59bb66ddd3d7c1bae1c958a6dec11d5155c26b12ca30b9736f356dbfbc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page