-
Notifications
You must be signed in to change notification settings - Fork 1
annotation
- Associations between different pieces of information.1
- Extra information associated with a particular point in a document.2
Annotations of web documents.
- Comments on an Instagram post
- Amazon reviews
- Tweets with links
There's a data model for web annotation. The learning platform project in this repository should abide by this model.
The model's specification can be found here. This specification "describes a structured model" for annotations to be reused in different platforms. "The specification provides a specific JSON format" (JSON-LD) to enable creation of annotations easily.
An annotation usually includes a body and a target and indicates that the body is related to the target.1
The model does not require any specific transfer protocols.* It describes a structure and provides a serialization of the structure.
* There's also an annotation protocol for transfer but this project will not take it into consideration.
- @context: The context determines the meaning of the JSON as an Annotation. More than one context is possible but one of the contexts must be "http://www.w3.org/ns/anno.jsonld".
- id: Identity of the Annotation. An Annotation must have an id.
- type: Type of the Annotation. An Annotation must have type(s). One of the types must be the Annotation class (below).
- Annotation: The class for Web Annotations.
- body: The relationship between an Annotation and its Body. Any amount of body relationships can be associated with an Annotation, even 0 (not recommended).
- target: The relationship between an Annotation and its Target. 1 or more target relationships can be associated with an Annotation.
This is a textual comment on a photo target:
{
"@context": "http://www.w3.org/ns/anno.jsonld",
"id": "http://example.org/anno5",
"type": "Annotation",
"body": {
"type" : "TextualBody",
"value" : "<p>j'adore !</p>",
"format" : "text/html",
"language" : "fr"
},
"target": "http://example.org/photo1"
}
- Web Annotation Data Model of W3: https://www.w3.org/TR/annotation-model/
- Annotation on Wikipedia: https://en.wikipedia.org/wiki/Annotation
- JSON-LD: https://www.w3.org/TR/json-ld/
- Terminology: https://www.w3.org/TR/annotation-model/#terminology
- Requirements
- Questions about Requirements
- User Scenarios and Mockups
- Diagrams
- RAM
- Project Plan
- Manuals
- API specifications
- BucademyAPI documentation
- Customer Milestone 1 Feedbacks
- Burak Yılmaz - Communicator
- Arif Akbaba
- Mehmet Gökberk Arslan
- Bilal Aytekin
- Nurlan Dadashov
- Hatice Şule Erkul
- Kadir Ersoy
- Salim Kemal Tirit
- Mertcan Özkan
- Muhammet Şen
- Furkan Akkurt
- Berke Özdemir
-
Ahmet Kudu(Former) -
Bengisu Kübra Takkin(Former)
Group Meetings:
- Week 1 - 09.10.2022
- Week 2 - 11.10.2022
- Week 2 - 12.10.2022
- Week 2 - 16.10.2022
- Week 3 - 18.10.2022
- Week 4 - 30.10.2022
- Week 6 - 08.11.2022
- Week 6 - 13.11.2022
- Week 7 - 20.11.2022
- Week 9 - 04.12.2022
- Week 11 - 18.12.2022
Backend Team Meetings:
- Week 3 - 18.10.2022
- Week 3 - 20.10.2022
- Week 3 - 22.10.2022
- Week 6 - 10.11.2022
- Week 12 - 21.12.2022
Frontend Team Meetings:
- Week 3 - 17.10.2022
- Week 4 - 26.10.2022
- Week 6 - 09.11.2022
- Week 8 - 25.11.2022
- Week 11 - 22.12.2022
Mobile Team Meetings:
- Week 1 - 04.03.2022
- Week 2 - 11.03.2022
- Week 2 - 13.03.2022
- Week 3 - 18.03.2022
- Week 4 - 23.03.2022 - Customer Meeting
- Week 4 - 25.03.2022
- Week 5 - 30.03.2022 - Customer Meeting
- Week 5 - 01.04.2022
- Week 5 - 04.04.2022
- Week 5 - 05.04.2022
- Week 6 - 09.04.2022
- Week 6 - 10.04.2022
- Week 7 - 14.04.2022
- Week 8 - 22.04.2022
- Week 10 - 09.05.2022
- Week 11 - 17.05.2022
- Week 1 - 03.10.22 - 09.10.22
- Week 2 - 10.10.22 - 16.10.22
- Week 3 - 17.10.22 - 23.10.22
- Week 4 - 24.10.22 - 30.10.22
- Week 5 - 31.10.22 - 06.11.22
- Week 6 - 07.11.22 - 13.11.22
- Week 7 - 14.11.22 - 20.11.22
- Week 8 - 21.11.22 - 27.11.22
- Week 9 - 28.11.22 - 04.12.22
- Week 10 - 05.12.22 - 11.12.22
- Week 11 - 12.12.22 - 18.12.22
- Week 12 - 19.12.22 - 25.12.22
- Week 13 - 26.12.22 - 01.01.23