Added Resources
This commit is contained in:
parent
0798a884cc
commit
b5e4d86c56
|
@ -1,9 +1,15 @@
|
|||
# Modules
|
||||
|
||||
This is a list of installed modules used for the arcHIVE project
|
||||
|
||||
## License types
|
||||
|
||||
Adds a dropdown to select licenses.
|
||||
|
||||
https://git.hangar.org/arcHIVE-tech/Omeka-License-Types
|
||||
|
||||
## Numeric Data Type
|
||||
|
||||
Adds a datepicker
|
||||
|
||||
https://omeka.org/s/docs/user-manual/modules/numericdatatypes/
|
||||
|
|
|
@ -0,0 +1,56 @@
|
|||
# Resouce templates
|
||||
|
||||
Resources describe content.
|
||||
|
||||
json files in `./docs/resources/` can be used to import these resources.
|
||||
|
||||
## ArcHIVE_Base template
|
||||
|
||||
A list of properties that are commons to all arcHIVE resources
|
||||
|
||||
* Title: dcterms:title ✓
|
||||
* Author: (artist, collective, scientist...) dcterms:creator ✓
|
||||
* Date: dcterms:date Numeric:Timestamp ✓
|
||||
* Summary: bibo:shortDescription ✓
|
||||
* Rights
|
||||
* License: dcterms:license Hangar:License-Types ✓
|
||||
* Extended description: dcterms:description ✓
|
||||
* Keywords: https://forum.omeka.org/t/does-omeka-s-manage-tags/9511
|
||||
|
||||
## Physical object
|
||||
|
||||
**Omeka Class**: Physical Object
|
||||
|
||||
* Size
|
||||
* Dimension Length
|
||||
* Dimension Width
|
||||
* Dimension Height
|
||||
* Weight
|
||||
* Volume structure: (flat or 3D)
|
||||
* Volume state: (flexible or rigid)
|
||||
* Raw Material(s): Materials or substances used in the primary production or manufacturing of the item
|
||||
* Glossiness: The property of being smooth and shiny. burnish, polish, gloss
|
||||
* Color: the property possessed by an object of producing different sensations on the eye as a result of the way it reflects or emits light.
|
||||
* Transport: movable or fixed
|
||||
* Status: stable, unstable, living, dead(fixed or decaying), inert
|
||||
* Lifespan: Duration
|
||||
* Life cycle
|
||||
|
||||
## Digital content
|
||||
|
||||
All digital content share these same properties
|
||||
|
||||
* Creators of digitization files:
|
||||
* Contributors for the digitization:
|
||||
* Uploader. Who uploaded it.
|
||||
|
||||
### Images
|
||||
|
||||
|
||||
### Audio
|
||||
|
||||
|
||||
### Video
|
||||
|
||||
|
||||
### Documentation
|
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"o:label": "arcHIVE Base",
|
||||
"o:resource_template_property": [
|
||||
{
|
||||
"o:alternate_label": null,
|
||||
"o:alternate_comment": null,
|
||||
"o:is_required": false,
|
||||
"o:is_private": false,
|
||||
"data_type_name": null,
|
||||
"data_type_label": null,
|
||||
"vocabulary_namespace_uri": "http:\/\/purl.org\/dc\/terms\/",
|
||||
"vocabulary_label": "Dublin Core",
|
||||
"local_name": "title",
|
||||
"label": "Title"
|
||||
},
|
||||
{
|
||||
"o:alternate_label": null,
|
||||
"o:alternate_comment": null,
|
||||
"o:is_required": false,
|
||||
"o:is_private": false,
|
||||
"data_type_name": null,
|
||||
"data_type_label": null,
|
||||
"vocabulary_namespace_uri": "http:\/\/purl.org\/dc\/terms\/",
|
||||
"vocabulary_label": "Dublin Core",
|
||||
"local_name": "creator",
|
||||
"label": "Creator"
|
||||
},
|
||||
{
|
||||
"o:alternate_label": null,
|
||||
"o:alternate_comment": null,
|
||||
"o:is_required": false,
|
||||
"o:is_private": false,
|
||||
"data_type_name": null,
|
||||
"data_type_label": null,
|
||||
"vocabulary_namespace_uri": "http:\/\/purl.org\/ontology\/bibo\/",
|
||||
"vocabulary_label": "Bibliographic Ontology",
|
||||
"local_name": "shortDescription",
|
||||
"label": "shortDescription"
|
||||
},
|
||||
{
|
||||
"o:alternate_label": null,
|
||||
"o:alternate_comment": null,
|
||||
"o:is_required": false,
|
||||
"o:is_private": false,
|
||||
"data_type_name": null,
|
||||
"data_type_label": null,
|
||||
"vocabulary_namespace_uri": "http:\/\/purl.org\/dc\/terms\/",
|
||||
"vocabulary_label": "Dublin Core",
|
||||
"local_name": "description",
|
||||
"label": "Description"
|
||||
},
|
||||
{
|
||||
"o:alternate_label": null,
|
||||
"o:alternate_comment": null,
|
||||
"o:is_required": true,
|
||||
"o:is_private": false,
|
||||
"data_type_name": "work_type",
|
||||
"data_type_label": "Custom License Types",
|
||||
"vocabulary_namespace_uri": "http:\/\/purl.org\/dc\/terms\/",
|
||||
"vocabulary_label": "Dublin Core",
|
||||
"local_name": "license",
|
||||
"label": "License"
|
||||
},
|
||||
{
|
||||
"o:alternate_label": null,
|
||||
"o:alternate_comment": null,
|
||||
"o:is_required": false,
|
||||
"o:is_private": false,
|
||||
"data_type_name": "numeric:timestamp",
|
||||
"data_type_label": "Timestamp",
|
||||
"vocabulary_namespace_uri": "http:\/\/purl.org\/dc\/terms\/",
|
||||
"vocabulary_label": "Dublin Core",
|
||||
"local_name": "date",
|
||||
"label": "Date"
|
||||
}
|
||||
],
|
||||
"o:resource_class": {
|
||||
"vocabulary_namespace_uri": "http:\/\/purl.org\/dc\/dcmitype\/",
|
||||
"vocabulary_label": "Dublin Core Type",
|
||||
"local_name": "Dataset",
|
||||
"label": "Dataset"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue