Skip to content
Developer Preview

BranchState

The latest branch observation in the snapshot.

  • branch
  • vcs
  • workspaceRoot
Source

schema/msp/experimental/msp.schema.json#/types/BranchState

{
"description": "The latest branch observation in the snapshot.",
"properties": {
"branch": {
"description": "The observed branch; `null` on a detached-HEAD observation.",
"type": [
"string",
"null"
]
},
"vcs": {
"$ref": "#/$defs/Vcs",
"description": "The detected version-control system; absent when none was detected."
},
"workspaceRoot": {
"description": "The observed workspace root.",
"type": "string"
}
},
"required": [
"branch",
"workspaceRoot"
],
"type": "object"
}