| Name |
Type |
Description |
Notes |
| var_schema |
str |
JSON schema version identifier |
[optional] [readonly] |
| error_message |
object |
A collection of error messages for individual properties in the schema. Okta implements a subset of ajv-errors. |
[optional] |
| id |
str |
URI of log stream schema |
[optional] [readonly] |
| one_of |
List[UserSchemaAttributeEnum] |
Non-empty array of valid JSON schemas. Okta only supports `oneOf` for specifying display names for an `enum`. Each schema has the following format: ``` { "const": "enumValue", "title": "display name" } ``` |
[optional] |
| pattern |
str |
For `string` log stream schema property type, specifies the regular expression used to validate the property |
[optional] |
| properties |
object |
log stream schema properties object |
[optional] |
| required |
List[str] |
Required properties for this log stream schema object |
[optional] |
| title |
str |
Name of the log streaming integration |
[optional] |
| type |
str |
Type of log stream schema property |
[optional] [readonly] |
| links |
LinksSelf |
|
[optional] |
from okta.models.log_stream_schema import LogStreamSchema
# TODO update the JSON string below
json = "{}"
# create an instance of LogStreamSchema from a JSON string
log_stream_schema_instance = LogStreamSchema.from_json(json)
# print the JSON string representation of the object
print(LogStreamSchema.to_json())
# convert the object into a dict
log_stream_schema_dict = log_stream_schema_instance.to_dict()
# create an instance of LogStreamSchema from a dict
log_stream_schema_from_dict = LogStreamSchema.from_dict(log_stream_schema_dict)
[Back to Model list] [Back to API list] [Back to README]