Sean Condon | 081290d | 2017-11-02 13:15:08 +0000 | [diff] [blame] | 1 | { |
| 2 | "type": "object", |
| 3 | "title": "linktrace", |
| 4 | "required": [ |
| 5 | "linktrace" |
| 6 | ], |
| 7 | "properties": { |
| 8 | "linktrace": { |
| 9 | "type": "object", |
| 10 | "title": "ltprops", |
| 11 | "required": [ |
| 12 | "remoteMepId" |
| 13 | ], |
| 14 | "properties": { |
| 15 | "remoteMepId": { |
| 16 | "type": "uint16", |
| 17 | "minimum": 1, |
| 18 | "maximum": 8191, |
| 19 | "description": "remote Mep will be identified by either a MacAddress or a MEPId. This is for Mep Id", |
| 20 | "example": 20 |
| 21 | }, |
| 22 | "transmitLtmFlags": { |
| 23 | "type": "string", |
| 24 | "maxLength": 64, |
| 25 | "description": "Ltm flags to transmit. The only flag supported is 'use-fdb-only'", |
| 26 | "example": "use-fdb-only" |
| 27 | }, |
| 28 | "defaultTtl": { |
| 29 | "type": "uint16", |
| 30 | "minimum": 1, |
| 31 | "maximum": 32767, |
| 32 | "description": "The time to live of the Ltm packet", |
| 33 | "example": 64 |
| 34 | } |
| 35 | } |
| 36 | } |
| 37 | } |
| 38 | } |