id
(uuid)title
(CharField)location
(CharField)overview
(TextField)description
(TextField)posted
(DateField auto_now_add=True)is_featured
(BooleanField)salary
(CharField)image_url
(URLField)company
(ForeignKey to Company, setting to Null, if Company was deleted)industries
(ManyToManyField)skills
(ManyToManyField)closes
(DateField)experience
(CharField)hours
(PositiveSmallIntegerField)languages
(ArrayField of CharFields)create(self, request)
acccepting POST requests with JSON information about new job.pk
JSON with Job id on bdnerror
JSON with errorsretrieve(self, request, pk=None)
acccepting GET requests with job id and reply with JSON information about job and company academy profile.list(self, request)
acccepting GET requests reply with JSON information about jobs.get_by_id(self, request, pk=None)
acccepting GET requests with job id and reply with JSON information about job.get_by_company(self, request)
acccepting GET requests with inline eth_address
and reply with JSON information about jobs by this company.edit_by_id(self, request, pk=None)
acccepting POST requests with new JSON information about job and inline id.error
JSON with errorsmark_featured_by_id(self, request, pk=None)
acccepting POST requests with inline id.delete_by_id(self, request, pk=None)
acccepting POST requests with inline id.