Additions to the L2 monitoring for CFM and SOAM

Change-Id: I2d39dd9e1c4841c87cb0a27d82bb303ffd9c08fc
diff --git a/apps/cfm/src/main/resources/definitions/MepLtTransmit.json b/apps/cfm/src/main/resources/definitions/MepLtTransmit.json
new file mode 100644
index 0000000..1360c00
--- /dev/null
+++ b/apps/cfm/src/main/resources/definitions/MepLtTransmit.json
@@ -0,0 +1,38 @@
+{
+  "type": "object",
+  "title": "linktrace",
+  "required": [
+    "linktrace"
+  ],
+  "properties": {
+    "linktrace": {
+      "type": "object",
+      "title": "ltprops",
+      "required": [
+        "remoteMepId"
+      ],
+      "properties": {
+        "remoteMepId": {
+          "type": "uint16",
+          "minimum": 1,
+          "maximum": 8191,
+          "description": "remote Mep will be identified by either a MacAddress or a MEPId. This is for Mep Id",
+          "example": 20
+        },
+        "transmitLtmFlags": {
+          "type": "string",
+          "maxLength": 64,
+          "description": "Ltm flags to transmit. The only flag supported is 'use-fdb-only'",
+          "example": "use-fdb-only"
+        },
+        "defaultTtl": {
+          "type": "uint16",
+          "minimum": 1,
+          "maximum": 32767,
+          "description": "The time to live of the Ltm packet",
+          "example": 64
+        }
+      }
+    }
+  }
+}
\ No newline at end of file