22 lines
342 B
JSON
22 lines
342 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "RenameBranchRequest",
|
|
"type": "object",
|
|
"properties": {
|
|
"branchId": {
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"storyId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"storyId",
|
|
"branchId",
|
|
"name"
|
|
]
|
|
}
|