| Name |
Type |
Description |
Notes |
| score |
int |
Numeric score for site files (0-10). MCP / WebMCP / Agent Skills / SKILL.md signals are applied as post-hoc bonuses on `overallScore`, not on this per-criterion score. |
[optional] |
| status |
str |
Overall status of site files |
[optional] |
| explanation |
str |
Detailed explanation of site files evaluation |
[optional] |
| robots_txt |
str |
Status of robots.txt file |
[optional] |
| llms_txt |
str |
Status of llms.txt file (AI model instructions) |
[optional] |
| has_llms_txt |
bool |
Whether llms.txt file exists |
[optional] |
| has_skill_md |
bool |
Whether a top-level `SKILL.md` file exists (Agent Skills convention) |
[optional] |
| bot_status |
List[BotStatus] |
Access status for various bots |
[optional] |
| well_known |
WellKnownFiles |
|
[optional] |
from wordlift_client.models.site_files import SiteFiles
# TODO update the JSON string below
json = "{}"
# create an instance of SiteFiles from a JSON string
site_files_instance = SiteFiles.from_json(json)
# print the JSON string representation of the object
print(SiteFiles.to_json())
# convert the object into a dict
site_files_dict = site_files_instance.to_dict()
# create an instance of SiteFiles from a dict
site_files_from_dict = SiteFiles.from_dict(site_files_dict)
[Back to Model list] [Back to API list] [Back to README]