Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.61 KB

File metadata and controls

37 lines (28 loc) · 1.61 KB

BucketSchemaFieldInput

Schema field definition for bucket objects.

Properties

Name Type Description Notes
type BucketSchemaFieldType
default object [optional]
items BucketSchemaFieldInput [optional]
properties Dict[str, BucketSchemaFieldInput] [optional]
examples List[object] OPTIONAL. List of example values for this field. Used by Apps to show example inputs in the UI. Provide multiple diverse examples when possible. [optional]
description str [optional]
enum List[object] [optional]
required bool [optional] [default to False]

Example

from mixpeek.models.bucket_schema_field_input import BucketSchemaFieldInput

# TODO update the JSON string below
json = "{}"
# create an instance of BucketSchemaFieldInput from a JSON string
bucket_schema_field_input_instance = BucketSchemaFieldInput.from_json(json)
# print the JSON string representation of the object
print(BucketSchemaFieldInput.to_json())

# convert the object into a dict
bucket_schema_field_input_dict = bucket_schema_field_input_instance.to_dict()
# create an instance of BucketSchemaFieldInput from a dict
bucket_schema_field_input_from_dict = BucketSchemaFieldInput.from_dict(bucket_schema_field_input_dict)

[Back to Model list] [Back to API list] [Back to README]