Terabase Energy Module API

The Module API from Terabase Energy — 9 operation(s) for module.

Operations 12

GET /Module/{id} Get a Module by Id.
DELETE /Module/{id} Delete a Module by Id.
PUT /Module/{id} Update a Module.
GET /Module Get a list of Modules to which you have access.
POST /Module Create a new Module.
GET /Module/ModuleOverview Get overview data for all Modules for which you have access.
POST /Module/CheckMatch Pre-save content-match check (PP-2570). Returns the accessible library record whose content matches the posted module - selected by status hierarchy Global > Active > Draft-Private
GET /Module/{moduleId}/Note Get the Notes for a Module by Module Id.
DELETE /Module/{moduleId}/Note/{noteId} Delete a Note for a Module by Note Id and Module Id.
GET /Module/DefaultIAM Get the default IAM (Incidence Angle Modifier).
POST /Module/Status Update the Status of a list of Modules by list of Ids.
POST /Module/Generator/ParseIVCurvePoints Parses the provided IVCurvePoints template and returns the minimum inputs required for the /ProcessIVCurvePoints endpoint.

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/terabase-energy-module-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 email required.

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

OpenAPI Specification

terabase-energy-module-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Terabase Energy Module API
  version: current
  contact:
    name: PlantPredict Support
    url: https://plantpredict.com/contact/
    email: support@plantpredict.com
  description: 'Operations tagged Module across 2 of this provider''s published API definitions: terabase-energy-module-api-openapi.yml, terabase-energy-plantpredict-swagger-v1-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.plantpredict.terabase.energy
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- Bearer: []
tags:
- name: Module
paths:
  /Module/{id}:
    get:
      tags:
      - Module
      summary: Get a Module by Id.
      parameters:
      - name: id
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.Module'
            application/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.Module'
            text/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.Module'
    delete:
      tags:
      - Module
      summary: Delete a Module by Id.
      parameters:
      - name: id
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
    put:
      tags:
      - Module
      summary: Update a Module.
      description: This operation may attach a X-Message header on the response carrying an informational message about the updated entity.
      parameters:
      - name: id
        in: path
        description: Module ID from URL
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          application/json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          text/json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          application/*+json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
      responses:
        '200':
          description: OK
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module:
    get:
      tags:
      - Module
      summary: Get a list of Modules to which you have access.
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.Module'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.Module'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.Module'
    post:
      tags:
      - Module
      summary: Create a new Module.
      description: This operation may attach a X-Message header on the response carrying an informational message about the new entity.
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          application/json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          text/json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          application/*+json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.CreateEntityInfo'
            application/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.CreateEntityInfo'
            text/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.CreateEntityInfo'
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module/ModuleOverview:
    get:
      tags:
      - Module
      summary: Get overview data for all Modules for which you have access.
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleItem'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleItem'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleItem'
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module/CheckMatch:
    post:
      tags:
      - Module
      summary: 'Pre-save content-match check (PP-2570). Returns the accessible library record whose

        content matches the posted module - selected by status hierarchy Global > Active >

        Draft-Private > Draft-Shared - or null when nothing matches. Name is excluded from

        identity; Retired records never match. Persists nothing.'
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          application/json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          text/json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
          application/*+json:
            schema:
              $ref: '#/components/schemas/PlantPredict.Entities.Module'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.AssetMatchResult'
            application/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.AssetMatchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.AssetMatchResult'
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module/{moduleId}/Note:
    get:
      tags:
      - Module
      summary: Get the Notes for a Module by Module Id.
      parameters:
      - name: moduleId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.Note'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.Note'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.Note'
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module/{moduleId}/Note/{noteId}:
    delete:
      tags:
      - Module
      summary: Delete a Note for a Module by Note Id and Module Id.
      parameters:
      - name: moduleId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int64
      - name: noteId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: boolean
            application/json:
              schema:
                type: boolean
            text/json:
              schema:
                type: boolean
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module/DefaultIAM:
    get:
      tags:
      - Module
      summary: Get the default IAM (Incidence Angle Modifier).
      description: See https://plantpredict.com/algorithm/optical-losses/
      parameters:
      - name: ASHRAEIAM
        in: query
        description: ''
        schema:
          type: number
          format: double
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleIAMInfo'
            application/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleIAMInfo'
            text/json:
              schema:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleIAMInfo'
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module/Status:
    post:
      tags:
      - Module
      summary: Update the Status of a list of Modules by list of Ids.
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.Asset'
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.Asset'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.Asset'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/PlantPredict.Entities.DTO.Asset'
      responses:
        '200':
          description: OK
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /Module/Generator/ParseIVCurvePoints:
    post:
      tags:
      - Module
      summary: Parses the provided IVCurvePoints template and returns the minimum inputs required for the /ProcessIVCurvePoints endpoint.
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
            encoding:
              file:
                style: form
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleIVCurve'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleIVCurve'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PlantPredict.Entities.DTO.ModuleIVCurve'
    servers:
    - url: https://api.plantpredict.terabase.energy
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    PlantPredict.Entities.DTO.ModuleItemApplicationUser:
      type: object
      properties:
        firstName:
          type:
          - string
          - 'null'
        lastName:
          type:
          - string
          - 'null'
      additionalProperties: false
    PlantPredict.Entities.Authentication.Company:
      required:
      - name
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          maxLength: 100
          minLength: 1
          type: string
        countryId:
          type:
          - integer
          - 'null'
          format: int32
        country:
          $ref: '#/components/schemas/PlantPredict.Entities.Country'
        users:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PlantPredict.Entities.Authentication.ApplicationUser'
        companyType:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.CompanyTypeEnum'
        status:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.CompanyStatusEnum'
        configurationSettings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PlantPredict.Entities.ConfigurationSetting'
        defaultSettings:
          $ref: '#/components/schemas/PlantPredict.Entities.Authentication.DefaultSettings'
        createdDateUtc:
          type:
          - string
          - 'null'
          format: date-time
        uuid:
          type:
          - string
          - 'null'
        subscriptionType:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.SubscriptionType'
        monthlyLicenseFee:
          type: number
          format: double
        subscriptionInterval:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.SubscriptionInterval'
        customerSegment:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.CustomerSegment'
        subscriptionExpirationDate:
          type:
          - string
          - 'null'
          format: date-time
        costCenter:
          type:
          - string
          - 'null'
        salesForceId:
          type:
          - string
          - 'null'
        maxUsers:
          type:
          - integer
          - 'null'
          format: int32
        migrationAgreementAcceptance:
          type:
          - boolean
          - 'null'
        allowAPIAccessOverride:
          type: boolean
        isAlphaTester:
          type: boolean
        allowMercatorAccess:
          type: boolean
        allowMcpServerAccess:
          type: boolean
        allowTerrainProExtensions:
          type: boolean
        allowPVRADARExtension:
          type: boolean
        pvradExtensionCredentialsGeneratedUTC:
          type:
          - string
          - 'null'
          format: date-time
        allowPowerUQExtension:
          type: boolean
        powerUQCredentialsGeneratedUTC:
          type:
          - string
          - 'null'
          format: date-time
        migrationAgreementResponseDate:
          type:
          - string
          - 'null'
          format: date-time
        superAdminMigrationAgreementAcceptance:
          type:
          - boolean
          - 'null'
        superAdminMigrationAgreementResponseDate:
          type:
          - string
          - 'null'
          format: date-time
        freeTrialExpirationDate:
          type:
          - string
          - 'null'
          format: date-time
        freeTrialRedeemedOnDateUTC:
          type:
          - string
          - 'null'
          format: date-time
        canRedeemFreeTrial:
          type: boolean
          readOnly: true
        autoRenew:
          type: boolean
        autoRenewUpdateDateUTC:
          type:
          - string
          - 'null'
          format: date-time
        extensionsFreeTrialExpirationDate:
          type:
          - string
          - 'null'
          format: date-time
        isSSO:
          type: boolean
        cognito_SSO_IDP_Name:
          type:
          - string
          - 'null'
        hasDedicatedEngines:
          type: boolean
        engineQueueInfo:
          $ref: '#/components/schemas/PlantPredict.Entities.Authentication.EngineQueueInfo'
        stripeCustomerIdentifier:
          type:
          - string
          - 'null'
        isSubscriptionActive:
          type: boolean
          readOnly: true
        contactName:
          type:
          - string
          - 'null'
        contactEmail:
          type:
          - string
          - 'null'
        activeUsers:
          type: integer
          format: int32
        availableLicenses:
          type: integer
          format: int32
        hasExperimentalFeatureAccess:
          type: boolean
          readOnly: true
        hasApiAccess:
          type: boolean
          readOnly: true
        allowTerrainProAccess:
          type: boolean
          readOnly: true
      additionalProperties: false
    PlantPredict.Entities.Authentication.CPRAPISettings:
      type: object
      properties:
        apiKey:
          type:
          - string
          - 'null'
        userName:
          maxLength: 100
          type:
          - string
          - 'null'
        password:
          maxLength: 100
          type:
          - string
          - 'null'
        licenseNumber:
          maxLength: 100
          type:
          - string
          - 'null'
      additionalProperties: false
    PlantPredict.Entities.DTO.CreateEntityInfo:
      type: object
      properties:
        id:
          type: integer
          format: int64
        match:
          $ref: '#/components/schemas/PlantPredict.Entities.DTO.AssetMatchResult'
      additionalProperties: false
    PlantPredict.Entities.Enums.MaxNumOfTablesPerColumnOptions:
      enum:
      - 2
      - 3
      - 4
      - 5
      - 6
      - 7
      - 8
      type: integer
      format: int32
    PlantPredict.Entities.Enums.DefaultDegradation:
      enum:
      - 0
      - 1
      type: integer
      format: int32
    PlantPredict.Entities.Module:
      required:
      - ashraeiamB0
      - bandgapVoltage
      - builtInVoltage
      - cellTechnologyType
      - cellToModuleTempDiff
      - constructionType
      - darkShuntResistance
      - diodeIdealityFactorAtSTC
      - exponentialDependencyOnShuntResistance
      - faciality
      - heatAbsorptionCoefAlphaT
      - heatBalanceConductiveCoef
      - heatBalanceConvectiveCoef
      - length
      - lightInducedDegradation
      - linearDegradationRate
      - linearTempDependenceOnGamma
      - linearTempDependenceOnIsc
      - moduleMismatchCoefficient
      - moduleQuality
      - moduleShadingResponse
      - pvModel
      - recombinationParameter
      - referenceIrradiance
      - referenceTemperature
      - sandiaConductiveCoef
      - sandiaConvectiveCoef
      - saturationCurrentAtSTC
      - seriesResistanceAtSTC
      - shortCircuitCurrentAtSTC
      - shuntResistanceAtSTC
      - spectralResponse
      - stcEfficiency
      - stcMaxPower
      - stcmppCurrent
      - stcmppVoltage
      - stcOpenCircuitVoltage
      - stcOpenCircuitVoltageTempCoef
      - stcPowerTempCoef
      - stcShortCircuitCurrent
      - stcShortCircuitCurrentTempCoef
      - width
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          maxLength: 250
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        companyId:
          type: integer
          format: int32
        company:
          $ref: '#/components/schemas/PlantPredict.Entities.Authentication.Company'
        ownerId:
          type: integer
          format: int32
        owner:
          $ref: '#/components/schemas/PlantPredict.Entities.Authentication.ApplicationUser'
        createdDate:
          type: string
          format: date-time
        lastModified:
          type: string
          format: date-time
        lastModifiedById:
          type: integer
          format: int32
        lastModifiedBy:
          $ref: '#/components/schemas/PlantPredict.Entities.Authentication.ApplicationUser'
        status:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.LibraryStatusEnum'
        model:
          maxLength: 100
          type:
          - string
          - 'null'
        manufacturer:
          maxLength: 100
          type:
          - string
          - 'null'
        length:
          maximum: 10000
          minimum: 0
          type: number
          format: double
        width:
          maximum: 10000
          minimum: 0
          type: number
          format: double
        weight:
          maximum: 100
          minimum: 0
          type:
          - number
          - 'null'
          format: double
        defaultOrientation:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.ModuleOrientation'
        numberOfCellsInSeries:
          maximum: 1000
          minimum: 0
          type: integer
          format: int32
        numberOfCellsInParallel:
          maximum: 100
          minimum: 0
          type: integer
          format: int32
        stcShortCircuitCurrent:
          maximum: 100
          minimum: 0.1
          type: number
          format: double
        stcOpenCircuitVoltage:
          maximum: 1000
          minimum: 0.4
          type: number
          format: double
        stcmppCurrent:
          maximum: 100
          minimum: 0.1
          type: number
          format: double
        stcmppVoltage:
          maximum: 1000
          minimum: 0.4
          type: number
          format: double
        stcMaxPower:
          maximum: 1000
          minimum: 0
          type: number
          format: double
        stcPowerTempCoef:
          maximum: 3
          minimum: -3
          type: number
          format: double
        stcShortCircuitCurrentTempCoef:
          maximum: 2
          minimum: -0.3
          type: number
          format: double
        stcOpenCircuitVoltageTempCoef:
          maximum: 3
          minimum: -3
          type: number
          format: double
        stcEfficiency:
          maximum: 100
          minimum: 0
          type: number
          format: double
        minTolerance:
          maximum: 15
          minimum: -15
          type:
          - number
          - 'null'
          format: double
        maxTolerance:
          maximum: 15
          minimum: -15
          type:
          - number
          - 'null'
          format: double
        cellTechnologyType:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.CellTechnologyTypeEnum'
        constructionType:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.ConstructionTypeEnum'
        faciality:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.FacialityEnum'
        bifacialityFactor:
          maximum: 100
          minimum: 0
          type:
          - number
          - 'null'
          format: double
        transmissionFactor:
          maximum: 100
          minimum: 0
          type:
          - number
          - 'null'
          format: double
        backSideMismatch:
          maximum: 100
          minimum: 0
          type:
          - number
          - 'null'
          format: double
        dataSource:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.DataSourceType'
        lightInducedDegradation:
          maximum: 10
          minimum: -10
          type: number
          format: double
        moduleQuality:
          maximum: 99
          minimum: -200
          type: number
          format: double
        moduleMismatchCoefficient:
          maximum: 30
          minimum: 0
          type: number
          format: double
        heatBalanceConvectiveCoef:
          maximum: 100
          minimum: 0
          type: number
          format: double
        heatBalanceConductiveCoef:
          maximum: 100
          minimum: 0
          type: number
          format: double
        sandiaConductiveCoef:
          maximum: 0
          minimum: -5
          type: number
          format: double
        sandiaConvectiveCoef:
          maximum: 0
          minimum: -1
          type: number
          format: double
        cellToModuleTempDiff:
          maximum: 15
          minimum: 0
          type: number
          format: double
        saturationCurrentAtSTC:
          type: number
          format: double
        seriesResistanceAtSTC:
          maximum: 100
          minimum: 0
          type: number
          format: double
        shuntResistanceAtSTC:
          maximum: 100000
          minimum: 0
          type: number
          format: double
        diodeIdealityFactorAtSTC:
          maximum: 5
          minimum: 0.1
          type: number
          format: double
        exponentialDependencyOnShuntResistance:
          maximum: 100
          minimum: 1
          type: number
          format: double
        darkShuntResistance:
          maximum: 1000000
          minimum: 100
          type: number
          format: double
        linearTempDependenceOnGamma:
          maximum: 3
          minimum: -3
          type: number
          format: double
        shortCircuitCurrentAtSTC:
          maximum: 100
          minimum: 0.1
          type: number
          format: double
        recombinationParameter:
          maximum: 30
          minimum: -1
          type: number
          format: double
        builtInVoltage:
          maximum: 3
          minimum: 0
          type: number
          format: double
        bandgapVoltage:
          maximum: 4
          minimum: 0.5
          type: number
          format: double
        linearTempDependenceOnIsc:
          maximum: 3
          minimum: -1
          type: number
          format: double
        heatAbsorptionCoefAlphaT:
          maximum: 1
          minimum: 0.1
          type: number
          format: double
        referenceIrradiance:
          maximum: 2000
          minimum: 0
          type: number
          format: double
        referenceTemperature:
          maximum: 80
          minimum: -10
          type: number
          format: double
        aGamma:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        bGamma:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        cGamma:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        dGamma:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        spectralResponse:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.SpectralResponseEnum'
        pvModel:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.PvModelType'
        useDefaultSandiaIAM:
          type: boolean
        useDefaultTabularIAM:
          type: boolean
        sandiaSpectralA0:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        sandiaSpectralA1:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        sandiaSpectralA2:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        sandiaSpectralA3:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        sandiaSpectralA4:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        sandiaIAMB0:
          maximum: 10
          minimum: 0
          type:
          - number
          - 'null'
          format: double
        sandiaIAMB1:
          maximum: 0
          minimum: -2
          type:
          - number
          - 'null'
          format: double
        sandiaIAMB2:
          maximum: 2
          minimum: 0
          type:
          - number
          - 'null'
          format: double
        sandiaIAMB3:
          maximum: 0
          minimum: -2
          type:
          - number
          - 'null'
          format: double
        sandiaIAMB4:
          maximum: 2
          minimum: 0
          type:
          - number
          - 'null'
          format: double
        sandiaIAMB5:
          maximum: 0
          minimum: -2
          type:
          - number
          - 'null'
          format: double
        ashraeiamB0:
          maximum: 1
          minimum: 0
          type: number
          format: double
        spectral2B0:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        spectral2B1:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        spectral2B2:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        spectral2B3:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        spectral2B4:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        spectral2B5:
          maximum: 1
          minimum: -1
          type:
          - number
          - 'null'
          format: double
        iamFactors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PlantPredict.Entities.Types.IAMFactor'
        degradationModel:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.ModuleDegradationModel'
        linearDegradationRate:
          maximum: 5
          minimum: 0
          type: number
          format: double
        nonLinearDegradationRates:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PlantPredict.Entities.Types.NonLinearDegradationRate'
        cellDesignType:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.CellDesignType'
        useAntiReflectiveCoating:
          type: boolean
        refractiveIndex:
          maximum: 1.7
          minimum: 1.3
          type: number
          format: double
        refractiveIndexOfARC:
          maximum: 2.5
          minimum: 1
          type: number
          format: double
        glazingExtinctionCoef:
          minimum: 0
          type: number
          format: double
        glazingThickness:
          minimum: 0
          type: number
          format: double
        sandiaAFactors:
          type:
          - array
          - 'null'
          items:
            type: number
            format: double
          readOnly: true
        sandiaBFactors:
          type:
          - array
          - 'null'
          items:
            type: number
            format: double
          readOnly: true
        powerAtSTC:
          type: number
          format: double
        powerAtSTCExcludingWiringLosses:
          type: number
          format: double
        effectiveIrradianceResponse:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PlantPredict.Entities.DTO.EfficiencyDetails'
        electricalShadingFractionalEffect:
          maximum: 100
          minimum: 0
          type: number
          format: double
        moduleShadingResponse:
          $ref: '#/components/schemas/PlantPredict.Entities.Enums.ModuleShadingResponse'
        isMetastable:
          type: boolean
        metastabilityProperties:
          $ref: '#/components/schemas/PlantPredict.Entities.Meta

# --- truncated at 32 KB (93 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/terabase-energy/refs/heads/main/openapi/terabase-energy-module-api-openapi.yml