REST Model for that status of a single template tag
| name | data type | description |
|---|---|---|
| name | string | Tag name |
| constructId | number | Construct ID |
| constructName | string | Construct name |
| constructIcon | string | Construct icon |
| inSync | number | Number of pages in sync with this template tag |
| outOfSync | number | Number of pages, that have the tag with a different construct ID (including incompatible pages) |
| incompatible | number | Number of pages, that have the tag with a different construct ID, which is not compatible with the construct ID (and therefore cannot be migrated automatically without possible losing data). |
| missing | number | Number of pages, that do not have this tag |
Example
{
"name" : "...",
"constructId" : 12345,
"constructName" : "...",
"constructIcon" : "...",
"inSync" : 12345,
"outOfSync" : 12345,
"incompatible" : 12345,
"missing" : 12345
}