|
| 1 | +openapi: 3.0.0 |
| 2 | + |
| 3 | +info: |
| 4 | + title: 'MBS User Service Announcement Element units’ definition' |
| 5 | + version: 1.1.0 |
| 6 | + description: | |
| 7 | + MBS User Service Announcement Element units. |
| 8 | + © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). |
| 9 | + All rights reserved. |
| 10 | +
|
| 11 | +externalDocs: |
| 12 | + description: 3GPP TS 26.517 V17.1.0; 5G System; 5G MBSF; Stage 3. |
| 13 | + url: http://www.3gpp.org/ftp/Specs/archive/26_series/26.517/ |
| 14 | +paths: {} |
| 15 | +components: |
| 16 | + schemas: |
| 17 | + BundleDescription: |
| 18 | + type: array |
| 19 | + items: |
| 20 | + $ref: '#/components/schemas/UserServiceDescription' |
| 21 | + minItems: 1 |
| 22 | + |
| 23 | + UserServiceDescription: |
| 24 | + type: object |
| 25 | + properties: |
| 26 | + name: |
| 27 | + type: array |
| 28 | + items: |
| 29 | + type: string |
| 30 | + serviceLanguage: |
| 31 | + type: array |
| 32 | + items: |
| 33 | + type: string |
| 34 | + serviceId: |
| 35 | + type: string |
| 36 | + distributionSessionDescription: |
| 37 | + $ref: '#/components/schemas/DistributionSessionDescription' |
| 38 | + appServiceDescription: |
| 39 | + $ref: '#/components/schemas/AppServiceDescription' |
| 40 | + scheduleDescription: |
| 41 | + $ref: '#/components/schemas/ScheduleDescription' |
| 42 | + availabilityInfo: |
| 43 | + $ref: '#/components/schemas/AvailabilityInformation' |
| 44 | + required: |
| 45 | + - distributionMethod |
| 46 | + - serviceId |
| 47 | + |
| 48 | + DistributionSessionDescription: |
| 49 | + type: object |
| 50 | + properties: |
| 51 | + conformanceProfile: |
| 52 | + type: string |
| 53 | + sessionDescriptionURI: |
| 54 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/Uri' |
| 55 | + objectRepairParameters: |
| 56 | + $ref: '#/components/schemas/AssociatedProcedureDescription' |
| 57 | + dataNetworkName: |
| 58 | + type: string |
| 59 | + mbsAppService: |
| 60 | + type: array |
| 61 | + items: |
| 62 | + $ref: '#/components/schemas/ApplicationService' |
| 63 | + unicastAppServices: |
| 64 | + type: array |
| 65 | + items: |
| 66 | + type: object |
| 67 | + properties: |
| 68 | + unicastAppService: |
| 69 | + type: array |
| 70 | + items: |
| 71 | + $ref: '#/components/schemas/ApplicationService' |
| 72 | + required: |
| 73 | + - sessionDescriptionURI |
| 74 | + |
| 75 | + AppServiceDescription: |
| 76 | + type: object |
| 77 | + properties: |
| 78 | + mediaManifestDescriptionURI: |
| 79 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/Uri' |
| 80 | + mimeType: |
| 81 | + type: string |
| 82 | + identicalContents: |
| 83 | + type: array |
| 84 | + items: |
| 85 | + type: object |
| 86 | + properties: |
| 87 | + unicastAppService: |
| 88 | + type: array |
| 89 | + items: |
| 90 | + $ref: '#/components/schemas/ApplicationService' |
| 91 | + minItems: 2 |
| 92 | + alternativeContents: |
| 93 | + type: array |
| 94 | + items: |
| 95 | + type: array |
| 96 | + items: |
| 97 | + $ref: '#/components/schemas/ApplicationService' |
| 98 | + |
| 99 | + ApplicationService: |
| 100 | + type: object |
| 101 | + properties: |
| 102 | + basePattern: |
| 103 | + type: string |
| 104 | + required: |
| 105 | + - basePattern |
| 106 | + |
| 107 | + AvailabilityInformation: |
| 108 | + type: array |
| 109 | + items: |
| 110 | + $ref: '#/components/schemas/AvailabilityInformationBinding' |
| 111 | + |
| 112 | + AvailabilityInformationBinding: |
| 113 | + type: object |
| 114 | + properties: |
| 115 | + mbsServiceArea: |
| 116 | + type: array |
| 117 | + items: |
| 118 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/MbsServiceArea' |
| 119 | + mbsFSAId: |
| 120 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/MbsFsaId' |
| 121 | + radioFrequency: |
| 122 | + type: array |
| 123 | + items: |
| 124 | + type: integer |
| 125 | + minimum: 0 |
| 126 | + |
| 127 | + AssociatedProcedureDescription: |
| 128 | + type: object |
| 129 | + properties: |
| 130 | + postObjectRepair: |
| 131 | + $ref: '#/components/schemas/PostObjectRepair' |
| 132 | + mbsObjectRepair: |
| 133 | + $ref: '#/components/schemas/MbsObjectRepair' |
| 134 | + |
| 135 | + PostObjectRepair: |
| 136 | + type: object |
| 137 | + properties: |
| 138 | + serviceURIs: |
| 139 | + type: array |
| 140 | + items: |
| 141 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/Uri' |
| 142 | + offsetTime: |
| 143 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DurationSec' |
| 144 | + randomTimePeriod: |
| 145 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DurationSec' |
| 146 | + |
| 147 | + MbsObjectRepair: |
| 148 | + type: object |
| 149 | + properties: |
| 150 | + sessionDescriptionURI: |
| 151 | + type: string |
| 152 | + |
| 153 | + ScheduleDescription: |
| 154 | + type: array |
| 155 | + items: |
| 156 | + $ref: '#/components/schemas/ServiceSchedule' |
| 157 | + |
| 158 | + ServiceSchedule: |
| 159 | + type: object |
| 160 | + properties: |
| 161 | + sessionSchedule: |
| 162 | + $ref: '#/components/schemas/SessionSchedule' |
| 163 | + sessionScheduleOverride: |
| 164 | + $ref: '#/components/schemas/SessionScheduleOverride' |
| 165 | + objectSchedule: |
| 166 | + $ref: '#/components/schemas/ObjectSchedule' |
| 167 | + serviceId: |
| 168 | + type: string |
| 169 | + serviceClass: |
| 170 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/Uri' |
| 171 | + required: |
| 172 | + - serviceId |
| 173 | + - serviceClass |
| 174 | + - serviceSchedule |
| 175 | + |
| 176 | + SessionSchedule: |
| 177 | + type: array |
| 178 | + items: |
| 179 | + type: object |
| 180 | + properties: |
| 181 | + start: |
| 182 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime' |
| 183 | + stop: |
| 184 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime' |
| 185 | + reoccurencePattern: |
| 186 | + type: string |
| 187 | + numberOfTimes: |
| 188 | + type: integer |
| 189 | + minimum: 1 |
| 190 | + reoccurenceStopTime: |
| 191 | + type: string |
| 192 | + index: |
| 193 | + type: integer |
| 194 | + FDTInstanceURI: |
| 195 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/Uri' |
| 196 | + required: |
| 197 | + - start |
| 198 | + - stop |
| 199 | + SessionScheduleOverride: |
| 200 | + type: array |
| 201 | + items: |
| 202 | + type: object |
| 203 | + properties: |
| 204 | + start: |
| 205 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime' |
| 206 | + stop: |
| 207 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime' |
| 208 | + index: |
| 209 | + type: integer |
| 210 | + cancelled: |
| 211 | + type: boolean |
| 212 | + sessionDescriptionURI: |
| 213 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/Uri' |
| 214 | + |
| 215 | + ObjectSchedule: |
| 216 | + type: array |
| 217 | + items: |
| 218 | + type: object |
| 219 | + properties: |
| 220 | + objectURI: |
| 221 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/Uri' |
| 222 | + sessionId: |
| 223 | + type: string |
| 224 | + objectEtag: |
| 225 | + type: string |
| 226 | + unicastOnly: |
| 227 | + type: boolean |
| 228 | + deliveryInfo: |
| 229 | + type: array |
| 230 | + items: |
| 231 | + type: object |
| 232 | + properties: |
| 233 | + start: |
| 234 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime' |
| 235 | + stop: |
| 236 | + $ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime' |
0 commit comments