JSON Schema: Assessment_attribute
URI Template
Properties
- (integer) definition_id
- (string) label
- (boolean) global
- (string) value
- (string) note
- (boolean) readonly
View Source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'common/schemas/assessment_attribute.rb', line 1 { :schema => { "$schema" => "http://www.archivesspace.org/archivesspace.json", "version" => 1, "type" => "object", "properties" => { "definition_id" => { "type" => "integer", "ifmissing" => "error" }, "label" => { "type" => "string", "readonly" => true }, "global" => { "type" => "boolean", "readonly" => true }, "value" => { "type" => "string" }, "note" => { "type" => "string" }, "readonly" => { "type" => "boolean", "default" => false }, } } } |
Plain Text Version