Skip to content

Commit

Permalink
Merge pull request #92 from openc/update-identifier-schema
Browse files Browse the repository at this point in the history
Add data_object attributes
  • Loading branch information
CallowayGuy authored Dec 1, 2022
2 parents d511f63 + dd5d7a4 commit 92dff18
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion schemas/identifier-delegate-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,24 @@
"identifier_system_code": {
"type": "string",
"description": "An identifier representing the identifier scheme. Some examples of this are us_fein (US Federal tax number), us_sec_cik (US Securities and Exchange Commission CIK), uk_ew_cc (Charity Commission of England & Wales), lei (Global Legal Entity Identifier System)"
},
"subject_entity": {
"description": "Company that the identifier identifies",
"type": "object"
},
"sample_date": {
"description": "Date on which we know this to be true (usually date this information was retrieved from the source)",
"type": "string",
"format": "date"
},
"confidence": {
"description": "confidence value for source accuracy",
"type": "string"
}
},
"required": [
"uid",
"identifier_system_code"
"identifier_system_code",
"subject_entity"
]
}

0 comments on commit 92dff18

Please sign in to comment.