<<

NAME

Koha::Schema::Result::OaiServer

TABLE: oai_servers

ACCESSORS

oai_server_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique identifier assigned by Koha

endpoint

  data_type: 'varchar'
  is_nullable: 0
  size: 255

OAI endpoint (host + port + path)

oai_set

  data_type: 'varchar'
  is_nullable: 1
  size: 255

OAI set to harvest

servername

  data_type: 'longtext'
  is_nullable: 0

name given to the target by the library

dataformat

  data_type: 'enum'
  default_value: 'oai_dc'
  extra: {list => ["oai_dc","marc-xml","marcxml"]}
  is_nullable: 0

data format

recordtype

  data_type: 'enum'
  default_value: 'biblio'
  extra: {list => ["authority","biblio"]}
  is_nullable: 0

server contains bibliographic or authority records

add_xslt

  data_type: 'longtext'
  is_nullable: 1

zero or more paths to XSLT files to be processed on the search results

PRIMARY KEY

<<