{ "type": "object", "description": "An SSM Parameter Store parameter containing configuration data.", "properties": { "Name": { "type": "string", "description": "The name of the parameter." }, "Type": { "type": "string", "description": "The type of parameter.", "enum": [ "String", "StringList", "SecureString" ] }, "Value": { "type": "string", "description": "The parameter value." }, "Version": { "type": "integer", "description": "The parameter version." }, "ARN": { "type": "string", "description": "The Amazon Resource Name (ARN) of the parameter." }, "LastModifiedDate": { "type": "string", "format": "date-time", "description": "Date the parameter was last changed or updated." }, "DataType": { "type": "string", "description": "The data type of the parameter." }, "Selector": { "type": "string", "description": "Either the version number or the label used to retrieve the parameter value." }, "SourceResult": { "type": "string", "description": "The raw result or response from the source." } }, "required": [ "Name", "Type", "Value", "Version" ], "$schema": "http://json-schema.org/draft-07/schema#", "title": "Parameter" }