MotiveCustomizable Data Type

Extension of MotivePrime indicating whether the motive contains named SVG layers that can be dynamically customized (e.g. text layers, color layers) per order.

Available Since
1.4.142
Properties
Name Type Description
link AtomLink Link to the SVG source file of the motive. Use this URL to inspect the layer structure before passing layer overrides in a design.
Inherited from Motive
NameTypeDescription
id number Unique numeric identifier for the motive.
uuid string Unique UUID identifier for the motive.
name string The nonlocalized name of the motive.
type MotiveType The type of the motive. Possible values are VECTOR, HIGH_DENSITY_VECTOR, HIGH_RESOLUTION_BITMAP, USER_BITMAP.
MotiveCustomizable (JSON)
{
  "motiveCustomizable" : {
    "link" : {
      "rel" : "...",
      "href" : "...",
      "type" : "..."
    },
    "id" : 12345,
    "uuid" : "...",
    "name" : "funny thing",
    "type" : "VECTOR"
  }
}
MotiveCustomizable Data Type

Extension of MotivePrime indicating whether the motive contains named SVG layers that can be dynamically customized (e.g. text layers, color layers) per order.

Available Since
1.4.142
Properties
Name Type Description
link AtomLink Link to the SVG source file of the motive. Use this URL to inspect the layer structure before passing layer overrides in a design.
Inherited from Motive
NameTypeDescription
id int Unique numeric identifier for the motive.
name string The nonlocalized name of the motive.
type MotiveType The type of the motive. Possible values are VECTOR, HIGH_DENSITY_VECTOR, HIGH_RESOLUTION_BITMAP, USER_BITMAP.
uuid string Unique UUID identifier for the motive.
MotiveCustomizable (XML)
<motiveCustomizable>
  <link href="..." rel="..." type="..." xmlns="http://www.w3.org/2005/Atom"/>
  <id>...</id>
  <uuid>...</uuid>
  <name>funny thing</name>
  <type>VECTOR</type>
</motiveCustomizable>