Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/examples/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Additional examples for various use cases:

* `publish_measurement.ipynb <https://github.com/ni/datastore-python/blob/main/examples/notebooks/overview/publish_measurement.ipynb>`_ - Basic measurement publishing
* `alias.ipynb <https://github.com/ni/datastore-python/blob/main/examples/notebooks/alias/alias.ipynb>`_ - Working with aliases
* `custom_metadata.ipynb <https://github.com/ni/datastore-python/blob/main/examples/notebooks/custom-metadata/custom_metadata.ipynb>`_ - Custom metadata examples
* `extension_attributes.ipynb <https://github.com/ni/datastore-python/blob/main/examples/notebooks/extension-attributes/extension_attributes.ipynb>`_ - Extension attributes examples
* `publish_waveforms.ipynb <https://github.com/ni/datastore-python/blob/main/examples/notebooks/voltage-regulator/publish_waveforms.ipynb>`_ - Publishing waveform data

Getting Started with Notebooks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"id": "936b1eca",
"metadata": {},
"source": [
"## Create the Hardware Objects with their Custom Metadata\n",
"## Create the Hardware Objects with their Extension Attributes\n",
"\n",
"Now that the schemas are registered, we can create Hardware objects that specify custom metadata to meet the requirements of the registered schemas. Each piece of hardware can use it's own schema."
"Now that the schemas are registered, we can create Hardware objects that specify extension attributes to meet the requirements of the registered schemas. Each piece of hardware can use it's own schema."
]
},
{
Expand Down Expand Up @@ -80,7 +80,7 @@
"source": [
"## Create a Schema for the Test Result (optional)\n",
"\n",
"If you specify a schema for the test result, it will ensure that all the hardware custom metadata is a superset of whatever metadata is specified in the session schema. This allows the author to ensure all hardware has some consistent attributes.\n"
"If you specify a schema for the test result, it will ensure that all the hardware extension attributes are a superset of whatever metadata is specified in the session schema. This allows the author to ensure all hardware has some consistent attributes.\n"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/ni/datastore/data/_types/_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(
start_date_time: The start date and time of the step execution.
end_date_time: The end date and time of the step execution.
link: Optional link to external resources for this step.
extension: Additional custom metadata as key-value pairs.
extension: Additional extension attributes as key-value pairs.
schema_id: ID of the extension schema for validating extensions.
error_information: Error or exception information in case of
step failure.
Expand Down
2 changes: 1 addition & 1 deletion src/ni/datastore/data/_types/_test_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(
outcome: The outcome of the test execution (PASSED, FAILED,
INDETERMINATE, or UNSPECIFIED).
link: Optional link to external resources for this test result.
extension: Additional custom metadata as key-value pairs.
extension: Additional extension attributes as key-value pairs.
schema_id: ID of the extension schema for validating extensions.
error_information: Error or exception information in case of
test result failure.
Expand Down