Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.34 KB

File metadata and controls

48 lines (39 loc) · 2.34 KB

AuditData

Properties

Name Type Description Notes
url str The audited URL (may include trailing slash) [optional]
domain str The base domain of the audited URL [optional]
timestamp datetime ISO 8601 timestamp of when the audit was performed [optional]
overall_score int Overall SEO and AI-readiness score (0-100) [optional]
score int Legacy field - same as overallScore [optional]
summary str High-level summary of the audit findings in markdown format [optional]
site_files SiteFiles [optional]
seo_fundamentals SeoFundamentals [optional]
structured_data StructuredData [optional]
content_structure ContentStructure [optional]
image_accessibility ImageAccessibility [optional]
html_semantics HtmlSemantics [optional]
content_freshness ContentFreshness [optional]
internal_linking InternalLinking [optional]
automation_readiness AutomationReadiness [optional]
js_rendering JsRendering [optional]
quick_wins QuickWinsResult [optional]
status str Status of the audit process [optional]
account_id int Account ID associated with the audit [optional]
account_url str Account URL associated with the audit [optional]

Example

from wordlift_client.models.audit_data import AuditData

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

# convert the object into a dict
audit_data_dict = audit_data_instance.to_dict()
# create an instance of AuditData from a dict
audit_data_from_dict = AuditData.from_dict(audit_data_dict)

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