@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
44 lines (29 loc) • 1.31 kB
Markdown
# Name Schema
```txt
https://amazonalexa.com/ask/2020/12/Name#/items/properties/name
```
A name.
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :---------------------------------------------------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [GenericArgumentsDeclaration.json\*](../../schemas/GenericArgumentsDeclaration.json "open original schema") |
## name Type
`string` ([Name](genericargumentsdeclaration-items-properties-name.md))
## name Constraints
**pattern**: the string must match the following regular expression: 
```regexp
^[a-zA-Z_][a-zA-Z0-9_]*$
```
[try pattern](https://regexr.com/?expression=%5E%5Ba-zA-Z_%5D%5Ba-zA-Z0-9_%5D*%24 "try regular expression with regexr.com")
## name Examples
```json
"foo"
```
```json
"bar"
```
```json
"person"
```
```json
"foo1"
```