Amazon Signer · Schema

ListSigningJobsResponse

ListSigningJobsResponse schema from AWS Signer API

Code SigningIoTLambdaSecurity

Properties

Name Type Description
jobs object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-signer-list-signing-jobs-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-signer/refs/heads/main/json-schema/amazon-signer-list-signing-jobs-response-schema.json",
  "title": "ListSigningJobsResponse",
  "description": "ListSigningJobsResponse schema from AWS Signer API",
  "type": "object",
  "properties": {
    "jobs": {
      "allOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/SigningJob"
          }
        },
        {
          "description": "A list of your signing jobs."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "String for specifying the next set of paginated results."
        }
      ]
    }
  }
}