Delete a restriction from a context

## Usage

`circleci context restriction delete <context-id|context-name> [flags]`

Aliases: `circleci context restriction rm`

## Arguments

A context can be specified by name or ID:
- By name, for example, `context-name`
- By ID, for example, `849e7902-802f-4082-8a70-da77dcd084e3`

## Flags

| Flag                      | Description                                                       |
| ------------------------- | ----------------------------------------------------------------- |
| `-f, --force`             | Skip confirmation prompt                                          |
| `--org string`            | Organization slug (e.g. gh/myorg); used when resolving name to ID |
| `--restriction-id string` | UUID of the restriction to delete                                 |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Delete a restriction (with confirmation): 
  `circleci context restriction delete ctx-uuid --restriction-id r-uuid`
- Delete without confirmation: 
  `circleci context restriction delete ctx-uuid --restriction-id r-uuid --force`

## Details

Remove a restriction from a CircleCI context.

This action is irreversible. Once removed, the context will be
accessible to any project or group that was previously blocked.

