Commit f15fd8e4 authored by amit-tarento's avatar amit-tarento
Browse files

Issue #SB-29076 feat:Added public key schema

Showing with 44 additions and 0 deletions
+44 -0
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"PublicKey": {
"$ref": "#/definitions/PublicKey"
}
},
"required": [
"PublicKey"
],
"title": "PublicKey",
"definitions": {
"PublicKey": {
"$id": "#/properties/PublicKey",
"type": "object",
"title": "The PublicKey Schema",
"required": [
"value"
],
"properties": {
"value": {
"type": "string"
},
"alg": {
"type": "string"
}
}
}
},
"_osConfig": {
"uniqueIndexFields": [
"value"
],
"ownershipAttributes": [],
"roles": [
],
"inviteRoles": [
"anonymous"
],
"systemFields": ["osCreatedAt", "osUpdatedAt", "osCreatedBy", "osUpdatedBy"],
"enableLogin": false
}
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment