Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Documentation
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rachael Hu
Documentation
Commits
617b2dad
Commit
617b2dad
authored
Aug 12, 2015
by
Tom Laudeman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor edits to the plan
parent
d91741d3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
19 deletions
+18
-19
plan.md
tat_requirements/plan.md
+18
-19
No files found.
tat_requirements/plan.md
View file @
617b2dad
...
@@ -6,8 +6,9 @@ Big questions
...
@@ -6,8 +6,9 @@ Big questions
-
Shayne backs up the whole gitlab VM.
-
Shayne backs up the whole gitlab VM.
-
We need a complete description of controlled vocabulary hierarchy. This ties in with, and is similar
-
We need a complete understanding of our requirements for controlled vocabulary, ontology, and/or tagging as
(perhaps computationally transformaable to) a tagging system. See
[
Tag system
](
#controlled-vocabularies-and-tag-system
)
.
well as how this relates to search facets. This also impacts our future ability to make assertions about the
data, and is somewhat related to semantic net. See
[
Tag system
](
#controlled-vocabularies-and-tag-system
)
.
Overview and order of work
Overview and order of work
...
@@ -89,27 +90,25 @@ Code we write
...
@@ -89,27 +90,25 @@ Code we write
Controlled vocabularies and tag system
Controlled vocabularies and tag system
---
---
The tags are very similar to vocabulary entryies in that the tag values are controlled. The difference being a
Tags are simply terms. When inplemented as fixed terms with persistent IDs and some modify/add policy, tags
weaker moderation of tags and more readiness to create new tags (types). The tag table would consist of tag,
become a flat (non-hierarchal) controlled vocabulary.
value and is essentially a name-value system. If we create tags, should we try to enforce some data typing,
that is: string, int, date, float, etc.?
The difference being a weaker moderation of tags and more readiness to create new tags (types). The tag table
would consist of tag term and an ID value. Tag systems lack data type, and generally have no policy or less
restrictive policies about creating new tags
It seems pretty clear that some controlled vocabularies need to have n sub-vocabularies. And some subclasses
Below are some subject examples. It is unclear if these are each topics, or if "--" is used to join granular
can probably appear with several super-classes. 'Periodicals' appears in around 400 subjects. It also appears
topics into a topic list. Likewise it is unclear if this list relies on some explicit hierarchy.
that the order of sub and super is not well defined. In some cases 'Periodicals' is the final subject, and in
other cases the first subject. Curiously, topical subject bears a strong resemblence to the "tags" suggested
below in
```
```
INSERT INTO vocabulary (type, value) values ( 'subject', 'American literature--19th century--Periodicals' );
American literature--19th century--Periodicals
INSERT INTO vocabulary (type, value) values ( 'subject', 'American literature--20th century--Periodicals' );
American literature--20th century--Periodicals
INSERT INTO vocabulary (type, value) values ( 'subject', 'Periodicals' );
Periodicals
INSERT INTO vocabulary (type, value) values ( 'subject', 'Periodicals--19th century' );
Periodicals--19th century
INSERT INTO vocabulary (type, value) values ( 'subject', 'World politics--Periodicals' );
World politics--Periodicals
INSERT INTO vocabulary (type, value) values ( 'subject', 'World politics--Pictorial works' );
World politics--Pictorial works
INSERT INTO vocabulary (type, value) values ( 'subject', 'World politics--Societies, etc.' );
World politics--Societies, etc.
INSERT INTO vocabulary (type, value) values ( 'subject', 'World politics--Study and teaching' );
World politics--Study and teaching
```
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment