2021-08-05 22:54:50 +00:00
# Bot Entity
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
## bots
```text
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json
2021-08-01 14:27:44 -07:00
```
Bot entity to capture the details of a bot
2021-08-05 22:54:50 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
| Can be instantiated | No | Unknown status | No | Forbidden | Allowed | none | [bots.json ](https://github.com/open-metadata/OpenMetadata/tree/88ab3784a5a9e2cfcf56bbb144522498eb33184c/docs/openmetadata-apis/https:/github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json ) |
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
### Bot entity Type
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
`object` \([Bot entity ](bots.md )\)
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
## Bot entity Properties
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
| Property | Type | Required | Nullable | Defined by |
| :--- | :--- | :--- | :--- | :--- |
| [id ](bots.md#id ) | `string` | Optional | cannot be null | [Basic type ](../types/basic.md#basic-definitions-uuid ) |
| [name ](bots.md#name ) | `string` | Optional | cannot be null | [Bot entity ](bots.md#bots-properties-name ) |
| [displayName ](bots.md#displayname ) | `string` | Optional | cannot be null | [Bot entity ](bots.md#bots-properties-displayname ) |
| [description ](bots.md#description ) | `string` | Optional | cannot be null | [Bot entity ](bots.md#bots-properties-description ) |
| [href ](bots.md#href ) | `string` | Optional | cannot be null | [Basic type ](../types/basic.md#basic-definitions-href ) |
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
### id
2021-08-01 14:27:44 -07:00
Unique id used to identify an entity
`id`
2021-08-05 22:54:50 +00:00
* is optional
* Type: `string`
* cannot be null
* defined in: [Basic type ](../types/basic.md#basic-definitions-uuid )
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
#### id Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-05 22:54:50 +00:00
#### id Constraints
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
**UUID**: the string must be a UUID, according to [RFC 4122 ](https://tools.ietf.org/html/rfc4122 )
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
### name
2021-08-01 14:27:44 -07:00
Optional name that identifies this entity. Same as id if name is not available
`name`
2021-08-05 22:54:50 +00:00
* is optional
* Type: `string`
* cannot be null
* defined in: [Bot entity ](bots.md#bots-properties-name )
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
#### name Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-05 22:54:50 +00:00
#### name Constraints
2021-08-01 14:27:44 -07:00
**maximum length**: the maximum number of characters for this string is: `64`
**minimum length**: the minimum number of characters for this string is: `1`
2021-08-05 22:54:50 +00:00
### displayName
2021-08-01 14:27:44 -07:00
Name used for display purposes. Example 'FirstName LastName'
`displayName`
2021-08-05 22:54:50 +00:00
* is optional
* Type: `string`
* cannot be null
* defined in: [Bot entity ](bots.md#bots-properties-displayname )
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
#### displayName Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-05 22:54:50 +00:00
### description
2021-08-01 14:27:44 -07:00
Description of entity instance.
`description`
2021-08-05 22:54:50 +00:00
* is optional
* Type: `string`
* cannot be null
* defined in: [Bot entity ](bots.md#bots-properties-description )
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
#### description Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-05 22:54:50 +00:00
### href
2021-08-01 14:27:44 -07:00
Link to the resource corresponding to this entity
> Link to the resource
`href`
2021-08-05 22:54:50 +00:00
* is optional
* Type: `string`
* cannot be null
* defined in: [Basic type ](../types/basic.md#basic-definitions-href )
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
#### href Type
2021-08-04 06:53:40 +00:00
`string`
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
#### href Constraints
**URI**: the string must be a URI, according to [RFC 3986 ](https://tools.ietf.org/html/rfc3986 )
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
## bots-properties-description
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
```text
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/description
2021-08-01 14:27:44 -07:00
```
Description of entity instance.
2021-08-05 22:54:50 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [bots.json\* ](https://github.com/open-metadata/OpenMetadata/tree/88ab3784a5a9e2cfcf56bbb144522498eb33184c/docs/openmetadata-apis/https:/github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json ) |
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
### description Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-05 22:54:50 +00:00
## bots-properties-displayname
```text
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/displayName
2021-08-01 14:27:44 -07:00
```
Name used for display purposes. Example 'FirstName LastName'
2021-08-05 22:54:50 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [bots.json\* ](https://github.com/open-metadata/OpenMetadata/tree/88ab3784a5a9e2cfcf56bbb144522498eb33184c/docs/openmetadata-apis/https:/github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json ) |
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
### displayName Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-05 22:54:50 +00:00
## bots-properties-name
```text
2021-08-04 13:18:14 +05:30
https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/name
2021-08-01 14:27:44 -07:00
```
Optional name that identifies this entity. Same as id if name is not available
2021-08-05 22:54:50 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [bots.json\* ](https://github.com/open-metadata/OpenMetadata/tree/88ab3784a5a9e2cfcf56bbb144522498eb33184c/docs/openmetadata-apis/https:/github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json ) |
2021-08-01 14:27:44 -07:00
2021-08-05 22:54:50 +00:00
### name Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-05 22:54:50 +00:00
### name Constraints
2021-08-01 14:27:44 -07:00
**maximum length**: the maximum number of characters for this string is: `64`
**minimum length**: the minimum number of characters for this string is: `1`
2021-08-05 22:54:50 +00:00