common
Common metadata models based on RO-Crate and Schema.org.
SIValue ¶
Bases: QuantitativeValue
QuantitativeValue that holds a numerical value given in SI units.
Uses the pint
library to parse and normalize the unit.
Source code in src/metador_core/schema/common/__init__.py
41 42 43 44 45 46 47 48 |
|
NumValue ¶
Bases: QuantitativeValue
Quantitative value that can have a unit out of a fixed list.
Source code in src/metador_core/schema/common/__init__.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
|
Pixels ¶
Bases: NumValue
Numeric value representing pixels.
Source code in src/metador_core/schema/common/__init__.py
99 100 101 102 103 104 |
|
BibMeta ¶
Bases: DirMeta
Minimal bibliographic metadata required for a container.
Source code in src/metador_core/schema/common/__init__.py
113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
ImageFileMeta ¶
Bases: FileMeta
A rasterized image file with known dimensions.
Also serves as marker schema for the imagefile widget.
Source code in src/metador_core/schema/common/__init__.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
ColumnHeader ¶
Bases: MetadataSchema
Table column metadata.
Source code in src/metador_core/schema/common/__init__.py
148 149 150 151 152 153 154 155 |
|
TableMeta ¶
Bases: MetadataSchema
Table metadata.
Source code in src/metador_core/schema/common/__init__.py
158 159 160 161 162 163 164 165 166 167 168 169 |
|