> ## Documentation Index
> Fetch the complete documentation index at: https://superdoc-caio-pizzol-docs-ai-core-preset.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# authorities.entries.remove

> Remove a TA authority entry field from the document.

## Summary

Remove a TA authority entry field from the document.

* Operation ID: `authorities.entries.remove`
* API member path: `editor.doc.authorities.entries.remove(...)`
* Mutates document: `yes`
* Idempotency: `non-idempotent`
* Supports tracked mode: `no`
* Supports dry run: `yes`
* Deterministic target resolution: `yes`

## Expected result

Returns an AuthorityEntryMutationResult indicating success or a failure.

## Input fields

| Field                         | Type                  | Required | Description                  |
| ----------------------------- | --------------------- | -------- | ---------------------------- |
| `target`                      | object(kind="inline") | yes      |                              |
| `target.anchor`               | InlineAnchor          | yes      | InlineAnchor                 |
| `target.anchor.end`           | Position              | yes      | Position                     |
| `target.anchor.end.blockId`   | string                | yes      |                              |
| `target.anchor.end.offset`    | integer               | yes      |                              |
| `target.anchor.start`         | Position              | yes      | Position                     |
| `target.anchor.start.blockId` | string                | yes      |                              |
| `target.anchor.start.offset`  | integer               | yes      |                              |
| `target.kind`                 | `"inline"`            | yes      | Constant: `"inline"`         |
| `target.nodeType`             | `"authorityEntry"`    | yes      | Constant: `"authorityEntry"` |

### Example request

```json theme={null}
{
  "target": {
    "anchor": {
      "end": {
        "blockId": "block-abc123",
        "offset": 0
      },
      "start": {
        "blockId": "block-abc123",
        "offset": 0
      }
    },
    "kind": "inline",
    "nodeType": "authorityEntry"
  }
}
```

## Output fields

### Variant 1 (success=true)

| Field                        | Type                  | Required | Description                  |
| ---------------------------- | --------------------- | -------- | ---------------------------- |
| `entry`                      | object(kind="inline") | yes      |                              |
| `entry.anchor`               | InlineAnchor          | yes      | InlineAnchor                 |
| `entry.anchor.end`           | Position              | yes      | Position                     |
| `entry.anchor.end.blockId`   | string                | yes      |                              |
| `entry.anchor.end.offset`    | integer               | yes      |                              |
| `entry.anchor.start`         | Position              | yes      | Position                     |
| `entry.anchor.start.blockId` | string                | yes      |                              |
| `entry.anchor.start.offset`  | integer               | yes      |                              |
| `entry.kind`                 | `"inline"`            | yes      | Constant: `"inline"`         |
| `entry.nodeType`             | `"authorityEntry"`    | yes      | Constant: `"authorityEntry"` |
| `success`                    | `true`                | yes      | Constant: `true`             |

### Variant 2 (success=false)

| Field             | Type    | Required | Description       |
| ----------------- | ------- | -------- | ----------------- |
| `failure`         | object  | yes      |                   |
| `failure.code`    | string  | yes      |                   |
| `failure.details` | any     | no       |                   |
| `failure.message` | string  | yes      |                   |
| `success`         | `false` | yes      | Constant: `false` |

### Example response

```json theme={null}
{
  "entry": {
    "anchor": {
      "end": {
        "blockId": "block-abc123",
        "offset": 0
      },
      "start": {
        "blockId": "block-abc123",
        "offset": 0
      }
    },
    "kind": "inline",
    "nodeType": "authorityEntry"
  },
  "success": true
}
```

## Pre-apply throws

* `TARGET_NOT_FOUND`
* `INVALID_TARGET`
* `CAPABILITY_UNAVAILABLE`

## Non-applied failure codes

* None

## Raw schemas

<Accordion title="Raw input schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "target": {
        "additionalProperties": false,
        "properties": {
          "anchor": {
            "$ref": "#/$defs/InlineAnchor"
          },
          "kind": {
            "const": "inline"
          },
          "nodeType": {
            "const": "authorityEntry"
          }
        },
        "required": [
          "kind",
          "nodeType",
          "anchor"
        ],
        "type": "object"
      }
    },
    "required": [
      "target"
    ],
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw output schema">
  ```json theme={null}
  {
    "oneOf": [
      {
        "additionalProperties": false,
        "properties": {
          "entry": {
            "additionalProperties": false,
            "properties": {
              "anchor": {
                "$ref": "#/$defs/InlineAnchor"
              },
              "kind": {
                "const": "inline"
              },
              "nodeType": {
                "const": "authorityEntry"
              }
            },
            "required": [
              "kind",
              "nodeType",
              "anchor"
            ],
            "type": "object"
          },
          "success": {
            "const": true
          }
        },
        "required": [
          "success",
          "entry"
        ],
        "type": "object"
      },
      {
        "additionalProperties": false,
        "properties": {
          "failure": {
            "additionalProperties": false,
            "properties": {
              "code": {
                "type": "string"
              },
              "details": {},
              "message": {
                "type": "string"
              }
            },
            "required": [
              "code",
              "message"
            ],
            "type": "object"
          },
          "success": {
            "const": false
          }
        },
        "required": [
          "success",
          "failure"
        ],
        "type": "object"
      }
    ]
  }
  ```
</Accordion>

<Accordion title="Raw success schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "entry": {
        "additionalProperties": false,
        "properties": {
          "anchor": {
            "$ref": "#/$defs/InlineAnchor"
          },
          "kind": {
            "const": "inline"
          },
          "nodeType": {
            "const": "authorityEntry"
          }
        },
        "required": [
          "kind",
          "nodeType",
          "anchor"
        ],
        "type": "object"
      },
      "success": {
        "const": true
      }
    },
    "required": [
      "success",
      "entry"
    ],
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw failure schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "failure": {
        "additionalProperties": false,
        "properties": {
          "code": {
            "type": "string"
          },
          "details": {},
          "message": {
            "type": "string"
          }
        },
        "required": [
          "code",
          "message"
        ],
        "type": "object"
      },
      "success": {
        "const": false
      }
    },
    "required": [
      "success",
      "failure"
    ],
    "type": "object"
  }
  ```
</Accordion>
