{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CredentialAttributeValuePost",
"title": "CredentialAttributeValuePost",
"type": "object",
"description": "A single attribute value to create on a credential",
"properties": {
"credentialAttributeId": {
"type": "integer",
"format": "int64",
"description": "ID of the credential attribute to set the value for"
},
"value": {
"type": "string",
"description": "Value to store for this attribute"
},
"userId": {
"type": "integer",
"format": "int64",
"description": "User ID for user-provided attribute values"
}
}
}