Schema.org structured data configuration for search engines. Enables rich search results and better understanding of the page content.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | Schema.org type for structured data | [optional] [default to 'WebApplication'] |
| additional_properties | Dict[str, object] | Additional Schema.org properties | [optional] |
from mixpeek.models.structured_data_config import StructuredDataConfig
# TODO update the JSON string below
json = "{}"
# create an instance of StructuredDataConfig from a JSON string
structured_data_config_instance = StructuredDataConfig.from_json(json)
# print the JSON string representation of the object
print(StructuredDataConfig.to_json())
# convert the object into a dict
structured_data_config_dict = structured_data_config_instance.to_dict()
# create an instance of StructuredDataConfig from a dict
structured_data_config_from_dict = StructuredDataConfig.from_dict(structured_data_config_dict)