Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.51 KB

File metadata and controls

36 lines (27 loc) · 1.51 KB

StructuredData

Properties

Name Type Description Notes
score int Numeric score for structured data (0-15) [optional]
status str [optional]
explanation str [optional]
has_schema bool Whether schema.org markup is present [optional]
has_json_ld bool Whether JSON-LD structured data is present [optional]
has_microdata bool Whether Microdata structured data is present [optional]
detected_schemas List[DetectedSchema] List of detected schema types with their formats [optional]
recommendations List[SchemaRecommendation] Recommendations for improving structured data [optional]

Example

from wordlift_client.models.structured_data import StructuredData

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

# convert the object into a dict
structured_data_dict = structured_data_instance.to_dict()
# create an instance of StructuredData from a dict
structured_data_from_dict = StructuredData.from_dict(structured_data_dict)

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