Commit f315ffb3 authored by bradburyr's avatar bradburyr
Browse files

Reformatted enumerated types to use alternative array notation that is more...

Reformatted enumerated types to use alternative array notation that is more easily verified by the syntax checker.
parent cb926fe5
Loading
Loading
Loading
Loading
+17 −4
Original line number Diff line number Diff line
@@ -221,7 +221,10 @@ components:
    CellIdentifierType:
      anyOf:
        - type: string
          enum: [CGI, ECGI, NCGI]
          enum:
            - CGI
            - ECGI
            - NCGI
        - type: string
          description: >
            This string provides forward-compatibility with future
@@ -231,7 +234,12 @@ components:
    SdfMethod:
      anyOf:
        - type: string
          enum: [5_TUPLE, 2_TUPLE, TYPE_OF_SERVICE_MARKING, FLOW_LABEL, DOMAIN_NAME]
          enum:
            - 5_TUPLE
            - 2_TUPLE
            - TYPE_OF_SERVICE_MARKING
            - FLOW_LABEL
            - DOMAIN_NAME
        - type: string
          description: >
            This string provides forward-compatibility with future
@@ -241,7 +249,9 @@ components:
    ProvisioningSessionType:
      anyOf:
        - type: string
          enum: [DOWNLINK, UPLINK]
          enum:
            - DOWNLINK
            - UPLINK
        - type: string
          description: >
            This string provides forward-compatibility with future
@@ -251,7 +261,10 @@ components:
    EASRelocationTolerance:
      anyOf:
        - type: string
          enum: [RELOCATION_UNAWARE, RELOCATION_TOLERANT, RELOCATION_INTOLERANT]
          enum:
            - RELOCATION_UNAWARE
            - RELOCATION_TOLERANT
            - RELOCATION_INTOLERANT
        - type: string
          description: >
            This string provides forward-compatibility with future
+3 −1
Original line number Diff line number Diff line
@@ -209,7 +209,9 @@ components:
      description: 'The management mode of an EAS.'
      anyOf:
        - type: string
          enum: [EM_AF_DRIVEN, EM_APP_DRIVEN]
          enum:
            - EM_AF_DRIVEN
            - EM_APP_DRIVEN
        - type: string
          description: >
            This string provides forward-compatibility with future
+5 −1
Original line number Diff line number Diff line
@@ -156,7 +156,11 @@ components:
          readOnly: true
          anyOf:
            - type: string
              enum: [PENDING, INVALID, READY, SUSPENDED]
              enum:
                - PENDING
                - INVALID
                - READY
                - SUSPENDED
            - type: string
              description: >
                This string provides forward-compatibility with future
+4 −1
Original line number Diff line number Diff line
@@ -141,7 +141,10 @@ components:
    CacheStatus:
      anyOf:
        - type: string
          enum: [HIT, MISS, EXPIRED]
          enum:
            - HIT
            - MISS
            - EXPIRED
        - type: string
          description: >
            This string provides forward-compatibility with future
+11 −2
Original line number Diff line number Diff line
@@ -97,7 +97,12 @@ components:
      description: Enumeration of event record types.
      anyOf:
        - type: string
          enum: [INDIVIDUAL_SAMPLE, SUMMARY_MEAN, SUMMARY_MINIMUM, SUMMARY_MAXIMUM, SUMMARY_SUM]
          enum:
            - INDIVIDUAL_SAMPLE
            - SUMMARY_MEAN
            - SUMMARY_MINIMUM
            - SUMMARY_MAXIMUM
            - SUMMARY_SUM
        - type: string
          description: >
            This string provides forward-compatibility with future
@@ -235,7 +240,11 @@ components:
      description: The type of network assistance sought by the Media Session Handler.
      anyOf:
        - type: string
          enum: [AF_THROUGHPUT_ESTIMATION, AF_DELIVERY_BOOST, ANBR_THROUGHPUT_ESTIMATION, ANBR_DELIVERY_BOOST]
          enum:
            - AF_THROUGHPUT_ESTIMATION
            - AF_DELIVERY_BOOST
            - ANBR_THROUGHPUT_ESTIMATION
            - ANBR_DELIVERY_BOOST
        - type: string
          description: >
            This string provides forward-compatibility with future
Loading