mixins
xsdata.models.mixins
ElementBase dataclass
Base xsd schema model representation.
Attributes:
| Name | Type | Description |
|---|---|---|
index | int | The element position in the schema |
ns_map | dict[str, str] | The element namespace prefix-URI map |
Source code in xsdata/models/mixins.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | |
class_name property
Return the schema element class name.
default_type property
The element's inferred default type qname.
default_value property
Return the default or the fixed attribute value.
display_help property
Return the display help for this element.
bases property
Return an iterator of all the base types.
has_children property
Return whether this element has any children.
has_form property
Return whether this element has the form attribute.
is_abstract property
Return whether this element is defined as abstract.
is_property property
Return whether this element is qualified to be a class property.
is_fixed property
Return whether this element has a fixed value.
is_mixed property
Return whether this element accepts mixed content value.
is_nillable property
Return whether this element accepts nillable content.
is_qualified property
Return whether this element must be referenced with the target namespace.
is_ref property
Return whether this element is a reference to another element.
is_wildcard property
Return whether this element is a wildcard element/attribute.
prefix property
Return the namespace prefix for this element's type.
raw_namespace property
Return if present the target namespace attribute value.
real_name property
Return the real name for this element.
attr_types property
Return the attr types for this element.
substitutions property
Return the substitution groups of this element.
xs_prefix property
Return the xml schema URI prefix.
get_restrictions()
Return the restrictions dictionary of this element.
Source code in xsdata/models/mixins.py
159 160 161 | |
children(condition=return_true)
Yield the children recursively that match the given condition.
Source code in xsdata/models/mixins.py
163 164 165 166 167 168 169 170 | |
attribute(optional=True, **kwargs)
Shortcut method for attribute fields.
Source code in xsdata/models/mixins.py
173 174 175 176 177 178 | |
element(optional=True, **kwargs)
Shortcut method for element fields.
Source code in xsdata/models/mixins.py
181 182 183 184 185 186 | |
add_default_value(params, optional)
Add the default value if it's missing and the optional flag is true.
Source code in xsdata/models/mixins.py
189 190 191 192 | |
array_element(**kwargs)
Shortcut method for list element fields.
Source code in xsdata/models/mixins.py
195 196 197 198 | |
array_any_element(**kwargs)
Shortcut method for list wildcard fields.
Source code in xsdata/models/mixins.py
201 202 203 204 205 206 | |
extract_metadata(params, **kwargs)
Remove dataclasses standard field properties and merge any additional.
Source code in xsdata/models/mixins.py
209 210 211 212 213 214 215 | |