sqlcompyre.report.schema.schema module

class sqlcompyre.report.schema.schema.Metadata(object_type: str, object_1: str, object_2: str, description: str | None)[source]

Bases: object

Metadata available for a comparison.

description: str | None

An optional description describing the comparison.

object_1: str

The name of the first object being compared.

object_2: str

The name of the second object being compared.

object_type: str

The type of object being compared.

class sqlcompyre.report.schema.schema.Section(name: str, content: Any)[source]

Bases: object

Information about a single section within a report.

content: Any

The content of the section.

name: str

The name of the section.