Commit 9cd0472d authored by Noel Alonso's avatar Noel Alonso
Browse files

Actualiza salida de test

parent 3ffaac6c
Loading
Loading
Loading
Loading
+44 −1
Original line number Diff line number Diff line
@@ -39,6 +39,17 @@
			],
			"maxLength": 1500
		},
		"resources": {
			"type": [
				"array",
				"null"
			],
			"uniqueItemsByRequiredProperties": true,
			"uniqueItems": true,
			"items": {
				"$ref": "#/definitions/ActivityResourceDTO"
			}
		},
		"accessibility": {
			"type": "integer",
			"url": "/operator/accessibilities/"
@@ -118,6 +129,38 @@
		"activityType"
	],
	"definitions": {
		"ActivityResourceDTO": {
			"type": "object",
			"properties": {
				"id": {
					"type": [
						"integer",
						"null"
					]
				},
				"name": {
					"type": "string",
					"minLength": 1,
					"maxLength": 100
				},
				"description": {
					"type": [
						"string",
						"null"
					],
					"maxLength": 1500
				},
				"urlResource": {
					"type": "string",
					"minLength": 1,
					"maxLength": 500
				}
			},
			"required": [
				"name",
				"urlResource"
			]
		},
		"ActivityDocumentDTO": {
			"type": "object",
			"properties": {