entries¶
__all__ = ('EntryRelationships', 'EntryResourceAttributes', 'EntryResource', 'EntryInfoProperty', 'EntryInfoResource')
module-attribute
¶
Attributes
¶
Bases: BaseModel
Members of the attributes object ("attributes") represent information about the resource object in which it's defined. The keys for Attributes MUST NOT be: relationships links id type
Source code in optimade/models/jsonapi.py
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 |
|
model_config = ConfigDict(extra='allow')
class-attribute
instance-attribute
¶
check_illegal_attributes_fields()
¶
Source code in optimade/models/jsonapi.py
329 330 331 332 333 334 335 336 337 |
|
BaseRelationshipResource
¶
Bases: BaseResource
Minimum requirements to represent a relationship resource
Source code in optimade/models/optimade_json.py
414 415 416 417 418 419 420 421 422 |
|
id: Annotated[str, StrictField(description='Resource ID')]
instance-attribute
¶
meta: Annotated[Optional[BaseRelationshipMeta], StrictField(description="Relationship meta field. MUST contain 'description' if supplied.")] = None
class-attribute
instance-attribute
¶
model_config = ConfigDict(json_schema_extra=resource_json_schema_extra)
class-attribute
instance-attribute
¶
type: Annotated[str, StrictField(description='Resource type')]
instance-attribute
¶
DataType
¶
Bases: Enum
Optimade Data types
See the section "Data types" in the OPTIMADE API specification for more information.
Source code in optimade/models/optimade_json.py
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 |
|
BOOLEAN = 'boolean'
class-attribute
instance-attribute
¶
DICTIONARY = 'dictionary'
class-attribute
instance-attribute
¶
FLOAT = 'float'
class-attribute
instance-attribute
¶
INTEGER = 'integer'
class-attribute
instance-attribute
¶
LIST = 'list'
class-attribute
instance-attribute
¶
STRING = 'string'
class-attribute
instance-attribute
¶
TIMESTAMP = 'timestamp'
class-attribute
instance-attribute
¶
UNKNOWN = 'unknown'
class-attribute
instance-attribute
¶
from_json_type(json_type)
classmethod
¶
Get OPTIMADE data type from a named JSON type
Source code in optimade/models/optimade_json.py
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 |
|
from_python_type(python_type)
classmethod
¶
Get OPTIMADE data type from a Python type
Source code in optimade/models/optimade_json.py
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 |
|
get_values()
classmethod
¶
Get OPTIMADE data types (enum values) as a (sorted) list
Source code in optimade/models/optimade_json.py
43 44 45 46 |
|
EntryInfoProperty
¶
Bases: BaseModel
Source code in optimade/models/entries.py
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
|
description: Annotated[str, StrictField(description='A human-readable description of the entry property')]
instance-attribute
¶
sortable: Annotated[Optional[bool], StrictField(description='Defines whether the entry property can be used for sorting with the "sort" parameter.\nIf the entry listing endpoint supports sorting, this key MUST be present for sortable properties with value `true`.')] = None
class-attribute
instance-attribute
¶
type: Annotated[Optional[DataType], StrictField(title=Type, description="The type of the property's value.\nThis MUST be any of the types defined in the Data types section.\nFor the purpose of compatibility with future versions of this specification, a client MUST accept values that are not `string` values specifying any of the OPTIMADE Data types, but MUST then also disregard the `type` field.\nNote, if the value is a nested type, only the outermost type should be reported.\nE.g., for the entry resource `structures`, the `species` property is defined as a list of dictionaries, hence its `type` value would be `list`.")] = None
class-attribute
instance-attribute
¶
unit: Annotated[Optional[str], StrictField(description='The physical unit of the entry property.\nThis MUST be a valid representation of units according to version 2.1 of [The Unified Code for Units of Measure](https://unitsofmeasure.org/ucum.html).\nIt is RECOMMENDED that non-standard (non-SI) units are described in the description for the property.')] = None
class-attribute
instance-attribute
¶
EntryInfoResource
¶
Bases: BaseModel
Source code in optimade/models/entries.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
|
description: Annotated[str, StrictField(description='Description of the entry.')]
instance-attribute
¶
formats: Annotated[list[str], StrictField(description='List of output formats available for this type of entry.')]
instance-attribute
¶
output_fields_by_format: Annotated[dict[str, list[str]], StrictField(description='Dictionary of available output fields for this entry type, where the keys are the values of the `formats` list and the values are the keys of the `properties` dictionary.')]
instance-attribute
¶
properties: Annotated[dict[str, EntryInfoProperty], StrictField(description='A dictionary describing queryable properties for this entry type, where each key is a property name.')]
instance-attribute
¶
EntryRelationships
¶
Bases: Relationships
This model wraps the JSON API Relationships to include type-specific top level keys.
Source code in optimade/models/entries.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
references: Annotated[Optional[ReferenceRelationship], StrictField(description='Object containing links to relationships with entries of the `references` type.')] = None
class-attribute
instance-attribute
¶
structures: Annotated[Optional[StructureRelationship], StrictField(description='Object containing links to relationships with entries of the `structures` type.')] = None
class-attribute
instance-attribute
¶
check_illegal_relationships_fields()
¶
Source code in optimade/models/jsonapi.py
295 296 297 298 299 300 301 302 303 |
|
EntryResource
¶
Bases: Resource
The base model for an entry resource.
Source code in optimade/models/entries.py
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 171 172 173 174 175 176 177 178 179 |
|
attributes: Annotated[EntryResourceAttributes, StrictField(description="A dictionary, containing key-value pairs representing the entry's properties, except for `type` and `id`.\nDatabase-provider-specific properties need to include the database-provider-specific prefix (see section on Database-Provider-Specific Namespace Prefixes).")]
instance-attribute
¶
id: Annotated[str, OptimadeField(description='An entry\'s ID as defined in section Definition of Terms.\n\n- **Type**: string.\n\n- **Requirements/Conventions**:\n - **Support**: MUST be supported by all implementations, MUST NOT be `null`.\n - **Query**: MUST be a queryable property with support for all mandatory filter features.\n - **Response**: REQUIRED in the response.\n\n- **Examples**:\n - `"db/1234567"`\n - `"cod/2000000"`\n - `"cod/2000000@1234567"`\n - `"nomad/L1234567890"`\n - `"42"`', support=SupportLevel.MUST, queryable=SupportLevel.MUST)]
instance-attribute
¶
links: Annotated[Optional[ResourceLinks], StrictField(description='a links object containing links related to the resource.')] = None
class-attribute
instance-attribute
¶
meta: Annotated[Optional[Meta], StrictField(description='a meta object containing non-standard meta-information about a resource that can not be represented as an attribute or relationship.')] = None
class-attribute
instance-attribute
¶
model_config = ConfigDict(json_schema_extra=resource_json_schema_extra)
class-attribute
instance-attribute
¶
relationships: Annotated[Optional[EntryRelationships], StrictField(description='A dictionary containing references to other entries according to the description in section Relationships encoded as [JSON API Relationships](https://jsonapi.org/format/1.0/#document-resource-object-relationships).\nThe OPTIONAL human-readable description of the relationship MAY be provided in the `description` field inside the `meta` dictionary of the JSON API resource identifier object.')] = None
class-attribute
instance-attribute
¶
type: Annotated[str, OptimadeField(description='The name of the type of an entry.\n\n- **Type**: string.\n\n- **Requirements/Conventions**:\n - **Support**: MUST be supported by all implementations, MUST NOT be `null`.\n - **Query**: MUST be a queryable property with support for all mandatory filter features.\n - **Response**: REQUIRED in the response.\n - MUST be an existing entry type.\n - The entry of type `<type>` and ID `<id>` MUST be returned in response to a request for `/<type>/<id>` under the versioned base URL.\n\n- **Example**: `"structures"`', support=SupportLevel.MUST, queryable=SupportLevel.MUST)]
instance-attribute
¶
EntryResourceAttributes
¶
Bases: Attributes
Contains key-value pairs representing the entry's properties.
Source code in optimade/models/entries.py
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 |
|
immutable_id: Annotated[Optional[str], OptimadeField(description='The entry\'s immutable ID (e.g., an UUID). This is important for databases having preferred IDs that point to "the latest version" of a record, but still offer access to older variants. This ID maps to the version-specific record, in case it changes in the future.\n\n- **Type**: string.\n\n- **Requirements/Conventions**:\n - **Support**: OPTIONAL support in implementations, i.e., MAY be `null`.\n - **Query**: MUST be a queryable property with support for all mandatory filter features.\n\n- **Examples**:\n - `"8bd3e750-b477-41a0-9b11-3a799f21b44f"`\n - `"fjeiwoj,54;@=%<>#32"` (Strings that are not URL-safe are allowed.)', support=SupportLevel.OPTIONAL, queryable=SupportLevel.MUST)] = None
class-attribute
instance-attribute
¶
last_modified: Annotated[Optional[datetime], OptimadeField(description='Date and time representing when the entry was last modified.\n\n- **Type**: timestamp.\n\n- **Requirements/Conventions**:\n - **Support**: SHOULD be supported by all implementations, i.e., SHOULD NOT be `null`.\n - **Query**: MUST be a queryable property with support for all mandatory filter features.\n - **Response**: REQUIRED in the response unless the query parameter `response_fields` is present and does not include this property.\n\n- **Example**:\n - As part of JSON response format: `"2007-04-05T14:30:20Z"` (i.e., encoded as an [RFC 3339 Internet Date/Time Format](https://tools.ietf.org/html/rfc3339#section-5.6) string.)', support=SupportLevel.SHOULD, queryable=SupportLevel.MUST)]
instance-attribute
¶
model_config = ConfigDict(extra='allow')
class-attribute
instance-attribute
¶
cast_immutable_id_to_str(value)
classmethod
¶
Convenience validator for casting immutable_id
to a string.
Source code in optimade/models/entries.py
109 110 111 112 113 114 115 116 |
|
check_illegal_attributes_fields()
¶
Source code in optimade/models/jsonapi.py
329 330 331 332 333 334 335 336 337 |
|
ReferenceRelationship
¶
Bases: TypedRelationship
Source code in optimade/models/entries.py
42 43 |
|
data: Annotated[Optional[Union[BaseRelationshipResource, list[BaseRelationshipResource]]], StrictField(description='Resource linkage', uniqueItems=True)] = None
class-attribute
instance-attribute
¶
links: Annotated[Optional[RelationshipLinks], StrictField(description='a links object containing at least one of the following: self, related')] = None
class-attribute
instance-attribute
¶
meta: Annotated[Optional[Meta], StrictField(description='a meta object that contains non-standard meta-information about the relationship.')] = None
class-attribute
instance-attribute
¶
at_least_one_relationship_key_must_be_set()
¶
Source code in optimade/models/jsonapi.py
278 279 280 281 282 283 284 |
|
check_rel_type(data)
classmethod
¶
Source code in optimade/models/entries.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
Relationship
¶
Bases: Relationship
Similar to normal JSON API relationship, but with addition of OPTIONAL meta field for a resource.
Source code in optimade/models/optimade_json.py
425 426 427 428 429 430 431 |
|
data: Annotated[Optional[Union[BaseRelationshipResource, list[BaseRelationshipResource]]], StrictField(description='Resource linkage', uniqueItems=True)] = None
class-attribute
instance-attribute
¶
links: Annotated[Optional[RelationshipLinks], StrictField(description='a links object containing at least one of the following: self, related')] = None
class-attribute
instance-attribute
¶
meta: Annotated[Optional[Meta], StrictField(description='a meta object that contains non-standard meta-information about the relationship.')] = None
class-attribute
instance-attribute
¶
at_least_one_relationship_key_must_be_set()
¶
Source code in optimade/models/jsonapi.py
278 279 280 281 282 283 284 |
|
Relationships
¶
Bases: BaseModel
Members of the relationships object ("relationships") represent references from the resource object in which it's defined to other resource objects. Keys MUST NOT be: type id
Source code in optimade/models/jsonapi.py
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
|
check_illegal_relationships_fields()
¶
Source code in optimade/models/jsonapi.py
295 296 297 298 299 300 301 302 303 |
|
Resource
¶
Bases: BaseResource
Resource objects appear in a JSON API document to represent resources.
Source code in optimade/models/jsonapi.py
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
|
attributes: Annotated[Optional[Attributes], StrictField(description='an attributes object representing some of the resource’s data.')] = None
class-attribute
instance-attribute
¶
id: Annotated[str, StrictField(description='Resource ID')]
instance-attribute
¶
links: Annotated[Optional[ResourceLinks], StrictField(description='a links object containing links related to the resource.')] = None
class-attribute
instance-attribute
¶
meta: Annotated[Optional[Meta], StrictField(description='a meta object containing non-standard meta-information about a resource that can not be represented as an attribute or relationship.')] = None
class-attribute
instance-attribute
¶
model_config = ConfigDict(json_schema_extra=resource_json_schema_extra)
class-attribute
instance-attribute
¶
relationships: Annotated[Optional[Relationships], StrictField(description='[Relationships object](https://jsonapi.org/format/1.0/#document-resource-object-relationships)\ndescribing relationships between the resource and other JSON API resources.')] = None
class-attribute
instance-attribute
¶
type: Annotated[str, StrictField(description='Resource type')]
instance-attribute
¶
StructureRelationship
¶
Bases: TypedRelationship
Source code in optimade/models/entries.py
46 47 |
|
data: Annotated[Optional[Union[BaseRelationshipResource, list[BaseRelationshipResource]]], StrictField(description='Resource linkage', uniqueItems=True)] = None
class-attribute
instance-attribute
¶
links: Annotated[Optional[RelationshipLinks], StrictField(description='a links object containing at least one of the following: self, related')] = None
class-attribute
instance-attribute
¶
meta: Annotated[Optional[Meta], StrictField(description='a meta object that contains non-standard meta-information about the relationship.')] = None
class-attribute
instance-attribute
¶
at_least_one_relationship_key_must_be_set()
¶
Source code in optimade/models/jsonapi.py
278 279 280 281 282 283 284 |
|
check_rel_type(data)
classmethod
¶
Source code in optimade/models/entries.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
SupportLevel
¶
Bases: Enum
OPTIMADE property/field support levels
Source code in optimade/models/utils.py
31 32 33 34 35 36 |
|
TypedRelationship
¶
Bases: Relationship
Source code in optimade/models/entries.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
data: Annotated[Optional[Union[BaseRelationshipResource, list[BaseRelationshipResource]]], StrictField(description='Resource linkage', uniqueItems=True)] = None
class-attribute
instance-attribute
¶
links: Annotated[Optional[RelationshipLinks], StrictField(description='a links object containing at least one of the following: self, related')] = None
class-attribute
instance-attribute
¶
meta: Annotated[Optional[Meta], StrictField(description='a meta object that contains non-standard meta-information about the relationship.')] = None
class-attribute
instance-attribute
¶
at_least_one_relationship_key_must_be_set()
¶
Source code in optimade/models/jsonapi.py
278 279 280 281 282 283 284 |
|
check_rel_type(data)
classmethod
¶
Source code in optimade/models/entries.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
OptimadeField(default=PydanticUndefined, *, support=None, queryable=None, unit=None, **kwargs)
¶
A wrapper around pydantic.Field
that adds OPTIMADE-specific
field paramters queryable
, support
and unit
, indicating
the corresponding support level in the specification and the
physical unit of the field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
support |
Optional[Union[str, SupportLevel]]
|
The support level of the field itself, i.e. whether the field can be null or omitted by an implementation. |
None
|
queryable |
Optional[Union[str, SupportLevel]]
|
The support level corresponding to the queryablility of this field. |
None
|
unit |
Optional[str]
|
A string describing the unit of the field. |
None
|
Returns:
Type | Description |
---|---|
Any
|
The pydantic field with extra validation provided by |
Source code in optimade/models/utils.py
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 |
|
StrictField(default=PydanticUndefined, *, description=None, **kwargs)
¶
A wrapper around pydantic.Field
that does the following:
- Forbids any "extra" keys that would be passed to
pydantic.Field
, except those used elsewhere to modify the schema in-place, e.g. "uniqueItems", "pattern" and those added by OptimadeField, e.g. "unit", "queryable" and "sortable". - Emits a warning when no description is provided.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
Any
|
The only non-keyword argument allowed for Field. |
PydanticUndefined
|
description |
Optional[str]
|
The description of the |
None
|
**kwargs |
Any
|
Extra keyword arguments to be passed to |
{}
|
Raises:
Type | Description |
---|---|
RuntimeError
|
If |
Returns:
Type | Description |
---|---|
Any
|
The pydantic |
Source code in optimade/models/utils.py
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 |
|