Atlassian · Schema

Tree Entry

Base type for most resource objects. It defines the common `type` element that identifies an object's type. It also identifies the element as Swagger's `discriminator`.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
path string The path in the repository
commit object
View JSON Schema on GitHub

JSON Schema

atlassian-treeentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/treeentry",
  "title": "Tree Entry",
  "type": "object",
  "description": "Base type for most resource objects. It defines the common `type` element that identifies an object's type. It also identifies the element as Swagger's `discriminator`.",
  "properties": {
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "path": {
      "type": "string",
      "description": "The path in the repository",
      "example": "example_value"
    },
    "commit": {
      "$ref": "#/components/schemas/commit"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": true
}