183 lines
7.7 KiB
Markdown
Raw Normal View History

2021-08-04 06:53:40 +00:00
# bots
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
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-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :----------- | :---------------- | :-------------------- | :------------------ | :------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | No | Forbidden | Allowed | none | [bots.json](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## Bot entity Type
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
`object` ([Bot entity](bots.md))
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
# Bot entity Properties
2021-08-01 14:27:44 -07:00
2021-08-04 07:49:14 +00:00
| Property | Type | Required | Nullable | Defined by |
| :-------------------------- | :------- | :------- | :------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
2021-08-04 06:53:40 +00:00
| [id](#id) | `string` | Optional | cannot be null | [Basic type](../types/basic.md#basic-definitions-uuid) |
2021-08-04 13:18:14 +05:30
| [name](#name) | `string` | Optional | cannot be null | [Bot entity](#bots-properties-name "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/name") |
| [displayName](#displayname) | `string` | Optional | cannot be null | [Bot entity](#bots-properties-displayname "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/displayName") |
| [description](#description) | `string` | Optional | cannot be null | [Bot entity](#bots-properties-description "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/description") |
2021-08-04 06:53:40 +00:00
| [href](#href) | `string` | Optional | cannot be null | [Basic type](../types/basic.md#basic-definitions-href) |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## id
2021-08-01 14:27:44 -07:00
Unique id used to identify an entity
`id`
2021-08-04 06:53:40 +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-04 06:53:40 +00:00
### id Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
### id Constraints
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
**UUID**: the string must be a UUID, according to [RFC 4122](https://tools.ietf.org/html/rfc4122 "check the specification")
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +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-04 06:53:40 +00:00
* is optional
* Type: `string`
* cannot be null
2021-08-04 13:18:14 +05:30
* defined in: [Bot entity](#bots-properties-name "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
2021-08-04 06:53:40 +00:00
### name Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +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-04 06:53:40 +00:00
## displayName
2021-08-01 14:27:44 -07:00
Name used for display purposes. Example 'FirstName LastName'
`displayName`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `string`
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 13:18:14 +05:30
* defined in: [Bot entity](#bots-properties-displayname "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/displayName")
2021-08-04 06:53:40 +00:00
### displayName Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
## description
2021-08-01 14:27:44 -07:00
Description of entity instance.
`description`
2021-08-04 06:53:40 +00:00
* is optional
* Type: `string`
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* cannot be null
2021-08-04 13:18:14 +05:30
* defined in: [Bot entity](#bots-properties-description "https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json#/properties/description")
2021-08-04 06:53:40 +00:00
### description Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +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-04 06:53:40 +00:00
* is optional
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* Type: `string`
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* cannot be null
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
* defined in: [Basic type](../types/basic.md#basic-definitions-href)
### href Type
`string`
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
### href Constraints
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
**URI**: the string must be a URI, according to [RFC 3986](https://tools.ietf.org/html/rfc3986 "check the specification")
# bots-properties-description
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
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-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [bots.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## description Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
# bots-properties-displayname
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
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-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [bots.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## displayName Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +00:00
# bots-properties-name
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
```txt
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-04 06:53:40 +00:00
| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | :--------- | :------------- | :---------------------- | :---------------- | :-------------------- | :------------------ | :-------------------------------------------------------------------- |
2021-08-04 13:18:14 +05:30
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [bots.json*](../../https://github.com/open-metadata/OpenMetadata/blob/main/catalog-rest-service/src/main/resources/json/schema/entity/bots.json "open original schema") |
2021-08-01 14:27:44 -07:00
2021-08-04 06:53:40 +00:00
## name Type
2021-08-01 14:27:44 -07:00
`string`
2021-08-04 06:53:40 +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`