blob: b263f33e7bd87b7d44c40a7e011668b23d56ebd9 [file] [log] [blame]
Scott Baker4fb4ba92022-01-14 13:52:01 -08001// SPDX-FileCopyrightText: 2021 Open Networking Foundation
2//
Sean Condon160ec1d2022-02-08 12:58:25 +00003// SPDX-License-Identifier: Apache-2.0
Scott Baker4fb4ba92022-01-14 13:52:01 -08004
5submodule onf-sim-card {
6 belongs-to onf-enterprise { prefix ent; }
7
Scott Baker4fb4ba92022-01-14 13:52:01 -08008 import onf-aether-types { prefix at; }
9
10 organization "Open Networking Foundation.";
11 contact "Scott Baker";
12 description
13 "A Aether Device...";
14
15 revision "2022-01-19" {
16 description "An Aether Device";
17 reference "RFC 6087";
18 }
19
20 typedef sim-card-id {
Scott Baker40a79562022-02-16 15:04:50 -080021 type at:aether-identifier;
Scott Baker4fb4ba92022-01-14 13:52:01 -080022 description "The typedef for device-id";
23 }
24
25 grouping sim-card {
26 description "The top level container";
27
28 list sim-card {
29 key "sim-id";
30 unique "iccid";
31 description
32 "List of sim cards";
33
34 leaf sim-id {
35 type sim-card-id;
36 description "ID for this sim card.";
37 }
38
Sean Condon9f7966e2022-02-03 10:55:06 +000039 uses at:desc-display-name;
40
Scott Baker4fb4ba92022-01-14 13:52:01 -080041 leaf iccid {
42 type at:iccid;
43 description
44 "ICCID for this sim card";
45 }
46
Scott Baker4fb4ba92022-01-14 13:52:01 -080047 leaf imsi {
48 type at:imsi;
49 description
50 "IMSI for this sim card";
51 }
52 }
53 }
54}