diff --git a/src/entities/schema/schema.ts b/src/entities/schema/schema.ts index 04d5654..4239d09 100644 --- a/src/entities/schema/schema.ts +++ b/src/entities/schema/schema.ts @@ -11,7 +11,6 @@ export class Schema implements TSchema { public required: string[] public properties: Record public archive: Record - public source: string public updated: string public created: string @@ -24,7 +23,6 @@ export class Schema implements TSchema { this.required = schema.required || [] this.properties = schema.properties || {} this.archive = schema.archive || {} - this.source = schema.source || '' this.updated = schema.updated || '' this.created = schema.created || '' } @@ -39,7 +37,6 @@ export class Schema implements TSchema { required: z.array(z.string()), properties: z.object({}), archive: z.object({}), - source: z.string(), updated: z.string(), created: z.string(), }) diff --git a/src/entities/schema/schema.types.ts b/src/entities/schema/schema.types.ts index 4d3dbdf..74d500f 100644 --- a/src/entities/schema/schema.types.ts +++ b/src/entities/schema/schema.types.ts @@ -7,7 +7,6 @@ export type TSchema = { required: string[] properties: Record archive: Record - source: string updated: string; created: string; } diff --git a/src/modals/schema/EditSchema.vue b/src/modals/schema/EditSchema.vue index a238f89..a1296fd 100644 --- a/src/modals/schema/EditSchema.vue +++ b/src/modals/schema/EditSchema.vue @@ -127,7 +127,6 @@ export default { version: '', description: '', summary: '', - source: '', created: '', updated: '', }