{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RepositoryChangeableAttributes", "title": "RepositoryChangeableAttributes", "type": "object", "description": "Changeable attributes for a repository.", "properties": { "deleteEnabled": { "type": "boolean", "description": "Whether delete is enabled.", "example": true }, "writeEnabled": { "type": "boolean", "description": "Whether write is enabled.", "example": true }, "listEnabled": { "type": "boolean", "description": "Whether list is enabled.", "example": true }, "readEnabled": { "type": "boolean", "description": "Whether read is enabled.", "example": true }, "teleportEnabled": { "type": "boolean", "description": "Whether teleport is enabled.", "example": true } } }