Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mah0001 committed Apr 16, 2019
2 parents 82a661f + 41c9fd8 commit 1a5fdda
Show file tree
Hide file tree
Showing 180 changed files with 7,263 additions and 12,495 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ application/cache/*
application/config/database.php
application/config/email.php
*.bak
logs
logs/*.php
cache
backup/*
system.old
Expand Down
6 changes: 5 additions & 1 deletion api-documentation/catalog-admin/ddi-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -534,10 +534,14 @@
"title":"Keyword",
"type":"string"
},
"vocab":{
"title":"Vocabulary",
"type":"string"
},
"uri":{
"title":"uri",
"type":"string"
}
}
}
}
},
Expand Down
107 changes: 81 additions & 26 deletions api-documentation/catalog-admin/image-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,34 +81,89 @@
}
},
"image_description":{
"allOf": [{
"$ref": "../schemas/iptc-pmd-schema.json"
}]
},
"files": {
"type": "array",
"title": "Files",
"description": "Files",
"items":{
"type":"object",
"properties":{
"file_uri": {
"title": "File name",
"description":"File name or URL",
"type": "string"
},
"format": {
"title": "File format",
"description": "The file format, physical medium, or dimensions of the resource.",
"type": "string"
},
"note": {
"title": "Notes",
"type": "string"
"type": "object",
"properties": {
"iptc": {
"allOf": [{ "$ref": "../schemas/iptc-pmd-schema.json" }]
},
"license": {
"type": "array",
"title": "License",
"items": {
"type": "object",
"properties": {
"name": {
"title": "License",
"type": "string"
},
"uri": {
"title": "URI",
"type": "string"
}
}
}
},
"required": ["file_uri"]
"album": {
"type": "array",
"title": "Album",
"items": {
"type": "object",
"properties": {
"name": {
"title": "Name of album",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"owner": {
"title": "Owner",
"type": "string"
},
"uri": {
"title": "URI",
"type": "string"
}
}
}
},
"files": {
"type": "array",
"title": "Files",
"description": "Files",
"items":{
"type":"object",
"properties":{
"file_uri": {
"title": "File name",
"description":"File name or URL",
"type": "string"
},
"format": {
"title": "File format",
"description": "The file format, physical medium, or dimensions of the resource.",
"type": "string"
},
"note": {
"title": "Notes",
"type": "string"
},
"show": {
"title": "Show file (images only)",
"description": "Show the image file on the page",
"type": "boolean"
}
},
"required": ["file_uri"]
}
}
}
}
}
},
"additional": {
"type": "object",
"description": "Additional metadata",
"properties": {}
}
}
Loading

0 comments on commit 1a5fdda

Please sign in to comment.