{ "$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-profiles-response-schema.json", "title": "ListSigningProfilesResponse", "description": "ListSigningProfilesResponse schema from AWS Signer API", "type": "object", "properties": { "profiles": { "allOf": [ { "type": "array", "items": { "$ref": "#/components/schemas/SigningProfile" } }, { "description": "A list of profiles that are available in the AWS account. This includes profiles with the status of CANCELED if the includeCanceled parameter is set to true." } ] }, "nextToken": { "allOf": [ { "type": "string" }, { "description": "Value for specifying the next set of paginated results to return." } ] } } }