Charges

Output

AttributeTypeDescriptionAdditional

etag

string

The ETag of the resource.

array

List of charges.

partSatisfiedCount

number

Number of satisfied charges.

Optional

satisfiedCount

number

Number of satisfied charges.

Optional

totalCount

number

Total number of charges returned by the API.

Optional

unfileteredCount

number

Number of satisfied charges.

Optional

Charge Items

AttributeTypeDescriptionAdditional

acquiredOn

date

The date the property or undertaking was acquired on.

Optional

assestsCeasedReleased

string

Cease/release information about the charge. (See values below)

Optional. Possible values are:

  • property-ceased-to-belong

  • part-property-release-and-ceased-to-belong

  • part-property-released

  • part-property-ceased-to-belong

  • whole-property-released

  • multiple-filings

  • whole-property-released-and-ceased-to-belong

chargeCode

string

The charge code is a replacement of the mortgage description.

Optional

chargeNumber

number

The charge number is used to reference an individual charge.

array<object>

Classification information.

coveringInstrumentDate

date

The date by which the series of debentures were created.

Optional

createdOn

date

The date the charge was created.

Optional

deliveredOn

date

The date the charge was submitted to Companies House.

Optional

etag

string

id

string

The id of the charge.

array<object>

Transactions that have been filed for the charge.

Optional

array<object>

The resources related to this charge.

Optional

moreThanFourPersonsEntitled

boolean

Charge has more than four persons entitled.

Optional

array<object>

Details of charge or undertaking.

Optional

array<object>

People that are entitled to the charge.

Optional

resolvedOn

date

The date the issue was resolved on.

Optional

satisfiedOn

date

The date the charge was satisfied.

Optional

array<object>

Information about alterations for Scottish companies.

Optional

array<object>

Information about what is secured against this charge.

Optional

status

string

The status of the charge. (See values below)

Possible values are:

  • outstanding

  • fully-satisfied

  • part-satisfied

  • satisfied

array<object>

Transactions that have been filed for the charge.

Optional

Charge Classification

AttributeTypeDescription

description

string

Details of the charge classification.

type

string

The type of charge classification.Possible values are:

  • charge-description

  • nature-of-charge

Insolvency Cases

AttributeTypeDescriptionAdditional

caseNumber

string

The number of this insolvency case.

Optional

array

The resources related to this insolvency case.

Optional

AttributeTypeDescriptionAdditional

case

string

Link to the insolvency case data.

Optional

Particulars

AttributeTypeDescriptionAdditional

chargorActingAsBareTrustee

boolean

The chargor is acting as a bare trustee for the property.

Optional

containsFixedCharge

boolean

The charge contains a fixed charge.

Optional

containsFloatingCharge

boolean

The charge contains a floating charge.

Optional

containsNegativePledge

boolean

The charge contains a negative pledge.

Optional

description

string

Details of charge particulars.

floatingChargeCoversAll

boolean

The floating charge covers all the property or undertaking or the company.

Optional

type

string

The type of charge particulars. Possible values are:

  • short-particulars

  • charged-property-description

  • charged-property-or-undertaking-description

  • brief-description

Persons Entitled

AttributeTypeDescription

name

string

The name of the person entitled.

Scottish Alterations

AttributeTypeDescriptionAdditional

hasAlterationsToOrder

boolean

The charge has alterations to order.

Optional

hasAlterationsToProhibitions

boolean

The charge has alterations to prohibitions.

Optional

hasAlterationsToProvisions

boolean

The charge has provisions restricting the creation of further charges.

Optional

Secured Details

AttributeTypeDescription

description

string

Details of the amount or obligation secured by the charge.

type

string

The type of secured details. Possible values are:

  • amount-secured

  • obligations-secured

Transactions

AttributeTypeDescriptionAdditional

deliveredOn

date

The date the filing was submitted to Companies House.

Optional

filingType

string

Filing type which created, updated or satisfied the charge.

Optional

insolvencyCaseNumber

string

The insolvency case related to this filing.

Optional

array<object>

The resources related to this filing.

Optional

AttributeTypeDescriptionAdditional

filing

string

Link to the charge filing data.

Optional

insolvencyCase

string

Link to the insolvency case related to this filing.

Optional

AttributeTypeDescription

self

string

Link to the this charge data.

Example

{
    "etag": "abc123",
    "items": [
        {
            "acquiredOn": "2022-01-10",
            "assetsCeasedReleased": "Assets released",
            "chargeCode": "CHG123",
            "chargeNumber": 123,
            "classification": {
                "description": "Description of classification",
                "type": "Type A"
            },
            "coveringInstrumentDate": "2022-01-05",
            "createdOn": "2022-01-01",
            "deliveredOn": "2022-01-02",
            "etag": "def456",
            "id": "ID123",
            "insolvencyCases": [
                {
                    "caseNumber": "CASE456",
                    "links": [
                        {
                            "caseItem": "https://example.com/case/CASE456"
                        }
                    ]
                }
            ],
            "links": {
                "self": "https://example.com/charge/CHG123"
            },
            "moreThanFourPersonsEntitled": true,
            "particulars": {
                "chargorActingAsBareTrustee": true,
                "containsFixedCharge": false,
                "containsFloatingCharge": true,
                "containsNegativePledge": false,
                "description": "Particulars description",
                "floatingChargeCoversAll": true,
                "type": "Particulars Type"
            },
            "personsEntitled": [
                {
                    "name": "John Doe"
                },
                {
                    "name": "Jane Smith"
                }
            ],
            "resolvedOn": "2022-02-15",
            "satisfiedOn": "2022-02-20",
            "scottishAlterations": [
                {
                    "hasAlterationsToOrder": true,
                    "hasAlterationsToProhibitions": false,
                    "hasAlterationsToProvisions": true
                }
            ],
            "securedDetails": [
                {
                    "description": "Secured detail description",
                    "type": "Secured Detail Type"
                }
            ],
            "status": "Active",
            "transactions": [
                {
                    "deliveredOn": "2022-01-02",
                    "filingType": "Filing Type A",
                    "insolvencyCaseNumber": "CASE456",
                    "links": {
                        "filing": "https://example.com/filing/123",
                        "insolvencyCase": "https://example.com/case/CASE456"
                    }
                }
            ]
        }
    ],
    "partSatisfiedCount": 10,
    "satisfiedCount": 20,
    "totalCount": 30,
    "unfilteredCount": 40
}

Last updated