{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "DxContentMetaSchema.json",
    "title": "Core schema meta-schema",
    "definitions": {
        "schemaArray": {
            "type": "array",
            "minItems": 1,
            "items": {
                "$ref": "#"
            }
        },
        "nonNegativeInteger": {
            "type": "integer",
            "minimum": 0
        },
        "nonNegativeIntegerDefault0": {
            "allOf": [
                {
                    "$ref": "#/definitions/nonNegativeInteger"
                },
                {
                    "default": 0
                }
            ]
        },
        "simpleTypes": {
            "enum": [
                "array",
                "boolean",
                "integer",
                "null",
                "number",
                "object",
                "string",
                "FormattedText",
                "SquizImage",
                "SquizLink"
            ]
        },
        "stringArray": {
            "type": "array",
            "items": {
                "type": "string"
            },
            "uniqueItems": true,
            "default": []
        },
        "ui:metadata": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
                "autoReload": {
                    "type": "boolean",
                    "description": "Whether the component should automatically reload when the input is changed",
                    "default": true
                },
                "inlineEditable": {
                    "type": "boolean",
                    "default": false,
                    "description": "Allow this property to be editable inline"
                },
                "collapsedByDefault": {
                    "type": "boolean",
                    "default": false,
                    "description": "Choose if an object grouping should be collapsed by default"
                },
                "quickOption": {
                    "type": "boolean",
                    "default": false,
                    "description": "Allow this property to be part of the Quick Options UI"
                },
                "enumWidget": {
                    "type": "string",
                    "enum": ["radio", "dropdown"],
                    "default": "dropdown",
                    "description": "Choose if the enum values are displayed as a radio button list or a dropdown"
                }
            }
        }
    },
    "type": ["object", "boolean"],
    "properties": {
        "$id": {
            "type": "string",
            "format": "uri-reference"
        },
        "ui:metadata": {
            "$ref": "#/definitions/ui:metadata"
        },
        "$schema": {
            "type": "string",
            "format": "uri"
        },
        "$ref": {
            "type": "string",
            "format": "uri-reference"
        },
        "$comment": {
            "type": "string"
        },
        "title": {
            "type": "string"
        },
        "description": {
            "type": "string"
        },
        "default": true,
        "readOnly": {
            "type": "boolean",
            "default": false
        },
        "writeOnly": {
            "type": "boolean",
            "default": false
        },
        "examples": {
            "type": "array",
            "items": true
        },
        "multipleOf": {
            "type": "number",
            "exclusiveMinimum": 0
        },
        "maximum": {
            "type": "number"
        },
        "exclusiveMaximum": {
            "type": "number"
        },
        "minimum": {
            "type": "number"
        },
        "exclusiveMinimum": {
            "type": "number"
        },
        "maxLength": {
            "$ref": "#/definitions/nonNegativeInteger"
        },
        "minLength": {
            "$ref": "#/definitions/nonNegativeIntegerDefault0"
        },
        "pattern": {
            "type": "string",
            "format": "regex"
        },
        "additionalItems": {
            "$ref": "#"
        },
        "items": {
            "anyOf": [
                {
                    "$ref": "#"
                },
                {
                    "$ref": "#/definitions/schemaArray"
                }
            ],
            "default": true
        },
        "maxItems": {
            "$ref": "#/definitions/nonNegativeInteger"
        },
        "minItems": {
            "$ref": "#/definitions/nonNegativeIntegerDefault0"
        },
        "uniqueItems": {
            "type": "boolean",
            "default": false
        },
        "contains": {
            "$ref": "#"
        },
        "maxProperties": {
            "$ref": "#/definitions/nonNegativeInteger"
        },
        "minProperties": {
            "$ref": "#/definitions/nonNegativeIntegerDefault0"
        },
        "required": {
            "$ref": "#/definitions/stringArray"
        },
        "additionalProperties": {
            "$ref": "#"
        },
        "definitions": {
            "type": "object",
            "additionalProperties": {
                "$ref": "#"
            },
            "default": {}
        },
        "properties": {
            "type": "object",
            "additionalProperties": {
                "$ref": "#"
            },
            "default": {}
        },
        "translatable": {
            "type": "boolean",
            "default": false,
            "description": "Indicates whether the field can be stored in multi-language variations"
        },
        "patternProperties": {
            "type": "object",
            "additionalProperties": {
                "$ref": "#"
            },
            "propertyNames": {
                "format": "regex"
            },
            "default": {}
        },
        "dependencies": {
            "type": "object",
            "additionalProperties": {
                "anyOf": [
                    {
                        "$ref": "#"
                    },
                    {
                        "$ref": "#/definitions/stringArray"
                    }
                ]
            }
        },
        "propertyNames": {
            "$ref": "#"
        },
        "const": true,
        "enum": {
            "type": "array",
            "items": true,
            "minItems": 1,
            "uniqueItems": true
        },
        "type": {
            "anyOf": [
                {
                    "$ref": "#/definitions/simpleTypes"
                },
                {
                    "type": "array",
                    "items": {
                        "$ref": "#/definitions/simpleTypes"
                    },
                    "minItems": 1,
                    "uniqueItems": true
                }
            ]
        },
        "format": {
            "type": "string",
            "enum": [
                "date-time",
                "email",
                "hostname",
                "ipv4",
                "ipv6",
                "json-pointer",
                "matrix-asset-uri",
                "multi-line",
                "password",
                "phone",
                "regex",
                "relative-json-pointer",
                "uri-reference",
                "uri-template",
                "uri",
                "uuid"
            ]
        },
        "matrixAssetTypes": {
            "type": "array",
            "items": {
                "type": "string",
                "$ref": "#/matrixAssetEnum"
            }
        },
        "contentMediaType": {
            "type": "string"
        },
        "contentEncoding": {
            "type": "string"
        },
        "if": {
            "$ref": "#"
        },
        "then": {
            "$ref": "#"
        },
        "else": {
            "$ref": "#"
        },
        "allOf": {
            "$ref": "#/definitions/schemaArray"
        },
        "anyOf": {
            "$ref": "#/definitions/schemaArray"
        },
        "oneOf": {
            "$ref": "#/definitions/schemaArray"
        },
        "not": {
            "$ref": "#"
        },
        "previewPlaceholder": {
            "type": ["string", "boolean"],
            "description": "Placeholder text to display in the preview"
        }
    },
    "ui:metadata": {
        "$ref": "#/definitions/ui:metadata"
    },
    "additionalProperties": false,
    "dependencies": {
        "properties": {
            "properties": {
                "required": {
                    "$ref": "#/definitions/stringArray"
                }
            },
            "required": ["required"]
        }
    },
    "matrixAssetEnum": {
        "enum": [
            "audioFile",
            "bodycopyContainer",
            "bodycopyDiv",
            "calendarEventsSearchPage",
            "contentContainerTemplate",
            "contentTypeMarkdown",
            "contentTypeNestContent",
            "contentTypeRawHtml",
            "contentTypeSnippet",
            "contentTypeWysiwyg",
            "cssFileFolder",
            "cssFile",
            "customForm",
            "dataRecord",
            "designAreaAssetLineage",
            "designAreaBody",
            "designAreaMenuNormal",
            "designAreaNestContent",
            "designCssCustomisation",
            "designCss",
            "designCustomisation",
            "designScss",
            "design",
            "docx",
            "excelDoc",
            "file",
            "folder",
            "gitBridge",
            "googleAnalyticsConnector",
            "googleAnalyticsView",
            "image",
            "jsFileFolder",
            "jsFile",
            "jsonWebToken",
            "layoutManager",
            "layout",
            "link",
            "metadataFieldDate",
            "metadataFieldRelatedAsset",
            "metadataFieldSelect",
            "metadataFieldText",
            "metadataFieldWysiwyg",
            "metadataSchema",
            "metadataSection",
            "newsItem",
            "oauthAccountManager",
            "pageAccountManager",
            "pageAssetListing",
            "pageCalendarEventsSearch",
            "pageCalendar",
            "pageContent",
            "pagePasswordReset",
            "pageRemoteContent",
            "pageRestResourceJs",
            "pageRestResourceOauthSession",
            "pageRestResourceOauthTwoLegged",
            "pageRestResource",
            "pageSiteMap",
            "pageStandard",
            "paintLayoutBodycopy",
            "paintLayoutPage",
            "pdfFile",
            "pdf",
            "persona",
            "powerpointDoc",
            "pptx",
            "redirectPage",
            "regex",
            "regularExpression",
            "rtfFile",
            "samlAccountManager",
            "saml2Acs",
            "saml2Sls",
            "searchPage",
            "site",
            "textFile",
            "TriggerTypes?",
            "userGroup",
            "wordDoc",
            "workflowSchema",
            "workflowStepCondition",
            "workflowStep",
            "workflowStream",
            "xlsx",
            "xmlFile"
        ]
    }
}
