diff --git a/draft.md b/draft.md index 2bd770b..b1ab5eb 100644 --- a/draft.md +++ b/draft.md @@ -159,7 +159,6 @@ This is the root object of the OpenCLI Description. |------------|:----:|-------------| | name | `string` | **REQUIRED** The argument name | | required | `bool` | Whether or not the argument is required | -| ordinal | `int` | The relative position to other arguments | | arity | [Arity Object](#arity-object) | The argument arity. Arity defines the minimum and maximum number of argument values | | acceptedValues | [`string`] | A list of accepted values | | group | `string` | The argument group | diff --git a/schema.json b/schema.json index b948c98..715c594 100644 --- a/schema.json +++ b/schema.json @@ -123,10 +123,6 @@ "type": "boolean", "description": "Whether or not the argument is required" }, - "ordinal": { - "type": "integer", - "description": "The relative position to other arguments" - }, "arity": { "$ref": "#/$defs/Arity", "description": "The argument arity. Arity defines the minimum and maximum number of argument values" diff --git a/typespec/main.tsp b/typespec/main.tsp index c89c346..ea6651a 100644 --- a/typespec/main.tsp +++ b/typespec/main.tsp @@ -125,9 +125,6 @@ model Argument { @doc("Whether or not the argument is required") required?: boolean; - @doc("The relative position to other arguments") - ordinal?: integer; - @doc("The argument arity. Arity defines the minimum and maximum number of argument values") arity?: Arity;