Article Tag
Provides access to the data fields of a post's tags.
The entity's name is: BlogTag.
| API Name | Label | Required | Data Type | Description |
|---|
| BlogId | Article Type | Yes | Lookup(Article Type) | The Article Type this tag belongs to, controlling its context. |
| CreatedById | Created By | No | Lookup(User) | The user who originally created this tag record. Read-Only. |
| CreatedOn | Created On | No | DateTime | Timestamp when the tag was first created. Read-Only. |
| Id | Id | No | ID | System-generated unique identifier for the tag record. Read-Only. |
| IsDeleted | Deleted | No | Checkbox | Soft-delete flag (checked if the tag is in the recycle bin). |
| ModifiedById | Modified By | No | Lookup(User) | The user who last modified this tag record. Read-Only. |
| ModifiedOn | Modified On | No | DateTime | Timestamp of the most recent update to this tag. Read-Only. |
| Name | Name | Yes | Text(120) | The human-readable tag label (displayed on articles). |
| OwnerId | Owner | No | Lookup(User) | Record owner, used for sharing and security permissions. |
| UseCount | Use Count | No | Rollup Summary | Number of articles currently assigned this tag (auto-calculated). |
The following entity assigns tags to different posts:
The entity name is: "BlogPostTag".
| API Name | Label | Required | Data Type | Description |
|---|
| BlogPostId | Article Post | Yes | Lookup(Post) | The parent Post to which this tag assignment belongs. |
| BlogTagId | Article Tag | No | MasterDetail(Article Tag) | The Tag being applied to the Post. |
| CreatedById | Created By | No | Lookup(User) | User who created this tag-assignment record. Read-Only. |
| CreatedOn | Created On | No | DateTime | Timestamp when this record was first created. Read-Only. |
| Id | Id | No | ID | System-generated unique identifier for the tag-assignment. Read-Only. |
| IsDeleted | Deleted | No | Checkbox | Soft-delete flag (checked if the record is in the recycle bin). |
| ModifiedById | Modified By | No | Lookup(User) | User who last modified this record. Read-Only. |
| ModifiedOn | Modified On | No | DateTime | Timestamp of the most recent modification. Read-Only. |
| Name | Blog Post Tag No. | No | Auto Number | Auto-generated sequence number for each tag-assignment record. |