|
| 1 | +========== |
| 2 | +Remote metadata reference |
| 3 | +========== |
| 4 | + |
| 5 | +Projects metadata |
| 6 | +_________________ |
| 7 | +.. _ref_metadata: |
| 8 | +Project metadata example: |
| 9 | + |
| 10 | +.. code-block:: python |
| 11 | +
|
| 12 | + { |
| 13 | + "name": "Example Project test", |
| 14 | + "description": "test vector", |
| 15 | + "creator_id": "admin@superannotate.com", |
| 16 | + "updatedAt": "2020-08-31T05:43:43.118Z", |
| 17 | + "createdAt": "2020-08-31T05:43:43.118Z" |
| 18 | + "type": "Vector", |
| 19 | + "attachment_name": None, |
| 20 | + "attachment_path": None, |
| 21 | + "entropy_status": 1, |
| 22 | + "status": "NotStarted", |
| 23 | + "...": "..." |
| 24 | + } |
| 25 | +
|
| 26 | +
|
| 27 | +---------- |
| 28 | + |
| 29 | +Setting metadata |
| 30 | +_________________ |
| 31 | + |
| 32 | +Setting metadata example: |
| 33 | + |
| 34 | +.. code-block:: python |
| 35 | +
|
| 36 | + { |
| 37 | + "attribute": "FrameRate", |
| 38 | + "value": 3 |
| 39 | + } |
| 40 | +
|
| 41 | +
|
| 42 | +---------- |
| 43 | + |
| 44 | +Export metadata |
| 45 | +_______________ |
| 46 | + |
| 47 | +Export metadata example: |
| 48 | + |
| 49 | +.. code-block:: python |
| 50 | +
|
| 51 | + { |
| 52 | + "name": "Aug 17 2020 15:44 First Name.zip", |
| 53 | + "user_id": "user@gmail.com", |
| 54 | + "status": 2, |
| 55 | + "createdAt": "2020-08-17T11:44:26.000Z", |
| 56 | + "...": "..." |
| 57 | + } |
| 58 | +
|
| 59 | +
|
| 60 | +---------- |
| 61 | + |
| 62 | + |
| 63 | +Integration metadata |
| 64 | +______________________ |
| 65 | + |
| 66 | +Integration metadata example: |
| 67 | + |
| 68 | +.. code-block:: python |
| 69 | +
|
| 70 | + { |
| 71 | + "name": "My S3 Bucket", |
| 72 | + "type": "aws", |
| 73 | + "root": "test-openseadragon-1212" |
| 74 | + } |
| 75 | +
|
| 76 | +
|
| 77 | +---------- |
| 78 | + |
| 79 | + |
| 80 | +Item metadata |
| 81 | +_______________ |
| 82 | + |
| 83 | +Item metadata example: |
| 84 | + |
| 85 | +.. code-block:: python |
| 86 | +
|
| 87 | + { |
| 88 | + "name": "example.jpeg", |
| 89 | + "path": "project/folder_1/meow.jpeg", |
| 90 | + "url": "https://sa-public-files.s3.../text_file_example_1.jpeg", |
| 91 | + "annotation_status": "NotStarted", |
| 92 | + "annotator_name": None, |
| 93 | + "qa_name": None, |
| 94 | + "entropy_value": None, |
| 95 | + "createdAt": "2022-02-15T20:46:44.000Z", |
| 96 | + "updatedAt": "2022-02-15T20:46:44.000Z" |
| 97 | + } |
| 98 | +
|
| 99 | +---------- |
| 100 | + |
| 101 | + |
| 102 | +Image metadata |
| 103 | +_______________ |
| 104 | + |
| 105 | + |
| 106 | +Image metadata example: |
| 107 | + |
| 108 | +.. code-block:: python |
| 109 | +
|
| 110 | + { |
| 111 | + "name": "000000000001.jpg", |
| 112 | + "annotation_status": "Completed", |
| 113 | + "prediction_status": "NotStarted", |
| 114 | + "segmentation_status": "NotStarted", |
| 115 | + "annotator_id": None, |
| 116 | + "annotator_name": None, |
| 117 | + "qa_id": None, |
| 118 | + "qa_name": None, |
| 119 | + "entropy_value": None, |
| 120 | + "approval_status": None, |
| 121 | + "createdAt": "2020-08-18T07:30:06.000Z", |
| 122 | + "updatedAt": "2020-08-18T07:30:06.000Z" |
| 123 | + "is_pinned": 0, |
| 124 | + "...": "...", |
| 125 | + } |
| 126 | +
|
| 127 | +
|
| 128 | +---------- |
| 129 | + |
| 130 | +Priority score |
| 131 | +_______________ |
| 132 | + |
| 133 | + |
| 134 | +Priority score example: |
| 135 | + |
| 136 | +.. code-block:: python |
| 137 | +
|
| 138 | + { |
| 139 | + "name" : "image1.png", |
| 140 | + "priority": 0.567 |
| 141 | + } |
| 142 | +
|
| 143 | +
|
| 144 | +---------- |
| 145 | + |
| 146 | +Attachment |
| 147 | +_______________ |
| 148 | + |
| 149 | + |
| 150 | +Attachment example: |
| 151 | + |
| 152 | +.. code-block:: python |
| 153 | +
|
| 154 | + { |
| 155 | + "url": "https://sa-public-files.s3.../text_file_example_1.jpeg", |
| 156 | + "name": "example.jpeg" |
| 157 | + } |
| 158 | +
|
| 159 | +
|
| 160 | +---------- |
| 161 | + |
| 162 | +.. _ref_class: |
| 163 | + |
| 164 | +Annotation class metadata |
| 165 | +_________________________ |
| 166 | + |
| 167 | + |
| 168 | +Annotation class metadata example: |
| 169 | + |
| 170 | +.. code-block:: python |
| 171 | +
|
| 172 | + { |
| 173 | + "id": 4444, |
| 174 | + "name": "Human", |
| 175 | + "color": "#e4542b", |
| 176 | + "attribute_groups": [ |
| 177 | + { |
| 178 | + "name": "tall", |
| 179 | + "attributes": [ |
| 180 | + { |
| 181 | + "name": "yes" |
| 182 | + }, |
| 183 | + { |
| 184 | + "name": "no" |
| 185 | + } |
| 186 | + ] |
| 187 | + }, |
| 188 | + { |
| 189 | + "name": "age", |
| 190 | + "attributes": [ |
| 191 | + { |
| 192 | + "name": "young" |
| 193 | + }, |
| 194 | + { |
| 195 | + "name": "old" |
| 196 | + } |
| 197 | + ] |
| 198 | + } |
| 199 | + ], |
| 200 | +
|
| 201 | + "...": "..." |
| 202 | + } |
| 203 | +
|
| 204 | +
|
| 205 | +
|
| 206 | +---------- |
| 207 | + |
| 208 | +Team contributor metadata |
| 209 | +_________________________ |
| 210 | + |
| 211 | +Team contributor metadata example: |
| 212 | + |
| 213 | +.. code-block:: python |
| 214 | +
|
| 215 | + { |
| 216 | + "id": "admin@superannotate.com", |
| 217 | + "first_name": "First Name", |
| 218 | + "last_name": "Last Name", |
| 219 | + "email": "admin@superannotate.com", |
| 220 | + "user_role": 6 |
| 221 | + "...": "...", |
| 222 | + } |
| 223 | +
|
0 commit comments