TagStatus Data Type

REST Model for that status of a single template tag

Properties
name data type constraints description
name string   Tag name
constructId number required int Construct ID
constructName string   Construct name
constructIcon string   Construct icon
inSync number required int Number of pages in sync with this template tag
outOfSync number required int Number of pages, that have the tag with a different construct ID (including incompatible pages)
incompatible number required int 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 required int Number of pages, that do not have this tag

Example

{
  "name" : "...",
  "constructId" : 12345,
  "constructName" : "...",
  "constructIcon" : "...",
  "inSync" : 12345,
  "outOfSync" : 12345,
  "incompatible" : 12345,
  "missing" : 12345
}