{
    "$schema": "http://json-schema.org/schema#",
    "title": "Distribution DCAT Properties Aspect",
    "description": "The [DCAT Distribution](https://www.w3.org/TR/vocab-dcat/#class-distribution) properties represented as strings.  This aspect is intended to be quite permissive of arbitrary property values, even those that may be difficult or impossible to interpret.",
    "type": "object",
    "properties": {
        "title": {
            "title": "A name given to the distribution.",
            "type": "string"
        },
        "description": {
            "title": "Free-text account of the distribution.",
            "type": "string"
        },
        "issued": {
            "title": "Date of formal issuance (e.g., publication) of the distribution.",
            "type": "string",
            "format": "date-time"
        },
        "modified": {
            "title": "Most recent date on which the distribution was changed, updated or modified.",
            "type": "string",
            "format": "date-time"
        },
        "license": {
            "title": "The license under which the distribution is made available.",
            "type": "string"
        },
        "rights": {
            "title": "Information about rights held in and over the distribution.",
            "type": "string"
        },
        "accessURL": {
            "title": "A landing page, feed, SPARQL endpoint or other type of resource that gives access to the distribution of the dataset.",
            "type": "string"
        },
        "accessNotes": {
            "title": "Instructions on how to access information in the access URL.",
            "type": "string"
        },
        "downloadURL": {
            "title": "A file that contains the distribution of the dataset in a given format.",
            "type": "string"
        },
        "byteSize": {
            "title": "The size of a distribution in bytes.",
            "type": "number"
        },
        "mediaType": {
            "title": "The media type of the distribution as defined by IANA.",
            "type": "string"
        },
        "format": {
            "title": "The file format of the distribution.",
            "type": "string"
        },
        "useStorageApi": {
            "title": "Whether the file is stored with internal storage API.",
            "type": "boolean"
        }
    }
}
