Class: Api::V2::PolyMetadatumResource
- Inherits:
-
BaseResource
- Object
- JSONAPI::Resource
- BaseResource
- Api::V2::PolyMetadatumResource
- Defined in:
- app/resources/api/v2/poly_metadatum_resource.rb
Overview
For more information about JSON:API, see the JSON:API Specifications or the JSONAPI::Resources package for Sequencescape's implementation of the JSON:API standard.
Instance Attribute Summary collapse
-
#created_at ⇒ DateTime
readonly
The timestamp indicating when this metadata entry was created.
-
#key ⇒ String
The key or name of the metadata.
-
#metadatable ⇒ ApplicationRecord
The resource that this metadata belongs to.
-
#updated_at ⇒ DateTime
readonly
The timestamp indicating when this metadata entry was last updated.
-
#value ⇒ String
The value stored under the metadata key.
Instance Method Summary collapse
-
#filter_by_key ⇒ Object
Filters metadata records based on their key.
-
#filter_by_metadatable_id ⇒ Object
Filters metadata records based on the associated resource's ID.
Methods inherited from BaseResource
apply_includes, creatable_fields, default_includes, #fetchable_fields, inclusions, resolve_relationship_names_to_relations, updatable_fields
Instance Attribute Details
#created_at ⇒ DateTime (readonly)
The timestamp indicating when this metadata entry was created.
71 |
# File 'app/resources/api/v2/poly_metadatum_resource.rb', line 71 attribute :created_at, readonly: true |
#key ⇒ String
This is a required attribute and must be unqiue for each metadatable object.
The key or name of the metadata.
60 |
# File 'app/resources/api/v2/poly_metadatum_resource.rb', line 60 attribute :key |
#metadatable ⇒ ApplicationRecord
89 |
# File 'app/resources/api/v2/poly_metadatum_resource.rb', line 89 has_one :metadatable, polymorphic: true |
#updated_at ⇒ DateTime (readonly)
The timestamp indicating when this metadata entry was last updated.
76 |
# File 'app/resources/api/v2/poly_metadatum_resource.rb', line 76 attribute :updated_at, readonly: true |
#value ⇒ String
This is a required attribute
The value stored under the metadata key.
66 |
# File 'app/resources/api/v2/poly_metadatum_resource.rb', line 66 attribute :value |
Instance Method Details
#filter_by_key ⇒ Object
Filters metadata records based on their key.
99 |
# File 'app/resources/api/v2/poly_metadatum_resource.rb', line 99 filter :key |
#filter_by_metadatable_id ⇒ Object
Filters metadata records based on the associated resource's ID.
105 |
# File 'app/resources/api/v2/poly_metadatum_resource.rb', line 105 filter :metadatable_id |