Dublin Core

QName: f:dublincore

Applies metadata properties to your definition to enable it to support the Dublin Core Metadata Initiative standard. For information on Dublin Core, please visit: http://dublincore.org/.

The feature is defined as shown here:

{
    "_qname": "f:dublincore",
    "_type": "d:feature",
    "type": "object",
    "title": "Dublin Core",
    "properties": {
        "dublincore": {
            "type": "object",
            "title": "Dublin Core Properties",
            "properties": {
                "title": {
                    "type": "string",
                    "title": "Title"
                },
                "creator": {
                    "type": "string",
                    "title": "Creator"
                },
                "subject": {
                    "type": "string",
                    "title": "Subject"
                },
                "description": {
                    "type": "string",
                    "title": "Description"
                },
                "publisher": {
                    "type": "string",
                    "title": "Publisher"
                },
                "other_contributor": {
                    "type": "string",
                    "title": "Other Contributor"
                },
                "date": {
                    "type": "string",
                    "title": "Date"
                },
                "type": {
                    "type": "string",
                    "title": "Type"
                },
                "format": {
                    "type": "string",
                    "title": "Format"
                },
                "identifier": {
                    "type": "string",
                    "title": "Identifier"
                },
                "language": {
                    "type": "string",
                    "title": "Language"
                },
                "relation": {
                    "type": "string",
                    "title": "Relation"
                },
                "coverage": {
                    "type": "string",
                    "title": "Coverage"
                },
                "rights_management": {
                    "type": "string",
                    "title": "Rights Management"
                }
            }
        }
    },
    "mandatoryFeatures": {
        "f:extractable": {
        }
    }
}

Configuration

There are no configuration properties for this feature.

Example

{
    "title": "My Document",
    "dublincore": {
        "title": "Sample Title",
        "creator": "Joe Smith",
        "subject": "Sample Subject",
        ...
    },
    "_features": {
        "f:dublincore": {
        }
    }
}