Commit 789c61bd authored by bradburyr's avatar bradburyr
Browse files

Moved enumerateProvisioningSessions operation first to match order in TS 26.510 clauses and tables.

parent c7050a8c
Loading
Loading
Loading
Loading
+22 −22
Original line number Diff line number Diff line
@@ -28,6 +28,28 @@ security:

paths:
  /provisioning-sessions:
    get:
      operationId: enumerateProvisioningSessions
      summary: "Retrieve a list of Provisioning Session resource identifiers currently registered with the Media AF"
      responses:
        '200': # OK
          description: "Success"
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: 'TS26510_CommonData.yaml#/components/schemas/ResourceId'
        '400': # Bad Request: The syntax of the HTTP request is malformed in a way not covered by one of the following more specific client errors
          $ref: 'TS29571_CommonData.yaml#/components/responses/400'
        '413': # Payload Too Large: No request body allowed for this operation
          $ref: 'TS29571_CommonData.yaml#/components/responses/413'
        '500': # Internal Server Error
          $ref: 'TS29571_CommonData.yaml#/components/responses/500'
        '503': # Service Unavailable
          $ref: 'TS29571_CommonData.yaml#/components/responses/503'
        default:
          $ref: 'TS29571_CommonData.yaml#/components/responses/default'
    post:
      operationId: createProvisioningSession
      summary: 'Create a new Provisioning Session'
@@ -58,28 +80,6 @@ paths:
          $ref: 'TS29571_CommonData.yaml#/components/responses/503'
        default:
          $ref: 'TS29571_CommonData.yaml#/components/responses/default'
    get:
      operationId: enumerateProvisioningSessions
      summary: "Retrieve a list of Provisioning Session resource identifiers currently registered with the Media AF"
      responses:
        '200': # OK
          description: "Success"
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: 'TS26510_CommonData.yaml#/components/schemas/ResourceId'
        '400': # Bad Request: The syntax of the HTTP request is malformed in a way not covered by one of the following more specific client errors
          $ref: 'TS29571_CommonData.yaml#/components/responses/400'
        '413': # Payload Too Large: No request body allowed for this operation
          $ref: 'TS29571_CommonData.yaml#/components/responses/413'
        '500': # Internal Server Error
          $ref: 'TS29571_CommonData.yaml#/components/responses/500'
        '503': # Service Unavailable
          $ref: 'TS29571_CommonData.yaml#/components/responses/503'
        default:
          $ref: 'TS29571_CommonData.yaml#/components/responses/default'

  /provisioning-sessions/{provisioningSessionId}:
    parameters: