Sha256: 50c2ca8bd61f6b40a616bbc5e491d8b8936acdbbddd8d6effce87c27257fcfa6

Contents?: true

Size: 1.62 KB

Versions: 6

Compression:

Stored size: 1.62 KB

Contents

# Simple yaml config-driven schema which is used to define model attributes,
# index key names, and form properties.
#
# Attributes must have a type but all other configuration options are optional.
# Please note: If using Valkyrie's Fedora Metadata Adapter, predicates for attributes
# must be placed here.
#
# attributes:
#   attribute_name:
#     type: string
#     multiple: false
#     index_keys:
#       - "attribute_name_sim"
#     form:
#       required: true
#       primary: true
#       multiple: false
#
# @see config/metadata/basic_metadata.yaml for an example configuration
#
# Generated via
#  `rails generate hyrax:work_resource Monograph`

---
attributes:
  monograph_title:
    type: string
    predicate: http://hyrax-example.com/monograph_title
  record_info:
    type: string
    form:
      required: true
      primary: true
    index_keys:
      - "record_info_tesim"
    predicate: http://hyrax-example.com/record_info
  place_of_publication:
    type: string
    form:
      required: false
      primary: true
    predicate: http://hyrax-example.com/place_of_publication
  genre:
    type: string
    form:
      primary: true
    predicate: http://hyrax-example.com/genre
  series_title:
    type: string
    form:
      primary: false
    predicate: http://hyrax-example.com/series_title
  target_audience:
    type: string
    form:
      multiple: true
    predicate: http://hyrax-example.com/target_audience
  table_of_contents:
    type: string
    form:
      multiple: false
    predicate: http://hyrax-example.com/table_of_contents
  date_of_issuance:
    type: string
    predicate: http://hyrax-example.com/date_of_issuance

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hyrax-5.0.3 .koppie/config/metadata/monograph.yaml
hyrax-5.0.2 .koppie/config/metadata/monograph.yaml
hyrax-5.0.1 .koppie/config/metadata/monograph.yaml
hyrax-5.0.0 .koppie/config/metadata/monograph.yaml
hyrax-5.0.0.rc3 .koppie/config/metadata/monograph.yaml
hyrax-5.0.0.rc2 .koppie/config/metadata/monograph.yaml