{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SubscriberProvisioningPrecheckResponse", "title": "SubscriberProvisioningPrecheckResponse", "type": "object", "properties": { "message": { "type": "string", "example": "success", "description": "A textual representation of the Precheck response message containing the `infoCode` object in the case of a success response and the `errorCode` object in the case of failure." }, "info": { "type": "object", "properties": { "infoCode": { "type": "number", "example": 100, "description": "Provisioning Precheck `infoCode`." }, "description": { "type": "string", "example": "Provisioning Precheck validation successful.", "description": "A textual description of the `infoCode`." } }, "description": "A list of `ProvisioningPreCheckResponseInfo` objects." } } }