Properties
| Name | Type | Description |
|---|---|---|
| id | string | id |
| name | string | name |
| additionalAttributes | object | A map containing additional attributes of entity where both the key and value are Strings. |
| createdDate | string | |
| lastModifiedDate | string | |
| version | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EntityInfo",
"title": "EntityInfo",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "id",
"example": "id."
},
"name": {
"type": "string",
"description": "name",
"example": "name."
},
"additionalAttributes": {
"type": "object",
"additionalProperties": {
"type": "string",
"description": "A map containing additional attributes of entity where both the key and value are Strings.",
"example": "{\"key1\":\"value1\",\"key2\":\"value2\"}"
},
"description": "A map containing additional attributes of entity where both the key and value are Strings.",
"example": {
"key1": "value1",
"key2": "value2"
}
},
"createdDate": {
"type": "string"
},
"lastModifiedDate": {
"type": "string"
},
"version": {
"type": "integer",
"format": "int32"
}
}
}