MEC010p2_definitions.yaml 13.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
  definitions: 
    ConfigPlatformForAppRequest:
      type: object
      properties:
        appServiceRequired:
          type: array
          items:
            $ref: '#/definitions/ServiceDependency'
        appServiceOptional:
          type: array
          items:
            $ref: '#/definitions/ServiceDependency'
        appServiceProduced:
          type: array
          items:
            $ref: '#/definitions/ServiceDescriptor'
        appFeatureRequired:
          type: array
          items:
            $ref: '#/definitions/FeatureDependency'
        appFeatureOptional:
          type: array
          items:
            $ref: '#/definitions/FeatureDependency'
        transportDependencies:
          type: array
          items:
            $ref: '#/definitions/TransportDependency'
        appTrafficRule:
          type: array
          items:
            $ref: '#/definitions/TrafficRuleDescriptor'
        appDNSRule:
          type: array
          items:
            $ref: '#/definitions/DNSRuleDescriptor'
        appLatency:
          $ref: '#/definitions/LatencyDescriptor'
        userContextTransferCapability:
          $ref: '#/definitions/UserContextTransferCapability'
        appNetworkPolicy:
          $ref: '#/definitions/AppNetworkPolicy'
    ServiceDependency:
      title: ServiceDependency
      required:
      - serName
      - version
      type: object
      properties:
        requestedPermissions:
          type: array
          items:
            type: string
          description: >-
            Requested permissions regarding the access of the application to the service. See clause 8.2 of ETSI GS MEC 009.
            The format of this attribute is left for the data model design stage.
        serCategory:
          type: object
          description: See MEC011
        serName:
          type: string
          description: The name of the service, for example, RNIS, LocationService, etc.
        serTransportDependencies:
          type: array
          items:
            $ref: '#/definitions/TransportDependency'
          description: Indicates transport and serialization format dependencies of consuming the service. Defaults to REST + JSON if absent. See note.
        version:
          type: string
          description: The version of the service.
    TransportDependency:
      title: TransportDependency
      required:
      - labels
      - serializers
      - transport
      type: object
      properties:
        labels:
          type: array
          items:
            type: string
          description: Set of labels that allow to define groups of transport bindings. The mechanism of the grouping is defined below this table.
        serializers:
          type: array
          items:
            type: string
          description: Information about the serializers in this transport binding, as defined in the SerializerTypes type in ETSI GS MEC 011 [i.4]. Support for at least one of the entries is required in conjunction with the transport.
        transport:
          $ref: '#/definitions/TransportDescriptor'
    TransportDescriptor:
      title: TransportDescriptor
      required:
      - name
      - protocol
      - security
      - type
      - version
      type: object
      properties:
        name:
          type: string
          description: The name of this transport.
        description:
          type: string
          description: Human-readable description of this transport.
        protocol:
          type: string
          description: The name of the protocol used. Shall be set to HTTP for a REST API.
        security:
          type: object
          description: See MEC011
        type:
          type: string
        version:
          type: string
          description: The version of the protocol used.
        implSpecificInfo:
          type: object
          description: Additional implementation specific details of the transport.
    ServiceDescriptor:
      title: ServiceDescriptor
      description: "'The ServiceDescriptor data type describes a MEC service produced by a service-providing MEC application.'"
      required:
      - serName
      - version
      - transport
      type: object
      properties:
        serName:
          type: string
          description: The name of the service, for example, RNIS, LocationService, etc.
        serCategory:
          type: object
          description: See MEC011
        version:
          type: string
          description: The version of the service.
        transportsSupported:
          type: array
          items:
              $ref: '#/definitions/TransportsSupported'
    TransportsSupported:
        title: TransportsSupported
        type: object
        required:
          - serializers
        properties:
          transport:
            $ref: '#/definitions/TransportDescriptor'
          serializers:
            type: array
            items:
              type: string
            description: "'Information about the serializers in this binding, as defined in the SerializerTypes type in ETSI GS MEC 011 '"
        description: "'Indicates transports and serialization formats supported made available to the service-consuming application. Defaults to REST + JSON if absent.'"
    FeatureDependency:
      title: FeatureDependency
      required:
      - featureName
      - version
      type: object
      properties:
        featureName:
          type: string
          description: The name of the feature, for example, UserApps, UEIdentity, etc.
        version:
          type: string
          description: The version of the feature.
    TrafficRuleDescriptor:
      title: TrafficRuleDescriptor
      required:
      - action
      - filterType
      - priority
      - trafficFilter
      - trafficRuleId
      type: object
      properties:
        action:
          $ref: '#/definitions/Action'
        dstInterface:
          maxItems: 2
          type: array
          items:
            $ref: '#/definitions/InterfaceDescriptor'
          description: ''
        filterType:
          $ref: '#/definitions/FilterType'
        priority:
          type: integer
          description: Priority of this traffic rule within the range 0 to 255. If traffic rule conflicts, the one with higher priority take precedence. Value indicates the priority in descending order, i.e. with 0 as the highest priority and 255 as the lowest priority.
          contentEncoding: int32
        trafficFilter:
          minItems: 1
          type: array
          items:
            $ref: '#/definitions/TrafficFilter'
          description: The filter used to identify specific flow/packets that need to be handled by the MEC host.
        trafficRuleId:
          type: string
          description: Identifies the traffic rule.
    Action:
      title: Action
      enum:
      - DROP
      - FORWARD_DECAPSULATED
      - FORWARD_AS_IS
      - PASSTHROUGH
      - DUPLICATED_DECAPSULATED
      - DUPLICATE_AS_IS
      type: string
      description: "'Identifies the action of the MEC host data plane, when a packet matches the trafficFilter.'"
      examples:
      - DROP
    TrafficFilter:
      title: TrafficFilter
      type: object
      properties:
        dSCP:
          type: integer
          description: Used to match all IPv4 packets that have the same DSCP.
          contentEncoding: int32
        dstAddress:
          type: array
          items:
            type: string
          description: A IP address or a range of IP addresses.For IPv4, the IP address could be an IP address plus mask, or an individual IP address, or a range of IP addresses.For IPv6, the IP address could be an IP prefix, or a range of IP prefixes.
        dstPort:
          type: array
          items:
            type: string
          description: A port or a range of ports.
        dstTunnelPort:
          type: array
          items:
            type: string
          description: Used for GTP tunnel based traffic rule.
        protocol:
          type: array
          items:
            type: string
          description: Specify the protocol of the traffic filter.
        qCI:
          type: integer
          description: Used to match all packets that have the same QCI.
          contentEncoding: int32
        srcAddress:
          type: array
          items:
            type: string
          description: An IP address or a range of IP addresses.For IPv4, the IP address could be an IP address plus mask, or an individual IP address, or a range of IP addresses.For IPv6, the IP address could be an IP prefix, or a range of IP prefixes.
        srcPort:
          type: array
          items:
            type: string
          description: A port or a range of ports.
        srcTunnelAddress:
          type: array
          items:
            type: string
          description: Used for GTP tunnel based traffic rule.
        srcTunnelPort:
          type: array
          items:
            type: string
          description: Used for GTP tunnel based traffic rule.
        tC:
          type: integer
          description: Used to match all IPv6 packets that have the same TC.
          contentEncoding: int32
        tag:
          type: array
          items:
            type: string
          description: Used for tag based traffic rule.
        tgtTunnelAddress:
          type: array
          items:
            type: string
          description: Used for GTP tunnel based traffic rule.
        uri:
          type: array
          items:
            type: string
        packetLabel:
          type: array
          items: 
            type: string
    DNSRuleDescriptor:
      title: DNSRuleDescriptor
      required:
      - dnsRuleId
      - domainName
      - ipAddress
      - ipAddressType
      type: object
      properties:
        dnsRuleId:
          type: string
          description: Identifies the DNS Rule
        domainName:
          type: string
          description: FQDN of the DNS rule
        ipAddress:
          type: string
          description: IP address given by the DNS rule
        ipAddressType:
          $ref: '#/definitions/IpAddressType'
        ttl:
          type: integer
          description: Time-to-live value
          contentEncoding: int32
    IpAddressType:
      title: IpAddressType
      enum:
      - IP_V6
      - IP_V4
      type: string
      description: Specifies the IP address type
      examples:
      - IP_V6
    LatencyDescriptor:
      title: LatencyDescriptor
      required:
      - maxLatency
      type: object
      properties:
        maxLatency:
          type: integer
          description: The value of the maximum latency in nano seconds tolerated by the MEC application. See note.
          contentEncoding: int32
    UserContextTransferCapability:
      title: UserContextTransferCapability
      required:
      - statefulApplication
      type: object
      properties:
        statefulApplication:
          type: boolean
        userContextTransferSupport:
          type: boolean
    AppNetworkPolicy:
      title: AppNetworkPolicy
      required:
      - steeredNetwork
      type: object
      properties:
        steeredNetwork:
          $ref: '#/definitions/AppNetworkPolicy.steeredNetwork'
    AppNetworkPolicy.steeredNetwork:
      title: AppNetworkPolicy.steeredNetwork
      type: object
      properties:
        cellularNetwork:
          type: boolean
        wi-fiNetwork:
          type: boolean
        fixedAccessNetwork:
          type: boolean
    InterfaceDescriptor:
      title: InterfaceDescriptor
      required:
      - interfaceType
      type: object
      properties:
        dstIPAddress:
          type: string
          description: If the interface type is IP, the destination address identifies the IP address of the destination. Only used for dstInterface.
        dstMACAddress:
          type: string
          description: If the interface type is MAC, the destination address identifies the MAC address of the destination. Only used for dstInterface.
        interfaceType:
          $ref: '#/definitions/InterfaceType'
        srcMACAddress:
          type: string
          description: If the interface type is MAC, the source address identifies the MAC address of the interface.
        tunnelInfo:
          $ref: '#/definitions/TunnelInfo'
    InterfaceType:
      title: InterfaceType
      enum:
      - TUNNEL
      - MAC
      - IP
      type: string
      description: Type of interface.
      examples:
      - TUNNEL
    TunnelInfo:
      title: TunnelInfo
      required:
      - tunnelDstAddress
      - tunnelSrcAddress
      - tunnelType
      type: object
      properties:
        tunnelDstAddress:
          type: string
          description: Destination address of the tunnel.
        tunnelSpecificData:
          type: string
        tunnelSrcAddress:
          type: string
          description: Source address of the tunnel.
        tunnelType:
          $ref: '#/definitions/TunnelType'
    TunnelType:
      title: TunnelType
      enum:
      - GTP-U
      - GRE
      type: string
      description: Type of tunnel.
      examples:
      - GTP-U
    FilterType:
      title: FilterType
      enum:
      - FLOW
      - PACKET
      type: string
      description: 'Definition of filter type: per FLOW or PACKET'
      examples:
      - FLOW