---
title: "Volo.Abp.Http.RemoteServiceErrorResponse"
url: "https://capalert-developer-portal.apiddpm.com/apis/national-cap-alerting-service-api-1/versions/9738bb43-d24d-4239-8917-928fe84376ca/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
---

> Full API specification: https://capalert-developer-portal.apiddpm.com/apis/national-cap-alerting-service-api-1/versions/9738bb43-d24d-4239-8917-928fe84376ca.md

# Volo.Abp.Http.RemoteServiceErrorResponse

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: National CAP Alerting Service API
  version: 1.0.0
servers:
  - url: https://capalert-api-developer.apiddpm.com
components:
  schemas:
    Volo.Abp.Http.RemoteServiceErrorInfo:
      type: object
      properties:
        code:
          type: string
          nullable: true
        message:
          type: string
          nullable: true
        details:
          type: string
          nullable: true
        data:
          type: object
          additionalProperties:
            type: object
            additionalProperties: false
          nullable: true
        validationErrors:
          type: array
          items:
            $ref: "#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo"
          nullable: true
      additionalProperties: false
    Volo.Abp.Http.RemoteServiceValidationErrorInfo:
      type: object
      properties:
        message:
          type: string
          nullable: true
        members:
          type: array
          items:
            type: string
          nullable: true
      additionalProperties: false
    Volo.Abp.Http.RemoteServiceErrorResponse:
      type: object
      properties:
        error:
          $ref: "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo"
      additionalProperties: false
```
