A series of text flows to be translated and sharing common metadata.
| name | data type | description | 
|---|---|---|
| textFlows | array of Text Flow | Set of text flows containing the translatable strings. | 
Properties inherited from Abstract Resource | 
        ||
| extensions | array of object | |
| type | ResourceType | |
| lang | string | |
| contentType | string | |
| name | string | |
| revision | number | |
Example
{
  "textFlows" : [ {
    "id" : "abc123",
    "lang" : "es-ES",
    "plural" : true,
    "extensions" : [ { }, { } ],
    "revision" : 12345,
    "contents" : [ "An english string to translate", "A plural english string to translate" ]
  }, {
    "id" : "...",
    "lang" : "...",
    "plural" : true,
    "extensions" : [ { }, { } ],
    "revision" : 12345,
    "contents" : [ "A plural english string to translate", "An english string to translate" ]
  } ],
  "extensions" : [ { }, { } ],
  "type" : "PAGE",
  "lang" : "...",
  "contentType" : "...",
  "name" : "...",
  "revision" : 12345
}