Atlassian · Schema

Repository Inheritance State

A json object representing the repository's inheritance state values

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
override_settings object
View JSON Schema on GitHub

JSON Schema

atlassian-repository-inheritance-state-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/repository_inheritance_state",
  "title": "Repository Inheritance State",
  "type": "object",
  "description": "A json object representing the repository's inheritance state values",
  "properties": {
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "override_settings": {
      "type": "object",
      "example": "example_value"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": true
}