Class: V1::DataTypeResource
- Inherits:
-
JSONAPI::Resource
- Object
- JSONAPI::Resource
- V1::DataTypeResource
- Defined in:
- app/resources/v1/data_type_resource.rb
Overview
This documentation does not yet include a detailed description of what this resource represents.
This documentation does not yet include detailed descriptions for relationships, attributes and filters.
This documentation does not yet include any example usage of the API via cURL or similar.
Access this resource via the /v1/data_types
endpoint.
Provides a JSON:API representation of DataType and exposes valid data type options for use by the UI.
For more information about JSON:API see the JSON:API Specifications or look at the JSONAPI::Resources package for the service implementation of the JSON:API standard.
Instance Attribute Summary collapse
-
#created_at ⇒ String
The timestamp when the data type was created.
-
#name ⇒ String
The name of the data type.
-
#pipeline ⇒ String
The pipeline associated with the data type.
-
#updated_at ⇒ String
The timestamp when the data type was last updated.
Instance Attribute Details
#created_at ⇒ String
Returns the timestamp when the data type was created.
25 |
# File 'app/resources/v1/data_type_resource.rb', line 25 attributes :name, :pipeline, :created_at, :updated_at |
#name ⇒ String
Returns the name of the data type.
25 |
# File 'app/resources/v1/data_type_resource.rb', line 25 attributes :name, :pipeline, :created_at, :updated_at |
#pipeline ⇒ String
Returns the pipeline associated with the data type.
25 |
# File 'app/resources/v1/data_type_resource.rb', line 25 attributes :name, :pipeline, :created_at, :updated_at |
#updated_at ⇒ String
Returns the timestamp when the data type was last updated.
25 |
# File 'app/resources/v1/data_type_resource.rb', line 25 attributes :name, :pipeline, :created_at, :updated_at |