Amazon Signer · Schema

StartSigningJobResponse

StartSigningJobResponse schema from AWS Signer API

Code SigningIoTLambdaSecurity

Properties

Name Type Description
jobId object
jobOwner object
View JSON Schema on GitHub

JSON Schema

amazon-signer-start-signing-job-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-start-signing-job-response-schema.json",
  "title": "StartSigningJobResponse",
  "description": "StartSigningJobResponse schema from AWS Signer API",
  "type": "object",
  "properties": {
    "jobId": {
      "allOf": [
        {
          "type": "string"
        },
        {
          "description": "The ID of your signing job."
        }
      ]
    },
    "jobOwner": {
      "allOf": [
        {
          "type": "string",
          "pattern": "^[0-9]{12}$",
          "minLength": 12,
          "maxLength": 12
        },
        {
          "description": "The AWS account ID of the signing job owner."
        }
      ]
    }
  }
}