Files
openclaw-android-assistant/documentation/app-server-schemas/json/v1/GitDiffToRemoteResponse.json
Pavel Voronin fbc8a668b1 init
2026-02-16 13:57:47 +08:00

22 lines
351 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"GitSha": {
"type": "string"
}
},
"properties": {
"diff": {
"type": "string"
},
"sha": {
"$ref": "#/definitions/GitSha"
}
},
"required": [
"diff",
"sha"
],
"title": "GitDiffToRemoteResponse",
"type": "object"
}