app-server-protocol: add network delegation APIs

This commit is contained in:
sdcoffey
2026-03-18 17:33:05 -07:00
parent 859c58f07d
commit f5affbd860
33 changed files with 5201 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"accepted": {
"type": "boolean"
},
"rejectionReason": {
"type": [
"string",
"null"
]
}
},
"required": [
"accepted"
],
"title": "ModelRequestResponse",
"type": "object"
}