Commit 344e85fd authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Merge branch 'meeting/LI72' into 'main'

Output of LI#72

See merge request !304
parents c5367509 9e16066c
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
# Editors
.vscode/
.idea/
.obsidian

testing/dockerfiles/build.log

+11 −7
Original line number Diff line number Diff line


# TS 103 120 v1.23.1
temp, tagged as [spec/103120/1.23.1](https://forge.etsi.org/rep/li/schemas-definitions/-/tree/spec/103120/1.23.1/103120?ref_type=tags) and available [from the ETSI portal as a PDF](https://www.etsi.org/deliver/etsi_ts/103100_103199/103120/01.23.01_60/ts_103120v012301p.pdf)
.  
  
Includes the following CRs with Forge changes:
* TS 103 120 CR125 - Adding filename to Delivery Objects ([MR 308](https://forge.etsi.org/rep/li/schemas-definitions/-/merge_requests/308)).

  
For all changes, including non-Forge changes, see the change history in the published specification.  


# TS 103 120 v1.22.1
TS 103 120 v1.22.1 agreed at LI#71 (Sophia Antipolis, FR), tagged as [spec/103120/1.22.1](https://forge.etsi.org/rep/li/schemas-definitions/-/tree/spec/103120/1.22.1/103120?ref_type=tags) and available [from the ETSI portal as a PDF](https://www.etsi.org/deliver/etsi_ts/103100_103199/103120/01.22.01_60/ts_103120v012201p.pdf)
.  
@@ -178,13 +189,6 @@ TS 103 120 V1.10.1 (2021-12) agreed at LI#58e, tagged as [spec/103120/1.10.1](ht
No MR information in the Forge.


# TS 103 120 v1.10.1
TS 103 120 V1.10.1 (2021-12) agreed at LI#58e, tagged as [spec/103120/1.10.1](https://forge.etsi.org/rep/li/schemas-definitions/-/tree/spec/103120/1.10.1/103120?ref_type=tags) and available [from the ETSI portal as a PDF](https://www.etsi.org/deliver/etsi_ts/103100_103199/103120/01.10.01_60/ts_103120v011001p.pdf)
.  
  
No MR information in the Forge.


# TS 103 120 v1.9.1
TS 103 120 v1.9.1 (2021-07) agreed at LI#57-e (Online, 2021-06-25), tagged as [spec/103120/1.9.1](https://forge.etsi.org/rep/li/schemas-definitions/-/tree/spec/103120/1.9.1/103120?ref_type=tags) and available [from the ETSI portal as a PDF](https://www.etsi.org/deliver/etsi_ts/103100_103199/103120/01.09.01_60/ts_103120v010901p.pdf)
.  
+2 −0
Original line number Diff line number Diff line
@@ -66,6 +66,8 @@
            <xs:element name="Checksum" type="common:Checksum" minOccurs="0"/>
            <xs:element name="ChecksumType" type="common:ChecksumType" minOccurs="0"/>
            <xs:element name="Checksums" type="common:ListOfChecksumAndType" minOccurs="0"/>
            <xs:element name="OriginalFilename" type="etsi:LongString" minOccurs="0"/>
            <xs:element name="ContentLength" type="xs:nonNegativeInteger" minOccurs="0"/>
        </xs:sequence>
    </xs:complexType>
    <xs:complexType name="EmbeddedXMLData">
+0 −0

File moved.

+44 −0
Original line number Diff line number Diff line
{
  "$id": "urn:etsi:li:103705:record-schema-id:v1.5.1",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CSP Record Schema",
  "description": "Defines the valid set of Subscriber Data Records that may appear in a RecordSet (see ETSI TS 103 705 clause 6.2.4)",
  "cspSchemaID": "csp.example_8",
  "cspName": "csp.example.com",
  "dateIssued": "2026-04-29T09:15:01Z",
  "version": "1.1.1",
  "$defs": {
    "record": {
      "oneOf": [
        {
          "allOf": [
            {
              "$ref": "csp_example_types#/$defs/CSPSubscriberRecordsCollectionRecord"
            },
            {
              "properties": {
                "type": {
                  "const": "csp_example_types#/$defs/CSPSubscriberRecordsCollectionRecord"
                }
              }
            }
          ]
        },
        {
          "allOf": [
            {
              "$ref": "csp_example_types#/$defs/CSPSubscriptionRecordsCollectionRecord"
            },
            {
              "properties": {
                "type": {
                  "const": "csp_example_types#/$defs/CSPSubscriptionRecordsCollectionRecord"
                }
              }
            }
          ]
        }
      ]
    }
  }
}
 No newline at end of file
Loading