Atlassian · Schema

ref

A ref object, representing a branch or tag in a repository.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
links object
name string The name of the ref.
View JSON Schema on GitHub

JSON Schema

atlassian-bitbucket-teams-ref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ref",
  "type": "object",
  "description": "A ref object, representing a branch or tag in a repository.",
  "properties": {
    "type": {
      "type": "string"
    },
    "links": {
      "type": "object"
    },
    "name": {
      "type": "string",
      "description": "The name of the ref."
    }
  }
}