├── .vscode └── settings.json ├── LICENSE ├── README.md ├── SliceTemplateBlueprint.xlsm ├── gsma-gst.iml ├── gst ├── generic-slice-template.xlsx └── json-schema │ ├── 1-who.json │ ├── 10-v-2-x-profile.json │ ├── 11-ue-positioning-profile.json │ ├── 12-deterministic-comms-profile.json │ ├── 13-mission-critical-profile.json │ ├── 14-commercial-profile.json │ ├── 15-operational-profile.json │ ├── 16-third-party-network-and-application-functions.json │ ├── 2-what.json │ ├── 3-where.json │ ├── 4-when.json │ ├── 5-traffic-profile.json │ ├── 6-device-profile.json │ ├── 7-common-properties.json │ ├── 8-data-access-profile.json │ └── 9-mobility-profile.json ├── out.json ├── out.txt ├── out.yml ├── p-nest └── example-p-nest.yaml ├── s-nest ├── 2019-catalyst │ └── collect-wearable-sensor-data │ │ ├── example │ │ ├── commercial-profile.json │ │ ├── common-properties.json │ │ ├── data-access-profile.json │ │ ├── deterministic-comms-profile.json │ │ ├── device-profile.json │ │ ├── mission-critical-profile.json │ │ ├── mobility-profile.json │ │ ├── operational-profile.json │ │ ├── third-party-network-and-application-functions.json │ │ ├── traffic-profile.json │ │ ├── ue-positioning-profile.json │ │ ├── v-2-x-profile.json │ │ ├── what.json │ │ ├── when.json │ │ ├── where.json │ │ └── who.json │ │ └── schema │ │ ├── commercial-profile.json │ │ ├── common-properties.json │ │ ├── data-access-profile.json │ │ ├── deterministic-comms-profile.json │ │ ├── device-profile.json │ │ ├── mission-critical-profile.json │ │ ├── mobility-profile.json │ │ ├── operational-profile.json │ │ ├── third-party-network-and-application-functions.json │ │ ├── traffic-profile.json │ │ ├── ue-positioning-profile.json │ │ ├── v-2-x-profile.json │ │ ├── what.json │ │ ├── when.json │ │ ├── where.json │ │ └── who.json ├── 2020-catalyst │ └── mec-slice │ │ ├── example │ │ ├── commercial-profile.json │ │ ├── common-properties.json │ │ ├── data-access-profile.json │ │ ├── deterministic-comms-profile.json │ │ ├── device-profile.json │ │ ├── mission-critical-profile.json │ │ ├── mobility-profile.json │ │ ├── operational-profile.json │ │ ├── third-party-network-and-application-functions.json │ │ ├── traffic-profile.json │ │ ├── ue-positioning-profile.json │ │ ├── v-2-x-profile.json │ │ ├── what.json │ │ ├── when.json │ │ ├── where.json │ │ └── who.json │ │ └── schema │ │ ├── commercial-profile.json │ │ ├── common-properties.json │ │ ├── data-access-profile.json │ │ ├── deterministic-comms-profile.json │ │ ├── device-profile.json │ │ ├── mission-critical-profile.json │ │ ├── mobility-profile.json │ │ ├── operational-profile.json │ │ ├── third-party-network-and-application-functions.json │ │ ├── traffic-profile.json │ │ ├── ue-positioning-profile.json │ │ ├── v-2-x-profile.json │ │ ├── what.json │ │ ├── when.json │ │ ├── where.json │ │ └── who.json └── readme.txt ├── tmforum └── open-apis │ └── TMF641-ServiceOrdering │ └── examples │ ├── TMF641_ Assured Connection Service Order.json │ └── TMF641_ MEC Hosting Service Order.json └── tosca ├── 5G Service Assure.yml ├── 5G.yml ├── 5G_datatypes.yml ├── README.md ├── create_enablement_tosca.py ├── doc.yml ├── mec_hosting_enablementwheresmychargepoint.com.yml ├── mec_hosting_set_up.yml ├── mec_hosting_set_up_inputs.yml ├── sid.yml └── templates └── mec_hosting_enablement.j2 /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/README.md -------------------------------------------------------------------------------- /SliceTemplateBlueprint.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/SliceTemplateBlueprint.xlsm -------------------------------------------------------------------------------- /gsma-gst.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gsma-gst.iml -------------------------------------------------------------------------------- /gst/generic-slice-template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/generic-slice-template.xlsx -------------------------------------------------------------------------------- /gst/json-schema/1-who.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/1-who.json -------------------------------------------------------------------------------- /gst/json-schema/10-v-2-x-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/10-v-2-x-profile.json -------------------------------------------------------------------------------- /gst/json-schema/11-ue-positioning-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/11-ue-positioning-profile.json -------------------------------------------------------------------------------- /gst/json-schema/12-deterministic-comms-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/12-deterministic-comms-profile.json -------------------------------------------------------------------------------- /gst/json-schema/13-mission-critical-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/13-mission-critical-profile.json -------------------------------------------------------------------------------- /gst/json-schema/14-commercial-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/14-commercial-profile.json -------------------------------------------------------------------------------- /gst/json-schema/15-operational-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/15-operational-profile.json -------------------------------------------------------------------------------- /gst/json-schema/16-third-party-network-and-application-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/16-third-party-network-and-application-functions.json -------------------------------------------------------------------------------- /gst/json-schema/2-what.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/2-what.json -------------------------------------------------------------------------------- /gst/json-schema/3-where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/3-where.json -------------------------------------------------------------------------------- /gst/json-schema/4-when.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/4-when.json -------------------------------------------------------------------------------- /gst/json-schema/5-traffic-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/5-traffic-profile.json -------------------------------------------------------------------------------- /gst/json-schema/6-device-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/6-device-profile.json -------------------------------------------------------------------------------- /gst/json-schema/7-common-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/7-common-properties.json -------------------------------------------------------------------------------- /gst/json-schema/8-data-access-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/8-data-access-profile.json -------------------------------------------------------------------------------- /gst/json-schema/9-mobility-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/gst/json-schema/9-mobility-profile.json -------------------------------------------------------------------------------- /out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/out.json -------------------------------------------------------------------------------- /out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/out.txt -------------------------------------------------------------------------------- /out.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/out.yml -------------------------------------------------------------------------------- /p-nest/example-p-nest.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/commercial-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Charging": "Yes" 3 | } 4 | -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/common-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/common-properties.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/data-access-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/data-access-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/deterministic-comms-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/deterministic-comms-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/device-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/device-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/mission-critical-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/mission-critical-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/mobility-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "MaxUeVelocity(Km/H)": "500" 3 | } 4 | -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/operational-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/operational-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/third-party-network-and-application-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/third-party-network-and-application-functions.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/traffic-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/traffic-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/ue-positioning-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/ue-positioning-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/v-2-x-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/v-2-x-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/what.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/what.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/when.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/when.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/example/where.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/example/who.json: -------------------------------------------------------------------------------- 1 | { 2 | "CustomerName/Reference": "First Reponse Unit Italy" 3 | } 4 | -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/commercial-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/commercial-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/common-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/common-properties.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/data-access-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/data-access-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/deterministic-comms-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/deterministic-comms-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/device-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/device-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/mission-critical-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/mission-critical-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/mobility-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/mobility-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/operational-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/operational-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/third-party-network-and-application-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/third-party-network-and-application-functions.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/traffic-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/traffic-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/ue-positioning-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/ue-positioning-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/v-2-x-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/v-2-x-profile.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/what.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/what.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/when.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/when.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/where.json -------------------------------------------------------------------------------- /s-nest/2019-catalyst/collect-wearable-sensor-data/schema/who.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2019-catalyst/collect-wearable-sensor-data/schema/who.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/commercial-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Charging": "Yes" 3 | } 4 | -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/common-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/common-properties.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/data-access-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/data-access-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/deterministic-comms-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/deterministic-comms-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/device-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/device-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/mission-critical-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/mission-critical-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/mobility-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "MaxUeVelocity(Km/H)": "500" 3 | } 4 | -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/operational-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/operational-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/third-party-network-and-application-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/third-party-network-and-application-functions.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/traffic-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/traffic-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/ue-positioning-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/ue-positioning-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/v-2-x-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/v-2-x-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/what.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/what.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/when.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/when.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/example/where.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/example/who.json: -------------------------------------------------------------------------------- 1 | { 2 | "CustomerName/Reference": "EV Charging Point Operators" 3 | } 4 | -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/commercial-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/commercial-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/common-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/common-properties.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/data-access-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/data-access-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/deterministic-comms-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/deterministic-comms-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/device-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/device-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/mission-critical-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/mission-critical-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/mobility-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/mobility-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/operational-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/operational-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/third-party-network-and-application-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/third-party-network-and-application-functions.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/traffic-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/traffic-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/ue-positioning-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/ue-positioning-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/v-2-x-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/v-2-x-profile.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/what.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/what.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/when.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/when.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/where.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/where.json -------------------------------------------------------------------------------- /s-nest/2020-catalyst/mec-slice/schema/who.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/s-nest/2020-catalyst/mec-slice/schema/who.json -------------------------------------------------------------------------------- /s-nest/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmforum/open-apis/TMF641-ServiceOrdering/examples/TMF641_ Assured Connection Service Order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tmforum/open-apis/TMF641-ServiceOrdering/examples/TMF641_ Assured Connection Service Order.json -------------------------------------------------------------------------------- /tmforum/open-apis/TMF641-ServiceOrdering/examples/TMF641_ MEC Hosting Service Order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tmforum/open-apis/TMF641-ServiceOrdering/examples/TMF641_ MEC Hosting Service Order.json -------------------------------------------------------------------------------- /tosca/5G Service Assure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/5G Service Assure.yml -------------------------------------------------------------------------------- /tosca/5G.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/5G.yml -------------------------------------------------------------------------------- /tosca/5G_datatypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/5G_datatypes.yml -------------------------------------------------------------------------------- /tosca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/README.md -------------------------------------------------------------------------------- /tosca/create_enablement_tosca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/create_enablement_tosca.py -------------------------------------------------------------------------------- /tosca/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/doc.yml -------------------------------------------------------------------------------- /tosca/mec_hosting_enablementwheresmychargepoint.com.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/mec_hosting_enablementwheresmychargepoint.com.yml -------------------------------------------------------------------------------- /tosca/mec_hosting_set_up.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/mec_hosting_set_up.yml -------------------------------------------------------------------------------- /tosca/mec_hosting_set_up_inputs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/mec_hosting_set_up_inputs.yml -------------------------------------------------------------------------------- /tosca/sid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/sid.yml -------------------------------------------------------------------------------- /tosca/templates/mec_hosting_enablement.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5g-ridersonthestorm/gsma-gst/HEAD/tosca/templates/mec_hosting_enablement.j2 --------------------------------------------------------------------------------