-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaas-platform.json
More file actions
139 lines (139 loc) · 3.21 KB
/
saas-platform.json
File metadata and controls
139 lines (139 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"@context": "https://schema.org",
"specVersion": "1.0",
"identity": {
"@type": "WebSite",
"domain": "https://www.example-saas.com",
"name": "Example SaaS Platform",
"description": "Cloud platform for project collaboration and client workflows.",
"purpose": "SaaS platform for managing projects, tasks, and client communication.",
"inLanguage": "en",
"category": "saas"
},
"defaults": {
"agentAccess": "restricted",
"requireIdentification": true,
"maxRequestsPerMinute": 30,
"respectRobotsTxt": true
},
"permissions": {
"read": {
"companyInfo": {
"allowed": true
},
"faq": {
"allowed": true
},
"pricing": {
"allowed": true
}
},
"action": {
"search": {
"allowed": true,
"rateLimit": 20
},
"submitContactForm": {
"allowed": false,
"note": "Contact requests require a real human."
},
"createAccount": {
"allowed": false,
"note": "Account creation should be user initiated."
}
},
"data": {
"customerRecords": {
"allowed": false
},
"internalAnalytics": {
"allowed": false
}
}
},
"agentIdentification": {
"requireUserAgent": true,
"requiredFields": [
"agentName",
"agentOperator",
"agentPurpose"
],
"allowAnonymousAgents": false
},
"discovery": {
"robotsTxt": "https://www.example-saas.com/robots.txt",
"llmsTxt": "https://www.example-saas.com/llms.txt",
"openApi": "https://developer.example-saas.com/openapi.json",
"schemaOrg": true
},
"forms": [
{
"name": "Contact sales",
"type": "contact",
"url": "https://www.example-saas.com/contact",
"method": "POST",
"fields": [
"name",
"email",
"company",
"message"
],
"humanVerificationRecommended": true
},
{
"name": "Request demo",
"type": "contact",
"url": "https://www.example-saas.com/demo",
"method": "POST",
"fields": [
"name",
"email",
"company",
"teamSize"
],
"humanVerificationRecommended": true
}
],
"apiEndpoints": [
{
"name": "Public REST API",
"url": "https://api.example-saas.com/v1",
"kind": "rest",
"documentationUrl": "https://developer.example-saas.com/api",
"authenticationRequired": true
},
{
"name": "MCP server",
"url": "https://www.example-saas.com/.well-known/mcp.json",
"kind": "mcp",
"authenticationRequired": false
}
],
"search": {
"url": "https://www.example-saas.com/search",
"parameter": "q",
"supportsFilters": true,
"searchTypes": [
"docs",
"blog",
"templates"
]
},
"publisher": {
"@type": "Organization",
"name": "Example SaaS Inc.",
"url": "https://www.example-saas.com"
},
"services": [
{
"name": "Project Management",
"url": "https://www.example-saas.com/features/project-management",
"category": "software"
},
{
"name": "Client Portal",
"url": "https://www.example-saas.com/features/client-portal",
"category": "software"
}
]
}