Create a namespace

## Usage

`circleci namespace create <name> --org <org> [flags]`

## Arguments

`<name>` is the namespace name to create. It must be globally unique
across CircleCI, for example, `myorg`.

## Flags

| Flag           | Description                                                                       |
| -------------- | --------------------------------------------------------------------------------- |
| `--jq string`  | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`       | Output as JSON                                                                    |
| `--org string` | Organization slug (e.g. gh/myorg) or UUID to claim the namespace for (required)   |

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

## Examples

- Create a namespace for an organization: 
  `circleci namespace create myorg --org gh/acme`
- Create a namespace and output JSON: 
  `circleci namespace create myorg --org gh/acme --json`
- Capture just the namespace ID: 
  `circleci namespace create myorg --org gh/acme --json --jq '.id'`

## Details

Create a CircleCI orb namespace for an organization.

Each organization may claim one namespace. Namespace names must
be globally unique across CircleCI. All orbs published in a
namespace are world-readable.

JSON fields: id, name

