{ "$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 }