Snow Software Licenses API

The Licenses API from Snow Software — 3 operation(s) for licenses.

Operations 6

GET /api/sam/v1/licenses Get Licenses #
POST /api/sam/v1/licenses Add License #
GET /api/sam/v1/licenses/{id} Get License #
PUT /api/sam/v1/licenses/{id} Replace License #
DELETE /api/sam/v1/licenses/{id} Delete License #
POST /api/sam/v1/licenses/bulk-update Bulk Update Licenses #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/snow-software-licenses-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

snow-software-licenses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 'SAM: Computers Applications Licenses API'
  description: API for interacting with computers.
  contact:
    name: Flexera
    url: https://www.flexera.com
  version: 1.0.0
servers:
- url: https://{region}.snowsoftware.io
  variables:
    region:
      enum:
      - westeurope
      - australiasoutheast
      - eastus2
      - uksouth
      default: westeurope
tags:
- name: Licenses
paths:
  /api/sam/v1/licenses:
    get:
      tags:
      - Licenses
      summary: Get Licenses
      description: Returns a collection of licenses.
      operationId: getLicenseCollection
      parameters:
      - name: filter
        in: query
        description: For more information on the available operators and which data types those operators work on, see [Filter API call results](https://docs.snowsoftware.io/snow-atlas-api/resources/get-started-with-apis/api-conventions#filter-api-call-results).
        schema:
          type: string
        example: filter=status -eq "active"
      - name: page_number
        in: query
        description: The page number.
        schema:
          type: integer
          default: 1
          minimum: 1
      - name: page_size
        in: query
        description: The maximum number of items in the response.
        schema:
          type: integer
          default: 100
          minimum: 1
      responses:
        '200':
          description: 'OK: Your request succeeded.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HateoasCollectionOfLicenseCollection'
        '400':
          description: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 400
                  message: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
        '500':
          description: 'Internal Server Error: Your request failed due to an internal error.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 500
                  message: The service encountered an unexpected condition that prevented it from fulfilling the request.
      security:
      - BearerAuth:
        - sam.license.r
    post:
      tags:
      - Licenses
      summary: Add License
      description: Creates a license.
      operationId: addLicense
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LicenseRequest'
      responses:
        '201':
          description: 'Created: Your request created something new. Usually, this is a call that used the POST method and will allow a GET method to retrieve it later.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/License'
        '400':
          description: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 400
                  message: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
        '500':
          description: 'Internal Server Error: Your request failed due to an internal error.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 500
                  message: The service encountered an unexpected condition that prevented it from fulfilling the request.
      security:
      - BearerAuth:
        - sam.license.crud
  /api/sam/v1/licenses/{id}:
    get:
      tags:
      - Licenses
      summary: Get License
      description: Returns the details of the given license.
      operationId: getLicenseById
      parameters:
      - name: id
        in: path
        required: true
        description: The unique ID of the license.
        schema:
          type: string
        example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
      responses:
        '200':
          description: 'OK: Your request succeeded.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/License'
        '400':
          description: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 400
                  message: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
        '404':
          description: 'Not Found: The operation you requested failed because a resource associated with your request could not be found.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 404
                  message: Resource with ID '32aeda0a-80dc-475a-907f-2d250a3a8614' not found.
        '500':
          description: 'Internal Server Error: Your request failed due to an internal error.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 500
                  message: The service encountered an unexpected condition that prevented it from fulfilling the request.
      security:
      - BearerAuth:
        - sam.license.r
    put:
      tags:
      - Licenses
      summary: Replace License
      description: Replaces the given license.
      operationId: replaceLicense
      parameters:
      - name: id
        in: path
        required: true
        description: The unique ID of the license.
        schema:
          type: string
        example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LicenseRequest'
      responses:
        '200':
          description: 'OK: Your request succeeded.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/License'
        '400':
          description: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 400
                  message: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
        '404':
          description: 'Not Found: The operation you requested failed because a resource associated with your request could not be found.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 404
                  message: Resource with ID '32aeda0a-80dc-475a-907f-2d250a3a8614' not found.
        '500':
          description: 'Internal Server Error: Your request failed due to an internal error.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 500
                  message: The service encountered an unexpected condition that prevented it from fulfilling the request.
      security:
      - BearerAuth:
        - sam.license.crud
    delete:
      tags:
      - Licenses
      summary: Delete License
      description: Removes the given license.
      operationId: deleteLicense
      parameters:
      - name: id
        in: path
        required: true
        description: The unique ID of the license.
        schema:
          type: string
        example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
      responses:
        '204':
          description: 'No Content: Your request succeeded, but the response message was empty.'
        '400':
          description: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 400
                  message: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
        '404':
          description: 'Not Found: The operation you requested failed because a resource associated with your request could not be found.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 404
                  message: Resource with ID '32aeda0a-80dc-475a-907f-2d250a3a8614' not found.
        '500':
          description: 'Internal Server Error: Your request failed due to an internal error.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 500
                  message: The service encountered an unexpected condition that prevented it from fulfilling the request.
      security:
      - BearerAuth:
        - sam.license.crud
  /api/sam/v1/licenses/bulk-update:
    post:
      summary: Bulk Update Licenses
      description: Modifies a collection of licenses.
      operationId: bulkUpdateLicenses
      tags:
      - Licenses
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LicenseBulkUpdateOperation'
      responses:
        '200':
          description: 'OK: Your request succeeded.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkSummaryResponse'
        '400':
          description: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 400
                  message: 'Bad Request: Your request is invalid or improperly formed. Consequently, the API server could not understand your request.'
        '500':
          description: 'Internal Server Error: Your request failed due to an internal error.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: 500
                  message: The service encountered an unexpected condition that prevented it from fulfilling the request.
      security:
      - BearerAuth:
        - sam.license.crud
      - BearerAuth:
        - sam.license.crud
components:
  schemas:
    HateoasCollectionOfLicenseCollection:
      allOf:
      - $ref: '#/components/schemas/FilteredResponseOfLicenseCollection'
      - type: object
        additionalProperties: false
        required:
        - _links
        properties:
          _links:
            type: array
            description: A collection of links to related resources.
            items:
              $ref: '#/components/schemas/Link'
    LicenseBulkUpdateOperation:
      type: object
      required:
      - scope
      - body
      properties:
        filter:
          description: For more information on the available operators and which data types those operators work on, see [Filter API call results](https://docs.snowsoftware.io/snow-atlas-api/resources/get-started-with-apis/api-conventions#filter-api-call-results).
          type: string
          example: id -eq '49cdd99f-bc16-40f9-ad40-48f12182fb30'
        scope:
          description: The scope of the update operation.
          x-enumDescriptions:
            Only: The operation is performed only on the licenses whose IDs are specified.
            All: The operation is performed on all licenses.
            AllExcept: The operation is performed on every license except those whose IDs are specified.
          type: string
          example: Only
        ids:
          description: The IDs that the operation is performed on.
          type: array
          items:
            type: string
            format: uuid
        body:
          $ref: '#/components/schemas/LicenseUpdate'
    OrganizationAssignmentRequest:
      type: object
      additionalProperties: false
      properties:
        organizationId:
          type: string
          description: The unique ID of the organization.
          format: guid
          example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
        quantity:
          type: integer
          description: The assigned quantity of licenses.
          format: int32
          example: 1
    LicenseCollection:
      allOf:
      - $ref: '#/components/schemas/HateoasResource'
      - type: object
        description: The collection of licenses.
        additionalProperties: false
        properties:
          id:
            type: string
            description: The unique ID of the license.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          organizationId:
            type:
            - string
            - 'null'
            description: The unique ID of the organization.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          applicationId:
            type:
            - string
            - 'null'
            description: The unique ID of the application.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          contractId:
            type:
            - string
            - 'null'
            description: The unique ID of the agreement.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          agreementId:
            type:
            - string
            - 'null'
            description: The unique ID of the agreement.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          metricId:
            type:
            - string
            - 'null'
            description: The unique ID of the metric.
            format: guid
            example: 5891a1d8-7fb0-45bd-b1f6-01c943f9c572
          assignmentTypeId:
            type:
            - string
            - 'null'
            description: The unique ID of the assignment type.
            format: guid
            example: 8e5d8f69-c818-4575-9a91-aebae9a9eacc
          purchaseDate:
            type: string
            description: The purchase date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          purchaseValue:
            type:
            - number
            - 'null'
            description: The purchase value.
            format: decimal
            example: 1000
          purchaseCurrency:
            type:
            - string
            - 'null'
            description: The purchase currency.
            example: USD
          quantity:
            type:
            - integer
            - 'null'
            description: The quantity.
            format: int32
            example: 1
          initialQuantity:
            type:
            - integer
            - 'null'
            description: The initial quantity.
            format: int32
            example: 1
          mediaStorage:
            type:
            - string
            - 'null'
            description: The media storage.
            example: path/to/file
          licenseProofLocation:
            type:
            - string
            - 'null'
            description: The license proof location.
            example: path/to/licenseproof
          invoiceReference:
            type:
            - string
            - 'null'
            description: The invoice reference.
            example: INV12345
          vendor:
            type:
            - string
            - 'null'
            description: The vendor.
            example: Microsoft
          externalId:
            type:
            - string
            - 'null'
            description: The external ID.
            example: EXT12345
          productDescription:
            type:
            - string
            - 'null'
            description: The product description.
            example: MSDN
          isSubscription:
            type: boolean
            description: '```true``` if is subscription; otherwise, ```false```.'
            example: true
          isCrossEdition:
            type: boolean
            description: '```true``` if is cross-edition; otherwise, ```false```.'
            example: true
          isCrossPlatform:
            type: boolean
            description: '```true``` if is cross-platform; otherwise, ```false```.'
            example: true
          isUpgrade:
            type: boolean
            description: '```true``` if is upgrade; otherwise, ```false```.'
            example: true
          isDowngrade:
            type: boolean
            description: '```true``` if is downgrade; otherwise, ```false```.'
            example: true
          isIncomplete:
            type: boolean
            description: '```true``` if is incomplete; otherwise, ```false```.'
            example: true
          incompleteReasons:
            description: The incomplete license reasons.
            example:
            - MissingApplication
            oneOf:
            - $ref: '#/components/schemas/IncompleteLicenseReason'
          updatedDate:
            type: string
            description: The updated date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          createdDate:
            type: string
            description: The created date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          subscriptionValidFrom:
            type:
            - string
            - 'null'
            description: The subscription valid from date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          subscriptionValidTo:
            type:
            - string
            - 'null'
            description: The subscription valid to date.
            format: date-time
            example: '2025-01-01T00:00:00Z'
          activeMaintenanceCost:
            type: number
            description: The active maintenance cost.
            format: decimal
            example: 1000
          totalMaintenanceCost:
            type: number
            description: The total maintenance cost.
            format: decimal
            example: 1000
          activeSupportCost:
            type: number
            description: The active support cost.
            format: decimal
            example: 1000
          totalSupportCost:
            type: number
            description: The total support cost.
            format: decimal
            example: 1000
          totalLicenseCost:
            type: number
            description: The total license cost.
            format: decimal
            example: 1000
          upgradedLicenseCount:
            type:
            - integer
            - 'null'
            description: The upgraded license count.
            format: int32
            example: 1000
          autoAllocateOnce:
            type:
            - boolean
            - 'null'
            description: '```true``` if has auto allocate once selected; otherwise, ```false```.'
            example: true
          isAutoAllocated:
            type:
            - boolean
            - 'null'
            description: '```true``` if has auto allocate selected; otherwise, ```false```.'
            example: true
          maintenanceAccordingToAgreement:
            type: boolean
            description: '```true``` if is maintenance and support periods are based on the agreement; otherwise, ```false```..'
            example: true
          skuId:
            type:
            - string
            - 'null'
            description: The unique ID of the sku.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          upgrades:
            type:
            - array
            - 'null'
            description: The collection of license upgrades.
            items:
              $ref: '#/components/schemas/LicenseCollectionUpgrade'
          status:
            type: string
            description: The status of the license.
            allOf:
            - $ref: '#/components/schemas/Status'
            example: Active
          archivedDate:
            type:
            - string
            - 'null'
            description: The archived date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
    SiteAssignmentRequest:
      type: object
      additionalProperties: false
      properties:
        organizationId:
          type: string
          description: The unique ID of the organization.
          format: guid
          example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
    BulkSummaryResponse:
      type: object
      required:
      - successCount
      - failedCount
      properties:
        successCount:
          description: The number of items that succeeded in the operation.
          type: integer
          format: int64
          example: 10
        failedCount:
          description: The number of items that failed in the operation.
          type: integer
          format: int64
          example: 10
        failed:
          description: The IDs of the failed items.
          type: array
          items:
            type: string
          example:
          - e192ea5e-363c-47e4-82e3-d2587afada8c
        failureReason:
          description: The reason the bulk operation failed.
          type: string
          example: These licenses are used as base licenses.
    Error:
      description: The error details.
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: integer
          format: int32
          description: The HTTP status code.
        message:
          type: string
          description: The error message.
    License:
      allOf:
      - $ref: '#/components/schemas/HateoasResource'
      - type: object
        additionalProperties: false
        properties:
          id:
            type: string
            description: The unique ID of the license.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          organizationId:
            type: string
            description: The unique ID of the organization.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          applicationId:
            type:
            - string
            - 'null'
            description: The unique ID of the application.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          assignmentTypeId:
            type:
            - string
            - 'null'
            description: The unique ID of the assignment type.
            format: guid
            example: 8e5d8f69-c818-4575-9a91-aebae9a9eacc
          autoAllocateOnce:
            type:
            - boolean
            - 'null'
            description: '```true``` if has auto allocate once selected; otherwise, ```false```.'
            example: true
          isAutoAllocated:
            type:
            - boolean
            - 'null'
            description: '```true``` if has auto allocate selected; otherwise, ```false```.'
            example: true
          metricId:
            type: string
            description: The unique ID of the metric.
            format: guid
            example: 5891a1d8-7fb0-45bd-b1f6-01c943f9c572
          purchaseDate:
            type: string
            description: The purchase date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          purchaseValue:
            type: number
            description: The purchase value.
            format: decimal
            example: 1000
          purchaseCurrency:
            type:
            - string
            - 'null'
            description: The purchase currency.
            example: USD
          quantity:
            type:
            - integer
            - 'null'
            description: The quantity.
            format: int32
            example: 1
          licenseKeys:
            type:
            - string
            - 'null'
            description: The license keys.
            example: 69658998-12-12031517-23
          mediaStorage:
            type:
            - string
            - 'null'
            description: The media storage.
            example: path/to/file
          licenseProofLocation:
            type:
            - string
            - 'null'
            description: The license proof location.
            example: path/to/licenseproof
          invoiceReference:
            type:
            - string
            - 'null'
            description: The invoice reference.
            example: INV12345
          vendor:
            type:
            - string
            - 'null'
            description: The vendor.
            example: Microsoft
          notes:
            type:
            - string
            - 'null'
            description: The notes.
            example: Notes
          externalId:
            type:
            - string
            - 'null'
            description: The external ID.
            example: EXT12345
          sku:
            type:
            - string
            - 'null'
            description: The stock keeping unit.
            example: ABC-12345-S-BL
          productDescription:
            type:
            - string
            - 'null'
            description: The product description.
            example: MSDN
          isSubscription:
            type: boolean
            description: '```true``` if is subscription; otherwise, ```false```.'
            example: true
          isCrossEdition:
            type: boolean
            description: '```true``` if is cross-edition; otherwise, ```false```.'
            example: true
          isCrossPlatform:
            type: boolean
            description: '```true``` if is cross-platform; otherwise, ```false```.'
            example: true
          isUpgrade:
            type: boolean
            description: '```true``` if is upgrade; otherwise, ```false```.'
            example: true
          isDowngrade:
            type: boolean
            description: '```true``` if is downgrade; otherwise, ```false```.'
            example: true
          isIncomplete:
            type: boolean
            description: '```true``` if is incomplete; otherwise, ```false```.'
            example: true
          incompleteReasons:
            description: The incomplete license reasons.
            example:
            - MissingApplication
            oneOf:
            - $ref: '#/components/schemas/IncompleteLicenseReason'
          contractId:
            type:
            - string
            - 'null'
            description: The unique ID of the agreement.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          agreementId:
            type:
            - string
            - 'null'
            description: The unique ID of the agreement.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          updatedDate:
            type: string
            description: The updated date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          createdDate:
            type: string
            description: The created date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          subscriptionValidFrom:
            type:
            - string
            - 'null'
            description: The subscription valid from date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
          subscriptionValidTo:
            type:
            - string
            - 'null'
            description: The subscription valid to date.
            format: date-time
            example: '2025-01-01T00:00:00Z'
          upgradedLicenseCount:
            type:
            - integer
            - 'null'
            description: The upgraded license count.
            format: int32
            example: 1
          maintenanceAccordingToAgreement:
            type: boolean
            description: '```true``` if is maintenance and support periods are based on the agreement; otherwise, ```false```..'
            example: true
          skuId:
            type:
            - string
            - 'null'
            description: The unique ID of the sku.
            format: guid
            example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
          hasVmUseRights:
            type:
            - boolean
            - 'null'
            description: '```true``` if has VM use rights; otherwise, ```false```.'
            example: true
          numberOfSupportedVirtualMachines:
            type:
            - integer
            - 'null'
            description: The number of supported virtual machines.
            format: int32
            example: 100
          status:
            type: string
            description: The status of the license.
            allOf:
            - $ref: '#/components/schemas/Status'
            example: Active
          archivedDate:
            type:
            - string
            - 'null'
            description: The archived date.
            format: date-time
            example: '2024-01-01T00:00:00Z'
    UserAssignmentRequest:
      type: object
      additionalProperties: false
      properties:
        userId:
          type: string
          description: The unique ID of the user.
          format: guid
          example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
    DatacenterAssignmentRequest:
      type: object
      additionalProperties: false
      properties:
        datacenterId:
          type: string
          description: The unique ID of the DCC.
          format: guid
          example: 49cdd99f-bc16-40f9-ad40-48f12182fb30
        quantity:
          type: integer
          description: The assigned quantity of licenses.
          format: int32
          example: 1
        virtualMachines:
          type:
          - array
          - 'null'
          description: The list of virtual machines.
          example:
          - 49cdd99f-bc16-40f9-ad40-48f12182fb30
          items:
            type: string
            format: guid
    IncompleteLicenseReason:
      type: integer
      description: The incomplete reason.
      x-enumFlags: true
      x-enumNames:
      - None
      - MissingApplication
      - MissingLicenseCount
      - MissingMetric
      - MissingBaseLicenses
      - InvalidSubscriptionPeriod
      - MissingValidFromToDate
      - MissingAgreementNumber
      - MissingAssignmentType
      - All
      enum:
      - 0
      - 1
      - 2
      - 4
      - 8
      - 16
      - 32
      - 64
      - 128
      - 255
    HateoasResource:
      type: object
      additionalProperties: false
      required:
      - _links
      properties:
        _links:
          type: array
          description: A collection of links to related resources.
  

# --- truncated at 32 KB (44 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/snow-software/refs/heads/main/openapi/snow-software-licenses-api-openapi.yml