From f5cc4a66058ced33e702d5e4c23400549584f013 Mon Sep 17 00:00:00 2001 From: m00519082 Date: Tue, 8 Oct 2024 16:01:10 +0800 Subject: [PATCH] define conflicted state --- yang/ietf-schedule.yang | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/yang/ietf-schedule.yang b/yang/ietf-schedule.yang index 9cbaf3a..571ddb6 100644 --- a/yang/ietf-schedule.yang +++ b/yang/ietf-schedule.yang @@ -229,26 +229,33 @@ module ietf-schedule { identity enabled { base schedule-state; description - "Indicates a recurrence with an enabled state."; + "Indicates a schedule with an enabled state."; } identity finished { base schedule-state; description - "Indicates a recurrence with a finished state. + "Indicates a schedule with a finished state. The finished state indicates that the schedule has ended."; } identity disabled { base schedule-state; description - "Indicates a recurrence with a disabled state."; + "Indicates a schedule with a disabled state."; } identity out-of-date { base schedule-state; description - "Indicates a recurrence with an out-of-date state."; + "Indicates a schedule with an out-of-date state."; + } + + identity conflicted { + base schedule-state; + description + "Indicates a schedule with a conflicted state with other + schedules."; } identity discard-action {