openapi: 3.0.1 info: description: This contains the version API that provides information about the exact version of the APIs exposed by the runtime title: Version API paths: /v1/version: get: description: Gets the versions exposed by the runtime operationId: getVersion responses: "200": content: application/json: schema: type: array items: $ref: "#/components/schemas/VersionRecord" description: The version contexts tags: - Version components: schemas: VersionRecord: type: object properties: lastUpdated: type: string format: date-time maturity: type: string urlPath: type: string version: type: string