University of California, Los Angeles Production Calendar Jobs API

The Production Calendar Jobs API from University of California, Los Angeles — 1 operation(s) for production calendar jobs.

Operations 1

GET /productioncalendarjobs/mainframe/{JobRunDate}/{NumberOfWeeksFromJobRunDate}/v1 Gets the Production Calendar Mainframe jobs #

Documentation

Specifications

Schemas & Data

Other Resources

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/ucla-production-calendar-jobs-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

ucla-production-calendar-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: version v1 Production Calendar Jobs API
servers:
- url: https://api.ucla.edu/sis
security:
- application: []
tags:
- name: Production Calendar Jobs
paths:
  /productioncalendarjobs/mainframe/{JobRunDate}/{NumberOfWeeksFromJobRunDate}/v1:
    get:
      tags:
      - Production Calendar Jobs
      summary: Gets the Production Calendar Mainframe jobs
      operationId: Mainframe_GetMainframeJobs
      parameters:
      - name: JobRunDate
        in: path
        description: The Year-Month-Day to start the job search for
        required: true
        schema:
          type: string
      - name: NumberOfWeeksFromJobRunDate
        in: path
        description: The number of weeks from the start date to get jobs for
        required: true
        schema:
          type: string
      - name: TermCode
        in: query
        description: 21W
        required: false
        schema:
          type: string
      - name: JobStartDate
        in: query
        description: '2020-08-24'
        required: false
        schema:
          type: string
      - name: PageNumber
        in: query
        description: '1'
        required: false
        schema:
          type: integer
          format: int32
      - name: PageSize
        in: query
        description: Default 10.<br />Pass 0 to get all records.
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Record(s) found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MainframeResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/MainframeResponse'
        ' 200':
          description: Record(s) found
        ' 400':
          description: Bad Request
        ' 401':
          description: Unauthorized
        ' 403':
          description: Forbidden
        ' 404':
          description: No Record Found
        ' 500':
          description: Server Error
      deprecated: false
components:
  schemas:
    Jobs:
      type: object
      properties:
        termCode:
          type: string
        network:
          type: string
        networkType:
          type: string
        jobSequenceNumber:
          type: string
        jobName:
          type: string
        jobDescription:
          type: string
        parameterCode:
          type: string
        parameterValue:
          type: string
        jobStartDate:
          type: string
        jobEndDate:
          type: string
        mainframeStartDate:
          type: string
        mainframeEndDate:
          type: string
        weekdayRun:
          type: string
        comments:
          type: string
    LinkModel:
      type: object
      properties:
        href:
          type: string
        rel:
          type: string
        method:
          type: string
    MainframeResponse:
      type: object
      properties:
        jobRunDate:
          type: string
        numberOfWeeksFromJobRunDate:
          format: int32
          type: integer
        productionCalendarJobsCollection:
          type: array
          items:
            $ref: '#/components/schemas/Jobs'
        totalRecords:
          format: int32
          type: integer
        totalPages:
          format: int32
          type: integer
        pageNumber:
          format: int32
          type: integer
        pageSize:
          format: int32
          type: integer
        links:
          type: array
          items:
            $ref: '#/components/schemas/LinkModel'
  securitySchemes:
    application:
      type: oauth2
      flows:
        clientCredentials:
          scopes:
            read: Read access to protected resources
            write: Write access to protected resources
          tokenUrl: https://api.ucla.edu/oauth/client_credential/accesstoken?grant_type=client_credentials
      description: OAuth2