Commit e9551f33 authored by Elian Kraja's avatar Elian Kraja
Browse files

First draft

parent 1e353498
Loading
Loading
Loading
Loading

.jenkins.sh

0 → 100644
+18 −0
Original line number Diff line number Diff line
#!/bin/bash

specfiles=$(ls | egrep "^[^.]*.(json|yaml)")

fres=0
for i in $specfiles ; do
    echo "-- Validating and linting OpenAPI file $i..."
    swagger-cli validate $i
    res=$?
    speccy lint "$i"
    res2=$?
    fres=$(($fres||$res||$res2))
    echo "--- Validator returned $res, linter returned $res2."
done

echo "-- Final validator returns $fres."
exit $fres
+1300 −0

File added.

Preview size limit exceeded, changes collapsed.

+951 −0

File added.

Preview size limit exceeded, changes collapsed.

proto3/desktop.ini

0 → 100644
+244 B

File added.

No diff preview for this file type.

+35 −0
Original line number Diff line number Diff line
/*
  ETSI GS MEC 021 Application Mobility Service API
 
  ETSI GS MEC 021 Application Mobility Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec021;

import public "models/adjacent_app_info_subscription_filter_criteria.proto";
import public "models/adjacent_app_info_subscription_links.proto";
import public "models/time_stamp.proto";

message AdjacentAppInfoSubscription {

  AdjacentAppInfoSubscriptionLinks Underscorelinks = 1;

  // URI selected by the service consumer to receive notifications on the subscribed Application Mobility Service. This shall be included both in the request and in response.
  string callbackReference = 2;

  TimeStamp expiryDeadline = 3;

  AdjacentAppInfoSubscriptionFilterCriteria filterCriteria = 4;

  // Shall be set to \"AdjacentAppInfoSubscription\".
  enum subscriptionType {
    ADJACENTAPPINFOSUBSCRIPTION = 0;
  }

}
Loading