Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LI - Lawful Interception
TC LI schemas definitions
Commits
d2b7f4a6
Commit
d2b7f4a6
authored
Jun 15, 2022
by
canterburym
Browse files
Adding JSON schema (translation code will be in cr/103120/0026)
parent
4d3521f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
103280/TS_103_280.json
0 → 100644
View file @
d2b7f4a6
{
"$id"
:
"etsi103280.json"
,
"$defs"
:
{
"ShortString"
:
{
"type"
:
"string"
,
"maxLength"
:
255
},
"LongString"
:
{
"type"
:
"string"
,
"maxLength"
:
65535
},
"LIID"
:
{
"type"
:
"string"
,
"pattern"
:
"^([!-~]{1,25})|([0-9a-f]{26,50})$"
},
"UTCDateTime"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
},
"UTCMicrosecondDateTime"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}
\\
.[0-9]{6}Z$"
},
"QualifiedDateTime"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}(Z|[+-][0-9]{2}:[0-9]{2})$"
},
"QualifiedMicrosecondDateTime"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}
\\
.[0-9]{6}(Z|[+-][0-9]{2}:[0-9]{2})$"
},
"InternationalE164"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{1,15}$"
},
"IMSI"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{6,15}$"
},
"IMEI"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{14}$"
},
"IMEICheckDigit"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{15}$"
},
"IMEISV"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{16}$"
},
"IPv4Address"
:
{
"type"
:
"string"
,
"pattern"
:
"^((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])
\\
.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])$"
},
"IPv4CIDR"
:
{
"type"
:
"string"
,
"pattern"
:
"^((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])
\\
.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])/([1-2]?[0-9]|3[0-2])$"
},
"IPv6Address"
:
{
"type"
:
"string"
,
"pattern"
:
"^([0-9a-f]{4}:){7}([0-9a-f]{4})$"
},
"IPv6CIDR"
:
{
"type"
:
"string"
,
"pattern"
:
"^([0-9a-f]{4}:){7}([0-9a-f]{4})/(([1-9][0-9]?)|(1[0-1][0-9])|(12[0-8]))$"
},
"TCPPort"
:
{
"type"
:
"integer"
,
"exclusiveMinimum"
:
1
,
"maximum"
:
65535
},
"UDPPort"
:
{
"type"
:
"integer"
,
"minimum"
:
0
,
"maximum"
:
65535
},
"MACAddress"
:
{
"type"
:
"string"
,
"pattern"
:
"^([a-f0-9]{2}:){5}[a-f0-9]{2}$"
},
"EmailAddress"
:
{
"allOf"
:
[
{
"$ref"
:
"#/$defs/ShortString"
},
{
"type"
:
"string"
,
"pattern"
:
"^[a-zA-Z0-9
\\
.!#$%&'
\\
*
\\
+
\\\\
/=
\\
?
\\
^_`
\\
{
\\
|
\\
}~
\\
-]+@[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(
\\
.[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$"
}
]
},
"UUID"
:
{
"type"
:
"string"
,
"pattern"
:
"^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
},
"ISOCountryCode"
:
{
"type"
:
"string"
,
"pattern"
:
"^[A-Z]{2}$"
},
"SIPURI"
:
{
"type"
:
"string"
,
"pattern"
:
"^sips?:[a-zA-Z0-9!#$&-;=?-
\\
[
\\
]_~%]+$"
},
"TELURI"
:
{
"type"
:
"string"
,
"pattern"
:
"^tel:[a-zA-Z0-9!#$&-;=?-
\\
[
\\
]_~%]+$"
},
"WGS84LatitudeDecimal"
:
{
"type"
:
"string"
,
"pattern"
:
"^[NS][0-9]{2}
\\
.[0-9]{6}$"
},
"WGS84LongitudeDecimal"
:
{
"type"
:
"string"
,
"pattern"
:
"^[EW][0-9]{3}
\\
.[0-9]{6}$"
},
"WGS84LatitudeAngular"
:
{
"type"
:
"string"
,
"pattern"
:
"^[NS][0-9]{6}
\\
.[0-9]{2}$"
},
"WGS84LongitudeAngular"
:
{
"type"
:
"string"
,
"pattern"
:
"^[EW][0-9]{7}
\\
.[0-9]{2}$"
},
"SUPIIMSI"
:
{
"$ref"
:
"#/$defs/IMSI"
},
"SUPINAI"
:
{
"$ref"
:
"#/$defs/NAI"
},
"SUCI"
:
{
"type"
:
"string"
,
"pattern"
:
"^([a-fA-F0-9]{2})*$"
},
"PEIIMEI"
:
{
"$ref"
:
"#/$defs/IMEI"
},
"PEIIMEICheckDigit"
:
{
"$ref"
:
"#/$defs/IMEICheckDigit"
},
"PEIIMEISV"
:
{
"$ref"
:
"#/$defs/IMEISV"
},
"GPSIMSISDN"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{1,15}$"
},
"GPSINAI"
:
{
"$ref"
:
"#/$defs/NAI"
},
"NAI"
:
{
"type"
:
"string"
},
"LDID"
:
{
"type"
:
"string"
,
"pattern"
:
"^([A-Z]{2}-.+-.+)$"
},
"InternationalizedEmailAddress"
:
{
"allOf"
:
[
{
"$ref"
:
"#/$defs/ShortString"
},
{
"type"
:
"string"
,
"pattern"
:
"^.+@.+$"
}
]
},
"EUI64"
:
{
"type"
:
"string"
,
"pattern"
:
"^([a-f0-9]{2}:){7}[a-f0-9]{2}$"
},
"CGI"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{3}-[0-9]{2,3}-[a-f0-9]{4}-[a-f0-9]{4}$"
},
"ECGI"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{3}-[0-9]{2,3}-[a-f0-9]{7}$"
},
"NCGI"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{3}-[0-9]{2,3}-[a-f0-9]{9}$"
},
"ICCID"
:
{
"type"
:
"string"
,
"pattern"
:
"^[0-9]{19,20}$"
},
"IPAddress"
:
{
"oneOf"
:
[
{
"type"
:
"object"
,
"properties"
:
{
"IPv4Address"
:
{
"$ref"
:
"#/$defs/IPv4Address"
}
},
"required"
:
[
"IPv4Address"
]
},
{
"type"
:
"object"
,
"properties"
:
{
"IPv6Address"
:
{
"$ref"
:
"#/$defs/IPv6Address"
}
},
"required"
:
[
"IPv6Address"
]
}
]
},
"IPCIDR"
:
{
"oneOf"
:
[
{
"type"
:
"object"
,
"properties"
:
{
"IPv4CIDR"
:
{
"$ref"
:
"#/$defs/IPv4CIDR"
}
},
"required"
:
[
"IPv4CIDR"
]
},
{
"type"
:
"object"
,
"properties"
:
{
"IPv6CIDR"
:
{
"$ref"
:
"#/$defs/IPv6CIDR"
}
},
"required"
:
[
"IPv6CIDR"
]
}
]
},
"TCPPortRange"
:
{
"type"
:
"object"
,
"properties"
:
{
"start"
:
{
"$ref"
:
"#/$defs/TCPPort"
},
"end"
:
{
"$ref"
:
"#/$defs/TCPPort"
}
},
"required"
:
[
"start"
,
"end"
]
},
"UDPPortRange"
:
{
"type"
:
"object"
,
"properties"
:
{
"start"
:
{
"$ref"
:
"#/$defs/UDPPort"
},
"end"
:
{
"$ref"
:
"#/$defs/UDPPort"
}
},
"required"
:
[
"start"
,
"end"
]
},
"Port"
:
{
"oneOf"
:
[
{
"type"
:
"object"
,
"properties"
:
{
"TCPPort"
:
{
"$ref"
:
"#/$defs/TCPPort"
}
},
"required"
:
[
"TCPPort"
]
},
{
"type"
:
"object"
,
"properties"
:
{
"UDPPort"
:
{
"$ref"
:
"#/$defs/UDPPort"
}
},
"required"
:
[
"UDPPort"
]
}
]
},
"PortRange"
:
{
"oneOf"
:
[
{
"type"
:
"object"
,
"properties"
:
{
"TCPPortRange"
:
{
"$ref"
:
"#/$defs/TCPPortRange"
}
},
"required"
:
[
"TCPPortRange"
]
},
{
"type"
:
"object"
,
"properties"
:
{
"UDPPortRange"
:
{
"$ref"
:
"#/$defs/UDPPortRange"
}
},
"required"
:
[
"UDPPortRange"
]
}
]
},
"IPAddressPort"
:
{
"type"
:
"object"
,
"properties"
:
{
"address"
:
{
"$ref"
:
"#/$defs/IPAddress"
},
"port"
:
{
"$ref"
:
"#/$defs/Port"
}
},
"required"
:
[
"address"
,
"port"
]
},
"IPAddressPortRange"
:
{
"type"
:
"object"
,
"properties"
:
{
"address"
:
{
"$ref"
:
"#/$defs/IPAddress"
},
"portRange"
:
{
"$ref"
:
"#/$defs/PortRange"
}
},
"required"
:
[
"address"
,
"portRange"
]
},
"WGS84CoordinateDecimal"
:
{
"type"
:
"object"
,
"properties"
:
{
"latitude"
:
{
"$ref"
:
"#/$defs/WGS84LatitudeDecimal"
},
"longitude"
:
{
"$ref"
:
"#/$defs/WGS84LongitudeDecimal"
}
},
"required"
:
[
"latitude"
,
"longitude"
]
},
"WGS84CoordinateAngular"
:
{
"type"
:
"object"
,
"properties"
:
{
"latitude"
:
{
"$ref"
:
"#/$defs/WGS84LatitudeAngular"
},
"longitude"
:
{
"$ref"
:
"#/$defs/WGS84LongitudeAngular"
}
},
"required"
:
[
"latitude"
,
"longitude"
]
}
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment